/* ============================================
   STYLE FEMENINO ELEGANTE - SANDALIAS DE CUERO
   Fondo claro, tonos cálidos, diseño centrado
   ============================================ */

/* Importar fuentes femeninas y elegantes */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Quicksand:wght@300;400;500;600;700&family=Great+Vibes&display=swap');

/* Variables de color - paleta femenina */
:root {
    --bg-cream: #fdf6f0;
    --bg-card: #ffffff;
    --text-dark: #2d1b1b;
    --text-muted: #7a5a5a;
    --rose-gold: #e8b4b8;
    --soft-pink: #f4c2c6;
    --warm-brown: #a67c6e;
    --dark-rose: #c47a7a;
    --gold-light: #d4a373;
    --border-soft: #f0e0d8;
    --shadow-soft: rgba(180, 130, 120, 0.12);
    --hover-shadow: rgba(180, 130, 120, 0.25);
}

/* Estilos generales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Quicksand', 'Playfair Display', 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #fdf6f0 0%, #f7ede8 50%, #f0e4dc 100%);
    color: var(--text-dark);
    line-height: 1.8;
    min-height: 100vh;
}

/* HEADER - Estilo femenino elegante */
header {
    background: linear-gradient(135deg, #2d1b1b 0%, #4a2c2c 50%, #2d1b1b 100%);
    color: #f5e6e0;
    text-align: center;
    padding: 18px 20px;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 3px;
    position: sticky;
    top: 0;
    z-index: 100;
    font-family: 'Quicksand', sans-serif;
    text-transform: uppercase;
    border-bottom: 3px solid var(--rose-gold);
    box-shadow: 0 4px 20px rgba(180, 130, 120, 0.15);
}

header::before {
    content: '✦';
    margin-right: 12px;
    color: var(--rose-gold);
    animation: sparkle 2s ease-in-out infinite;
}

header::after {
    content: '✦';
    margin-left: 12px;
    color: var(--rose-gold);
    animation: sparkle 2s ease-in-out infinite 0.5s;
}

@keyframes sparkle {
    0%, 100% { opacity: 1; transform: scale(1) rotate(0deg); }
    50% { opacity: 0.6; transform: scale(1.2) rotate(15deg); }
}

/* Contenedor principal - CENTRADO */
.container {
    max-width: 1300px;
    margin: 40px auto;
    padding: 0 20px;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   SECCIÓN DE IMÁGENES - ESCRITORIO IZQUIERDA
   ============================================ */

/* En escritorio - columna izquierda (imagenes) */
@media (min-width: 768px) {
    .col-md-6:first-child {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: flex-start !important;
        padding-right: 30px !important;
    }
}

.images {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

/* Badge de descuento - más femenino */
.discount-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #c47a7a, #a67c6e);
    color: #ffffff;
    padding: 14px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 22px;
    z-index: 10;
    box-shadow: 0 4px 20px rgba(196, 122, 122, 0.3);
    transform: rotate(-3deg);
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.5px;
}

.discount-badge small {
    font-size: 11px;
    display: block;
    font-weight: 400;
    opacity: 0.9;
    font-family: 'Quicksand', sans-serif;
}

/* Imagen principal - centrada */
.main-image {
    width: 100%;
    max-height: 450px;
    object-fit: contain;
    border-radius: 25px;
    box-shadow: 0 15px 40px var(--shadow-soft);
    border: 3px solid var(--border-soft);
    transition: all 0.5s ease;
    background: var(--bg-card);
    display: block;
    margin: 0 auto;
}

.main-image:hover {
    transform: scale(1.02) translateY(-5px);
    box-shadow: 0 20px 50px var(--hover-shadow);
    border-color: var(--rose-gold);
}

/* Miniaturas - centradas */
.thumbs {
    display: flex;
    gap: 14px;
    margin-top: 25px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0 10px;
}

.thumbs img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.4s ease;
    border: 3px solid var(--border-soft);
    box-shadow: 0 4px 15px var(--shadow-soft);
    background: var(--bg-card);
}

.thumbs img:hover {
    transform: translateY(-8px) scale(1.05);
    border-color: var(--rose-gold);
    box-shadow: 0 10px 30px var(--hover-shadow);
}

/* ============================================
   SECCIÓN DE DETALLES - ESCRITORIO DERECHA
   ============================================ */

/* En escritorio - columna derecha (detalles) */
@media (min-width: 768px) {
    .col-md-6:last-child {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
        padding-left: 30px !important;
    }
}

.details {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

/* En escritorio - alinear a la izquierda */
@media (min-width: 768px) {
    .details {
        align-items: flex-start !important;
        text-align: left !important;
    }
    
    .details .edicion-limitada {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .details h1 {
        text-align: left !important;
    }
    
    .details h1::after {
        left: 0 !important;
        transform: translateX(0) !important;
    }
    
    .details .price {
        justify-content: flex-start !important;
    }
    
    .details .producto-beneficios {
        justify-content: flex-start !important;
    }
    
    .details .card {
        text-align: left !important;
    }
    
    .details .card .options {
        justify-content: flex-start !important;
    }
    
    .details .note {
        text-align: center !important;
    }
}

/* Etiqueta "100% CUERO" - más elegante */
.edicion-limitada {
    background: linear-gradient(135deg, #f4c2c6, #e8b4b8);
    color: #2d1b1b;
    display: inline-block;
    padding: 8px 22px;
    border-radius: 40px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 12px;
    font-family: 'Quicksand', sans-serif;
    text-transform: uppercase;
    box-shadow: 0 2px 10px rgba(244, 194, 198, 0.3);
}

/* Título - femenino y elegante */
h1 {
    font-family: 'Playfair Display', 'Quicksand', serif;
    font-size: 2.6rem;
    font-weight: 700;
    text-align: center;
    color: #2d1b1b;
    margin-bottom: 12px;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 15px;
}

h1::after {
    content: '♡';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 18px;
    color: var(--rose-gold);
    background: none;
    width: auto;
    height: auto;
}

/* Estrellas de valoración - centradas */
.d-flex.mb-2 {
    justify-content: center !important;
    flex-wrap: wrap;
    gap: 6px;
}

@media (min-width: 768px) {
    .d-flex.mb-2 {
        justify-content: flex-start !important;
    }
}

.fa-star.text-warning {
    color: #d4a373 !important;
    font-size: 18px;
}

/* Precio - centrado y visible */
.price {
    font-size: 36px;
    font-weight: 700;
    margin: 18px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    text-align: center;
    font-family: 'Playfair Display', serif;
    color: var(--dark-rose);
}

@media (min-width: 768px) {
    .price {
        justify-content: flex-start !important;
        text-align: left !important;
    }
}

.shipping-badge {
    background: linear-gradient(135deg, #2d1b1b, #4a2c2c);
    color: #f5e6e0;
    padding: 8px 20px;
    border-radius: 40px;
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px var(--shadow-soft);
    letter-spacing: 0.5px;
    border: 1px solid var(--rose-gold);
    font-family: 'Quicksand', sans-serif;
}

.shipping-badge::before {
    content: '✧';
    font-size: 14px;
}

/* Precio tachado - más elegante */
.text-muted s {
    color: #b8a0a0;
    font-size: 18px;
    font-weight: 400;
}

.stock-badge {
    background: linear-gradient(135deg, #e8b4b8, #d4a373);
    color: #2d1b1b;
    border-radius: 40px;
    padding: 4px 14px;
    font-size: 12px;
    font-weight: 700;
    display: inline-block;
    font-family: 'Quicksand', sans-serif;
}

/* ============================================
   BENEFICIOS - BADGES FEMENINOS
   ============================================ */

.producto-beneficios {
    background: linear-gradient(135deg, #fdf6f0, #f7ede8);
    border-radius: 20px;
    padding: 18px 20px;
    margin-top: 18px;
    width: 100%;
    border: 1px solid var(--border-soft);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

@media (min-width: 768px) {
    .producto-beneficios {
        justify-content: flex-start !important;
    }
}

.producto-item {
    display: inline-flex;
    align-items: center;
    background: var(--bg-card);
    border-radius: 50px;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 2px 10px var(--shadow-soft);
    border: 1px solid var(--border-soft);
    transition: all 0.3s ease;
    color: var(--text-dark);
    font-family: 'Quicksand', sans-serif;
}

.producto-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px var(--hover-shadow);
    border-color: var(--rose-gold);
}

.producto-item i {
    margin-right: 10px;
    font-size: 18px;
    color: var(--dark-rose);
}

/* ============================================
   TARJETA DEL PRODUCTO - CENTRADA
   ============================================ */

.card {
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    border-radius: 25px;
    padding: 30px 35px;
    box-shadow: 0 15px 40px var(--shadow-soft);
    transition: all 0.4s ease;
    width: 100%;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px var(--hover-shadow);
    border-color: var(--rose-gold);
}

/* Labels - femeninos */
label {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    color: var(--dark-rose);
    letter-spacing: 1px;
    font-size: 13px;
    text-transform: uppercase;
}

/* ============================================
   OPCIONES (COLORES Y TALLAS) - CENTRADAS
   ============================================ */

.options {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 15px 0;
    justify-content: center;
}

@media (min-width: 768px) {
    .options {
        justify-content: flex-start !important;
    }
}

.options button {
    padding: 11px 22px;
    border: 2px solid var(--border-soft);
    background: var(--bg-card);
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-dark);
}

.options button:hover {
    transform: translateY(-3px);
    border-color: var(--rose-gold);
    box-shadow: 0 5px 20px rgba(232, 180, 184, 0.3);
}

.options button.selected {
    background: linear-gradient(135deg, var(--dark-rose), var(--warm-brown)) !important;
    color: white !important;
    border-color: transparent !important;
    box-shadow: 0 5px 20px rgba(196, 122, 122, 0.3);
}

/* Preview de color */
.color-preview {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-block;
    background-size: cover;
    margin-right: 10px;
    box-shadow: 0 2px 8px var(--shadow-soft);
    border: 2px solid var(--border-soft);
}

/* ============================================
   BOTONES DE CANTIDAD
   ============================================ */

.btn-cantidad {
    flex: 1;
    padding: 12px 20px;
    font-weight: 700;
    font-size: 14px;
    background: #ffffff;
    border: 2px solid var(--border-soft);
    border-radius: 40px;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Quicksand', sans-serif;
    min-width: 140px;
}

.btn-cantidad:hover {
    transform: translateY(-3px);
    border-color: var(--rose-gold);
    background: #fdf6f0;
}

.btn-cantidad.selected {
    background: linear-gradient(135deg, var(--dark-rose), var(--warm-brown)) !important;
    color: #ffffff !important;
    border-color: transparent !important;
    box-shadow: 0 5px 25px rgba(196, 122, 122, 0.3);
}

/* ============================================
   BOTÓN DE COMPRA - ESCRITORIO
   ============================================ */

.whatsapp-button {
    background: linear-gradient(135deg, var(--dark-rose), var(--warm-brown));
    color: white;
    border: none;
    padding: 18px 30px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    width: 100%;
    transition: all 0.4s ease;
    font-family: 'Quicksand', sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(196, 122, 122, 0.3);
    display: block !important;
}

.whatsapp-button:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, var(--warm-brown), var(--dark-rose));
    box-shadow: 0 12px 35px rgba(196, 122, 122, 0.4);
}

/* Nota de pago */
.note {
    background: #fdf6f0;
    padding: 14px;
    border-radius: 18px;
    border: 1px solid var(--border-soft);
    color: var(--text-muted);
    font-family: 'Quicksand', sans-serif;
    font-size: 14px;
}

/* ============================================
   CARACTERÍSTICAS DEL PRODUCTO
   ============================================ */

.mt-4.p-3.bg-white.rounded.shadow-sm {
    background: var(--bg-card) !important;
    border: 1px solid var(--border-soft);
    border-radius: 20px !important;
    padding: 20px !important;
    width: 100%;
}

.mt-4.p-3.bg-white.rounded.shadow-sm h5 {
    font-family: 'Playfair Display', serif;
    color: var(--dark-rose);
    font-size: 18px;
}

.mt-4.p-3.bg-white.rounded.shadow-sm .col-md-4 {
    padding: 10px;
}

.mt-4.p-3.bg-white.rounded.shadow-sm .fa-2x {
    color: var(--warm-brown);
    transition: all 0.3s ease;
}

.mt-4.p-3.bg-white.rounded.shadow-sm .col-md-4:hover .fa-2x {
    transform: scale(1.15) translateY(-3px);
    color: var(--dark-rose);
}

/* ============================================
   BOTÓN FLOTANTE - SOLO PARA MÓVIL
   ============================================ */

.btn-flotante-fijo {
    position: fixed;
    bottom: 20px;
    left: 50% !important;
    transform: translateX(-50%) !important;
    background: linear-gradient(135deg, #c47a7a, #a67c6e);
    color: white;
    border: none;
    padding: 14px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    z-index: 9999;
    box-shadow: 0 8px 30px rgba(196, 122, 122, 0.35);
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    cursor: pointer;
    font-family: 'Quicksand', sans-serif;
    letter-spacing: 1px;
    backdrop-filter: blur(5px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    display: none !important;
    width: calc(100% - 30px) !important;
    max-width: 500px;
    min-width: auto;
}

.btn-flotante-fijo .precio-flotante {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 14px;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 800;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    white-space: nowrap;
    min-width: 70px;
    text-align: center;
}

.btn-flotante-fijo:hover {
    transform: translateX(-50%) translateY(-2px) !important;
    box-shadow: 0 12px 40px rgba(196, 122, 122, 0.5);
}

/* ============================================
   ESCRITORIO - OCULTAR BOTÓN FLOTANTE
   ============================================ */

@media (min-width: 769px) {
    .btn-flotante-fijo {
        display: none !important;
    }
    
    .whatsapp-button {
        display: block !important;
    }
}

/* ============================================
   TABLET Y MÓVIL - MOSTRAR BOTÓN FLOTANTE
   ============================================ */

@media (max-width: 768px) {
    .btn-flotante-fijo {
        display: flex !important;
        bottom: 20px;
        padding: 14px 20px;
        font-size: 14px;
        width: calc(100% - 30px) !important;
        max-width: 500px;
        left: 50% !important;
        transform: translateX(-50%) !important;
        border-radius: 50px;
        gap: 12px;
        justify-content: space-between;
        white-space: nowrap;
    }
    
    .btn-flotante-fijo .precio-flotante {
        font-size: 16px;
        padding: 4px 14px;
        min-width: 70px;
        text-align: center;
    }
    
    .btn-flotante-fijo:hover {
        transform: translateX(-50%) translateY(-2px) !important;
    }
    
    .whatsapp-button {
        display: none !important;
    }
}

/* ============================================
   MÓVILES PEQUEÑOS
   ============================================ */

@media (max-width: 480px) {
    .btn-flotante-fijo {
        bottom: 15px;
        padding: 12px 16px;
        font-size: 12px;
        width: calc(100% - 20px) !important;
        max-width: 400px;
        gap: 8px;
        border-radius: 45px;
        box-shadow: 0 6px 25px rgba(196, 122, 122, 0.4);
    }
    
    .btn-flotante-fijo .precio-flotante {
        font-size: 14px;
        padding: 3px 12px;
        min-width: 60px;
    }
    
    .btn-flotante-fijo div:first-child {
        font-size: 11px;
        white-space: normal;
        text-align: left;
        line-height: 1.2;
        display: flex;
        align-items: center;
        gap: 6px;
    }
    
    .btn-flotante-fijo div:first-child i {
        font-size: 14px;
    }
}

/* ============================================
   MÓVILES MUY PEQUEÑOS
   ============================================ */

@media (max-width: 380px) {
    .btn-flotante-fijo {
        padding: 10px 12px;
        font-size: 10px;
        gap: 6px;
        border-radius: 40px;
        bottom: 12px;
        width: calc(100% - 16px) !important;
    }
    
    .btn-flotante-fijo .precio-flotante {
        font-size: 12px;
        padding: 2px 10px;
        min-width: 50px;
    }
    
    .btn-flotante-fijo div:first-child {
        font-size: 10px;
    }
    
    .btn-flotante-fijo div:first-child i {
        font-size: 12px;
    }
}

/* ============================================
   ANIMACIÓN DEL BOTÓN FLOTANTE
   ============================================ */

@keyframes floatUp {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(30px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0) scale(1);
    }
}

.btn-flotante-fijo {
    animation: floatUp 0.5s ease-out forwards;
}

/* ============================================
   MODAL - ESTILO FEMENINO
   ============================================ */

.modal-pedido {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(45, 27, 27, 0.9);
    backdrop-filter: blur(8px);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    overflow-y: auto;
}

.modal-pedido-contenido {
    background: var(--bg-card);
    max-width: 550px;
    width: 95%;
    max-height: 95vh;
    border-radius: 25px;
    overflow-y: auto;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.4s ease;
    border: 1px solid var(--border-soft);
}

.modal-pedido-header {
    background: linear-gradient(135deg, #fdf6f0, #f7ede8);
    color: var(--text-dark);
    padding: 20px 25px;
    border-radius: 25px 25px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    border-bottom: 3px solid var(--rose-gold);
}

.modal-pedido-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    letter-spacing: 2px;
    margin: 0;
    text-transform: uppercase;
    color: var(--text-dark);
}

.modal-cerrar {
    background: none;
    border: none;
    color: var(--text-dark);
    font-size: 32px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 300;
}

.modal-cerrar:hover {
    transform: scale(1.1) rotate(90deg);
    color: var(--dark-rose);
}

.modal-pedido-body {
    padding: 25px;
}

/* Resumen de compra */
.resumen-compra {
    background: #fdf6f0;
    border-radius: 18px;
    padding: 20px;
    margin-bottom: 22px;
    border: 1px solid var(--border-soft);
}

.resumen-producto-nombre {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-rose);
    margin-bottom: 8px;
}

.resumen-precio {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-rose);
    font-family: 'Playfair Display', serif;
}

.resumen-linea {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-dark);
    font-family: 'Quicksand', sans-serif;
}

.resumen-linea.total {
    font-weight: 700;
    border-top: 2px solid var(--rose-gold);
    margin-top: 8px;
    padding-top: 12px;
    font-size: 16px;
    color: var(--dark-rose);
}

/* Formulario */
.formulario-contacto h4 {
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--dark-rose);
    margin-bottom: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.form-group {
    margin-bottom: 14px;
}

.form-group label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Quicksand', sans-serif;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-soft);
    border-radius: 14px;
    font-size: 13px;
    background: var(--bg-card);
    color: var(--text-dark);
    transition: all 0.3s ease;
    font-family: 'Quicksand', sans-serif;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--rose-gold);
    box-shadow: 0 0 0 4px rgba(232, 180, 184, 0.2);
}

.form-group input::placeholder {
    color: #c0b0b0;
}

.btn-realizar-pedido {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--dark-rose), var(--warm-brown));
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 18px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Quicksand', sans-serif;
    box-shadow: 0 8px 25px rgba(196, 122, 122, 0.3);
}

.btn-realizar-pedido:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(196, 122, 122, 0.4);
}

/* ============================================
   CONFIRMACIÓN
   ============================================ */

#textofinal {
    background: rgba(45, 27, 27, 0.9);
    backdrop-filter: blur(8px);
}

.confirmation-content {
    background: var(--bg-card);
    border-radius: 25px;
    border: 1px solid var(--border-soft);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.confirmation-content i {
    color: var(--dark-rose);
}

.confirmation-content h2 {
    color: var(--text-dark);
    font-family: 'Playfair Display', serif;
}

.confirmation-content p {
    color: var(--text-muted);
    font-family: 'Quicksand', sans-serif;
}

.confirmation-content button {
    background: linear-gradient(135deg, var(--dark-rose), var(--warm-brown));
    border: none;
    font-family: 'Quicksand', sans-serif;
    border-radius: 50px;
}

/* ============================================
   FOOTER - FEMENINO
   ============================================ */

.footer {
    background: linear-gradient(135deg, #fdf6f0, #f7ede8);
    margin-top: 60px;
    padding: 30px;
    border-top: 3px solid var(--rose-gold);
}

.footer p {
    color: var(--text-muted);
    font-family: 'Quicksand', sans-serif;
}

.footer a {
    color: var(--dark-rose);
    transition: color 0.3s;
    font-weight: 600;
    text-decoration: none;
}

.footer a:hover {
    color: var(--warm-brown);
    text-decoration: underline;
}

/* ============================================
   SCROLLBAR - FEMENINA
   ============================================ */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f7ede8;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--rose-gold), var(--dark-rose));
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--dark-rose);
}

/* ============================================
   BOTONES DE COLOR EN 2 COLUMNAS - FEMENINO
   ============================================ */

/* Forzar el contenedor de colores a grid de 2 columnas */
.options:has(button[data-img]) {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 14px !important;
    width: 100% !important;
}

/* Estilo de los botones de color */
.options:has(button[data-img]) button {
    width: 100% !important;
    justify-content: center !important;
    padding: 12px 15px !important;
    margin: 0 !important;
    background: var(--bg-card) !important;
    border: 2px solid var(--border-soft) !important;
    border-radius: 14px !important;
    font-weight: 600 !important;
    color: var(--text-dark) !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}

/* Botón de color seleccionado */
.options:has(button[data-img]) button.selected {
    background: linear-gradient(135deg, var(--rose-gold) 0%, var(--dark-rose) 100%) !important;
    color: white !important;
    border-color: var(--dark-rose) !important;
    box-shadow: 0 4px 15px rgba(196, 122, 122, 0.3) !important;
}

/* Contenedor de tallas */
.options:has(button:not([data-img])) {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 12px !important;
    justify-content: center !important;
}

@media (min-width: 768px) {
    .options:has(button:not([data-img])) {
        justify-content: flex-start !important;
    }
}

/* Botones de talla */
.options:has(button:not([data-img])) button {
    min-width: 75px !important;
    width: auto !important;
    padding: 10px 20px !important;
    color: var(--text-dark) !important;
}

/* ============================================
   RESPONSIVE - FEMENINO
   ============================================ */

@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }
    
    .price {
        font-size: 28px;
        flex-direction: column;
        gap: 10px;
    }
    
    .thumbs img {
        width: 60px;
        height: 60px;
    }
    
    .modal-pedido-contenido {
        width: 98%;
    }
    
    .resumen-precio {
        font-size: 24px;
    }
    
    .options:has(button[data-img]) {
        gap: 10px !important;
    }
    
    .options:has(button[data-img]) button {
        padding: 10px 12px !important;
        font-size: 13px !important;
    }
    
    .options:has(button:not([data-img])) button {
        min-width: 65px !important;
        padding: 8px 16px !important;
        font-size: 13px !important;
    }
    
    .card {
        padding: 20px;
    }
    
    .discount-badge {
        font-size: 18px;
        padding: 10px 16px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }
    
    .price {
        font-size: 24px;
    }
    
    .shipping-badge {
        font-size: 11px;
        padding: 6px 14px;
    }
    
    .options:has(button[data-img]) {
        gap: 8px !important;
    }
    
    .options:has(button[data-img]) button {
        padding: 8px 10px !important;
        font-size: 12px !important;
    }
    
    .options:has(button:not([data-img])) button {
        min-width: 55px !important;
        padding: 6px 12px !important;
        font-size: 12px !important;
    }
    
    .btn-cantidad {
        min-width: 100px;
        padding: 10px 14px;
        font-size: 13px;
    }
    
    .producto-item {
        font-size: 12px;
        padding: 8px 14px;
    }
    
    .discount-badge {
        font-size: 15px;
        padding: 8px 14px;
        top: 10px;
        left: 10px;
    }
    
    .discount-badge small {
        font-size: 10px;
    }
}

/* ============================================
   AJUSTES PARA CENTRADO TOTAL
   ============================================ */

.row {
    justify-content: center !important;
}

/* En escritorio mantener el layout de 2 columnas */
@media (min-width: 768px) {
    .row {
        justify-content: space-between !important;
        align-items: flex-start !important;
    }
    
    .col-md-6 {
        flex: 0 0 50% !important;
        max-width: 50% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
    }
}

/* En móvil centrar todo */
@media (max-width: 767px) {
    .col-md-6 {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .details {
        align-items: center !important;
        text-align: center !important;
    }
}

.text-center {
    text-align: center !important;
}

.d-flex.justify-content-center {
    justify-content: center !important;
}

/* Mejoras para la sección de características */
.mt-4.p-3.bg-white.rounded.shadow-sm .row {
    justify-content: center !important;
    gap: 10px;
}

.mt-4.p-3.bg-white.rounded.shadow-sm .col-md-4 {
    text-align: center !important;
    flex: 0 0 auto !important;
    width: auto !important;
    min-width: 120px;
}

/* Estilo para los iconos de características */
.mt-4.p-3.bg-white.rounded.shadow-sm .fa-2x {
    font-size: 2.2rem !important;
    display: block !important;
    margin: 0 auto 10px !important;
}

/* Ajustes de la tarjeta de beneficios combinada */
.combo-beneficios,
.producto-beneficios {
    justify-content: center !important;
}

@media (min-width: 768px) {
    .combo-beneficios,
    .producto-beneficios {
        justify-content: flex-start !important;
    }
}

/* Título "¿Qué incluye el combo?" - centrado */
.mt-4.p-3.bg-white.rounded.shadow-sm h5 {
    text-align: center !important;
}

@media (min-width: 768px) {
    .mt-4.p-3.bg-white.rounded.shadow-sm h5 {
        text-align: left !important;
    }
}

/* Badge de edición limitada - centrado */
.edicion-limitada {
    display: inline-block !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

@media (min-width: 768px) {
    .edicion-limitada {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}

/* ============================================
   CORRECIÓN FINAL - LAYOUT ESCRITORIO
   ============================================ */

/* Forzar que en escritorio se vea como 2 columnas */
@media screen and (min-width: 768px) {
    .row {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: 0 !important;
    }
    
    .row .col-md-6:first-child {
        flex: 0 0 50% !important;
        max-width: 50% !important;
        padding-right: 30px !important;
        padding-left: 0 !important;
    }
    
    .row .col-md-6:last-child {
        flex: 0 0 50% !important;
        max-width: 50% !important;
        padding-left: 30px !important;
        padding-right: 0 !important;
    }
}

/* En móvil, columna única */
@media screen and (max-width: 767px) {
    .row {
        display: flex !important;
        flex-direction: column !important;
        flex-wrap: wrap !important;
    }
    
    .row .col-md-6 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
    }
}