/* ═══════════════════════════════════════════════════════
   FIGURAS PERSONALIZADAS - PREMIUM FULLSCREEN COVERFLOW
   ═══════════════════════════════════════════════════════ */
.figuras-section {
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: clamp(4rem, 8vh, 6rem) 0 clamp(1.5rem, 4vh, 2.5rem);
    background: #1A0F07;
    overflow: visible;
}

.figuras-section::before {
    content: "";
    position: absolute;
    top: -10%; right: -5%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, #D4A373 0%, transparent 70%);
    opacity: 0.08;
    filter: blur(80px);
    pointer-events: none;
}

.figuras-creative-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
    mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
}

.light-beam {
    position: absolute;
    top: -50%; left: 10%;
    width: 100%; height: 200%;
    background: conic-gradient(from 180deg at 50% 0%, rgba(255, 248, 234, 0.3) 0%, transparent 10%, transparent 90%, rgba(255, 248, 234, 0.3) 100%);
    filter: blur(80px);
    transform: rotate(-15deg);
    opacity: 0.8;
}

.luxury-shape {
    position: absolute;
    border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%;
    filter: blur(120px);
    opacity: 0.12;
    animation: flowLuxury 30s infinite alternate ease-in-out;
}

.shape-1 { width: 800px; height: 600px; background: var(--shape-bg-1); top: -10%; left: -10%; }
.shape-2 { width: 600px; height: 500px; background: var(--shape-bg-2); bottom: -10%; right: -5%; animation-duration: 25s; animation-delay: -5s; }
.shape-3 { width: 400px; height: 400px; background: var(--shape-bg-1); top: 30%; right: 20%; opacity: 0.1; animation-duration: 35s; }

.sparkle {
    position: absolute;
    width: 4px; height: 4px;
    background: var(--gold);
    transform: rotate(45deg);
    box-shadow: 0 0 20px 2px rgba(255, 185, 0, 0.4);
    animation: pulseSparkle 6s infinite ease-in-out;
}

.sp-1 { top: 20%; left: 20%; }
.sp-2 { top: 70%; left: 80%; width: 6px; height: 6px; animation-delay: -1s; }
.sp-3 { top: 40%; left: 15%; width: 2px; height: 2px; animation-delay: -3s; }
.sp-4 { top: 15%; left: 75%; width: 5px; height: 5px; animation-delay: -2s; }
.sp-5 { top: 85%; left: 30%; width: 3px; height: 3px; animation-delay: -4s; }
.sp-6 { top: 50%; left: 90%; width: 7px; height: 7px; animation-delay: -5.5s; }

@keyframes flowLuxury {
    0% { transform: translate(0,0) scale(1) rotate(0deg); border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%; }
    100% { transform: translate(100px, 50px) scale(1.1) rotate(20deg); border-radius: 60% 40% 40% 60% / 60% 60% 40% 40%; }
}

@keyframes pulseSparkle {
    0%, 100% { opacity: 0.2; transform: rotate(45deg) scale(0.5); }
    50% { opacity: 1; transform: rotate(45deg) scale(1.2); }
}

/* Background decorativo compartido o similar */
.proceso-creative-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.shape-4 { width: 700px; height: 500px; background: var(--shape-bg-2); top: 20%; right: -10%; animation-delay: -10s; }
.sp-7 { top: 15%; left: 85%; }
.sp-8 { bottom: 20%; left: 10%; width: 5px; height: 5px; animation-delay: -2.5s; }

.figuras-container {
    max-width: 90rem;
    width: 100%;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 60px);
    position: relative;
    z-index: 2;
}

.figuras-header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 30px;
    gap: 40px;
    width: 100%;
}

.figuras-titles { text-align: left; flex: 1; }
.figuras-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--cream);
    margin: 0.8rem 0;
    line-height: 1.1;
    letter-spacing: -0.01em;
    font-weight: 700;
    text-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

.figuras-title em { font-style: italic; color: var(--gold); font-weight: 400; }
.figuras-subtext {
    font-family: 'Inter', sans-serif;
    color: var(--text-secondary);
    font-size: 1.15rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.figuras-coverflow {
    position: relative;
    height: clamp(480px, 60vh, 540px); /* Reduced container height by ~10% */
    width: 100%;
    margin: 0 auto;
    perspective: 1500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.figuras-track { position: relative; width: 17rem; height: 100%; transform-style: preserve-3d; overflow: visible; }

.figuras-item {
    position: absolute;
    width: 17rem;
    height: auto;
    background: transparent; /* Fondo movido a ::before */
    border: none; /* Borde físico eliminado para evitar artefactos */
    border-radius: 2.5rem;
    /* backdrop-filter movido a ::before */
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5), inset 0 0 0 1px rgba(255,255,255,0.1);
    
    /* Fix para la línea de corte central en rotaciones Y */
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
    will-change: transform;
    /* Fix: Ocultar por defecto para evitar superposición cuando hay más de 5 productos */
    opacity: 0;
    pointer-events: none;
    isolation: isolate; /* Crea un nuevo contexto de apilamiento */
}

/* Backup de visibilidad - fuerza que un item sea visible si tiene problemas */
.figuras-item.visible {
    opacity: 1 !important;
    pointer-events: auto !important;
}

/* Pseudo-elemento para el cristal y el filtro (Fix de la línea central) */
.figuras-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--glass-bg);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border-radius: inherit;
    z-index: -1;
    pointer-events: none;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.1); /* Borde interno sutil */
    transform: translateZ(0);
}

.figuras-item.far-left { transform: translateX(-32rem) rotateY(45deg) scale(0.7) translateZ(0); opacity: 0.3; filter: blur(4px); z-index: 1; pointer-events: auto; }
.figuras-item.side-left { transform: translateX(-18.5rem) rotateY(25deg) scale(0.85) translateZ(0); opacity: 0.75; z-index: 2; pointer-events: auto; }
.figuras-item.center {
    transform: translateX(0) rotateY(0) scale(1.05) translateZ(0);
    opacity: 1;
    z-index: 10;
    pointer-events: auto;
    filter: blur(0.5px);
}
.figuras-item.center::before {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15), inset 0 0 0 1px rgba(255, 133, 49, 0.2);
}
.figuras-item.side-right { transform: translateX(18.5rem) rotateY(-25deg) scale(0.85) translateZ(0); opacity: 0.75; z-index: 2; pointer-events: auto; }
.figuras-item.far-right { transform: translateX(32rem) rotateY(-45deg) scale(0.7) translateZ(0); opacity: 0.3; filter: blur(4px); z-index: 1; pointer-events: auto; }

.figuras-item-img-wrap { position: relative; height: auto; aspect-ratio: 3 / 4; width: 100%; background: linear-gradient(135deg, #F9F1EA 0%, #F1DED3 100%); overflow: hidden; }
.figuras-item-img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s ease; }
.figuras-item.center:hover .figuras-item-img { transform: scale(1.1); }
.figuras-item.center:hover .figuras-item-img { transform: scale(1.1); }
.figuras-item-badge {
    position: absolute; bottom: 1.2rem; right: 1.2rem; padding: 0.5rem 1.1rem;
    background: #FF8531; border-radius: 3.125rem; font-size: 0.7rem; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase; color: #fff;
    box-shadow: 0 0.25rem 1rem rgba(255, 133, 49, 0.4);
    z-index: 10;
}
.figuras-item-number { display: none; }

/* ── Modal Detalle (Replica de Coleccion.html) ── */
.product-modal-overlay {
    position: fixed; inset: 0;
    background: rgba(94, 55, 27, 0.5);
    backdrop-filter: blur(15px);
    z-index: 2000;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden;
    transition: all 0.5s ease;
}
.product-modal-overlay.open { opacity: 1; visibility: visible; }

.modal-product {
    position: fixed; inset: 0;
    z-index: 2000;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none;
    transition: all 0.5s ease;
}
.modal-product.open { opacity: 1; pointer-events: auto; }

.modal-overlay {
    position: absolute; inset: 0;
    background: rgba(94, 55, 27, 0.5);
    backdrop-filter: blur(15px);
}

.modal-content {
    position: relative;
    width: 92%; max-width: 1200px;
    height: auto;
    max-height: 92vh;
    background: #FDF1E3;
    border-radius: 50px;
    overflow: hidden;
    display: flex;
    border: none;
    box-shadow: 0 40px 100px rgba(0,0,0,0.1);
    transform: scale(0.95) translateY(30px);
    opacity: 0;
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.modal-product.open .modal-content {
    opacity: 1;
}

.modal-left { flex: 1; padding: 30px; display: flex; flex-direction: column; gap: 20px; }
.modal-main-img { flex: 1; border-radius: 20px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.modal-main-img img { width: 100%; height: 100%; object-fit: cover; transition: opacity 0.3s; }
.modal-gallery { display: flex; gap: 10px; justify-content: center; }
.gallery-thumb { width: 60px; height: 60px; border-radius: 10px; object-fit: cover; cursor: pointer; opacity: 0.6; transition: 0.3s; border: 2px solid transparent; }
.gallery-thumb:hover, .gallery-thumb.active { opacity: 1; border-color: #FF8531; }

.modal-right { flex: 0.9; padding: 70px 60px 50px; display: flex; flex-direction: column; position: relative; overflow-y: auto; }
.modal-close {
    position: absolute; top: 30px; right: 30px; width: 50px; height: 50px; border-radius: 50%;
    background: #F0F2F5; border: 1px solid rgba(0,0,0,0.05); color: #1a0f07;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: all 0.4s ease; z-index: 100;
}
.modal-close:hover { background: #FF8531; color: #fff; transform: rotate(90deg) scale(1.1); border-color: #FF8531; }

.modal-badge-inbody { margin-bottom: 25px; }
.modal-badge-fly { background: #FF8531; color: #fff; padding: 6px 14px; border-radius: 80px; font-size: 0.65rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; display: inline-block; }

.modal-tag { color: #FF8531; font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.4em; margin-bottom: 20px; display: block; }
.modal-title { font-family: 'Playfair Display', serif; font-size: 3.5rem; color: #1a0f07; margin-bottom: 25px; line-height: 1.05; letter-spacing: -0.02em; }
.modal-desc { font-size: 1rem; color: #666; line-height: 1.8; margin-bottom: 45px; }

.modal-specs-box { margin-bottom: 40px; padding: 30px; background: #F3E7D7; border-radius: 24px; }
.specs-title { display: block; font-size: 0.75rem; font-weight: 800; color: #1a0f07; letter-spacing: 0.1em; margin-bottom: 20px; }
.specs-grid { display: flex; flex-direction: column; gap: 12px; }
.spec-row { display: flex; gap: 10px; font-size: 0.9rem; color: #1a0f07; }
.spec-row label { font-weight: 800; }
.spec-row span { opacity: 0.8; }

.modal-footer-row { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 40px; padding-top: 30px; border-top: 1px dashed rgba(0,0,0,0.06); }
.modal-price-box-lux { display: flex; flex-direction: column; gap: 4px; }
.modal-price-box-lux label { font-size: 0.6rem; font-weight: 800; color: #C5A059; letter-spacing: 0.2em; }
.modal-price-box-lux span { font-size: 2.8rem; font-weight: 400; font-family: 'Playfair Display', serif; color: #1a0f07; line-height: 1; }

.btn-modal-action-wa {
    flex: 1; padding: 24px; background: #25D366; color: #fff; border: none; border-radius: 100px;
    font-size: 1rem; font-weight: 800; text-decoration: none; display: flex; align-items: center;
    justify-content: center; gap: 12px; transition: 0.3s; box-shadow: 0 10px 25px rgba(37, 211, 102, 0.2);
}
.btn-modal-action-wa:hover { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4); background: #20BA56; }

@media (max-width: 900px) {
    .modal-content { flex-direction: column; width: 95%; height: 90vh; max-height: 90vh; overflow-y: auto; border-radius: 40px; }
    .modal-left { height: 400px; flex: none; }
    .modal-right { padding: 40px 30px; flex: none; }
    .modal-title { font-size: 2.2rem; }
    .gallery-thumb { width: 60px; }
}

.figuras-item-info { 
    padding: 1.5rem; 
    display: flex; 
    flex-direction: column; 
    text-align: left; 
    position: relative; 
    min-height: 120px; 
}
.figuras-item-name { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: #1a0f07; margin-bottom: 0.3rem; }
.figuras-item-desc { font-size: 0.8rem; color: #5E371B; opacity: 0.6; line-height: 1.4; margin-bottom: 0; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; }

.figuras-item-actions { 
    position: absolute; 
    inset: 0; 
    background: #FDF1E3; /* Mismo color que el modal */
    display: flex; 
    align-items: center; 
    gap: 0.75rem; 
    padding: 0 1.5rem;
    opacity: 0;
    transform: translateY(10%);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
    z-index: 5;
}

.figuras-item:hover .figuras-item-actions {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.figuras-item-btn-info { 
    flex: 1; 
    background: #1a0f07; 
    color: #fff; 
    height: 2.8rem; 
    border-radius: 3.125rem; 
    font-weight: 700; 
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease; 
    border: none;
    cursor: pointer;
}
.figuras-item-btn-info:hover { background: #FF8531; transform: translateY(-3px); box-shadow: 0 5px 15px rgba(255, 133, 49, 0.3); }

.figuras-item-btn-wa {
    width: 2.8rem;
    height: 2.8rem;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    flex-shrink: 0;
}
.figuras-item-btn-wa:hover { transform: scale(1.1) rotate(10deg); box-shadow: 0 0.5rem 1.25rem rgba(37, 211, 102, 0.3); }

.figuras-coverflow-nav {
    position: absolute; 
    top: 50%; 
    transform: translateY(-50%);
    width: 3.5rem; 
    height: 3.5rem; 
    border-radius: 50%;
    background: var(--glass-bg); 
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    display: flex; 
    align-items: center; 
    justify-content: center;
    cursor: pointer; 
    color: var(--text-primary); 
    z-index: 100; 
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Desktop wide positioning */
.figuras-coverflow-nav.prev { left: -5vw; }
.figuras-coverflow-nav.next { right: -5vw; }

.figuras-coverflow-nav:hover { 
    background: #FF8531; 
    color: #fff;
    border-color: #FF8531;
    transform: translateY(-50%) scale(1.1); 
    box-shadow: 0 10px 25px rgba(255, 133, 49, 0.4); 
}

.figuras-dot.active { opacity: 1; background: #FF8531; width: 40px; border-radius: 10px; }

/* Constrain buttons to container padding for smaller screens */
@media (max-width: 110rem) { 
    .figuras-coverflow-nav.prev { left: -2rem; } 
    .figuras-coverflow-nav.next { right: -2rem; } 
}

@media (max-width: 90rem) { 
    .figuras-coverflow-nav.prev { left: 0px; } 
    .figuras-coverflow-nav.next { right: 0px; } 
}
@media (max-width: 56.25rem) {
    .figuras-section { padding: 6.875rem 0 3.75rem; }
    .figuras-title { font-size: 2.4rem; }
    .figuras-coverflow { height: 35rem; }
    .figuras-track { width: 21rem; }
    .figuras-item { width: 21rem; height: auto; border-radius: 1.875rem; }
    .figuras-item-img-wrap { height: auto; aspect-ratio: 3 / 4; }
    .figuras-item.center { transform: translateX(0) scale(1.05); }
    .figuras-item.side-left { transform: translateX(-22rem) scale(0.8); }
    .figuras-item.side-right { transform: translateX(22rem) scale(0.8); }
    .figuras-item.far-left { transform: translateX(-38rem) scale(0.65); }
    .figuras-item.far-right { transform: translateX(38rem) scale(0.65); }
}
@media (max-width: 1024px) {
    .figuras-header-wrapper { flex-direction: column; align-items: center; text-align: center; gap: 20px; }
    .figuras-titles { text-align: center; }
    .figuras-subtext { margin: 0 auto; }
}
@media (max-width: 768px) {
    .figuras-track { width: 18.5rem; }
    .figuras-item { width: 18.5rem; }
}
@media (max-width: 600px) {
    .figuras-container { padding: 0 20px; }
    .figuras-coverflow { height: 520px; }
    .figuras-track { width: 300px; }
    .figuras-item { width: 300px; height: auto; border-radius: 2rem; overflow: hidden; }
    .figuras-item-img-wrap { height: auto; aspect-ratio: 3 / 4; } /* 4:3 vertical */
    .figuras-item-info { 
        padding: 12px 14px 16px 14px; 
        height: auto; 
        display: flex; 
        flex-direction: column; 
    }
    .figuras-item-name { 
        font-size: 1.2rem; 
        margin-bottom: 4px; 
    }
    .figuras-item-desc { 
        font-size: 0.85rem; 
        line-height: 1.4;
        margin-bottom: 12px;
        flex: 1; /* Ocupa el resto del espacio de texto */
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        line-clamp: 3;
        -webkit-box-orient: vertical;
    }
    .figuras-item-actions { 
        margin-top: auto;
    }
    .figuras-item.side-left { 
        transform: translateX(-110px) scale(0.7); 
        opacity: 0.35; 
        filter: blur(4px); 
        z-index: 1; 
        pointer-events: none;
    }
    .figuras-item.side-right { 
        transform: translateX(110px) scale(0.7); 
        opacity: 0.35; 
        filter: blur(4px); 
        z-index: 1; 
        pointer-events: none;
    }
    .figuras-item.far-left, .figuras-item.far-right { opacity: 0; pointer-events: none; }
    .figuras-coverflow-nav { width: 44px; height: 44px; }
    .figuras-coverflow-nav.prev { left: 5px; }
    .figuras-coverflow-nav.next { right: 5px; }
}

/* ═══════════════════════════════════════════════════════
   GALLERY 3D 70/30 - PRODUCTOS MAS SOLICITADOS
   ═══════════════════════════════════════════════════════ */
.gallery-section-header {
    width: 100%;
    text-align: center;
    margin-bottom: 2rem;
    padding-top: clamp(2rem, 5vh, 4rem);
}
.gallery-section-label {
    color: var(--gold);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}
.gallery-section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--cream);
    font-weight: 700;
    letter-spacing: -0.01em;
    text-shadow: 0 4px 12px rgba(0,0,0,0.5);
}
.gallery-section-title em { font-style: italic; color: var(--gold); font-weight: 400; }
.gallery-section-title.dynamic-gallery-title em { font-style: italic; color: var(--gold); }

.gallery-main-layout {
    display: flex;
    flex-direction: column;
    width: 100%;
}
@media (min-width: 1024px) {
    .gallery-main-layout {
        flex-direction: row;
        align-items: center;
    }
}

/* COLUMNA IZQUIERDA 70% */
.gallery-carousel-col {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (min-width: 1024px) {
    .gallery-carousel-col { width: 70%; }
}

/* Contenedor del Carrusel 3D */
.gallery-container-3d {
    perspective: 1200px;
    transform-style: preserve-3d;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
}
@media (min-width: 1024px) {
    .gallery-container-3d { height: 550px; }
}

/* Tarjetas 3D */
.gallery-item-3d {
    position: absolute;
    width: 240px;
    aspect-ratio: 3/4;
    border-radius: 1.5rem;
    background-color: var(--accent);
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1),
                opacity 0.8s ease,
                filter 0.8s ease,
                box-shadow 0.8s ease;
    transform-origin: center center;
    will-change: transform, opacity, filter;
    cursor: pointer;
    overflow: hidden;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.1), 0 15px 35px rgba(0,0,0,0.6);
}
@media (min-width: 1024px) {
    .gallery-item-3d { width: 280px; }
}

.gallery-item-3d img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

/* Overlay para tarjetas laterales */
.gallery-item-3d::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.85));
    opacity: 1;
    transition: opacity 0.8s ease;
    pointer-events: none;
}
.gallery-item-3d.active::after { opacity: 0; }

.gallery-item-3d.active {
    box-shadow: inset 0 0 0 1px rgba(212,175,55,0.4),
                0 30px 60px -15px rgba(0, 0, 0, 0.9),
                0 0 60px rgba(232, 106, 51, 0.15);
    cursor: default;
}

.gallery-badge-3d {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 20;
    background: var(--orange);
    color: #fff;
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.4rem 0.9rem;
    border-radius: 80px;
    box-shadow: 0 0.25rem 1rem rgba(232, 106, 51, 0.4);
}

/* Botones de navegación del carrusel */
.gallery-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 50;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(8px);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}
.gallery-nav-btn:hover {
    background: #fff;
    color: #000;
    transform: translateY(-50%) scale(1.1);
}
.gallery-nav-btn.prev { left: 1rem; }
.gallery-nav-btn.next { right: 1rem; }
@media (min-width: 1024px) {
    .gallery-nav-btn { width: 3.5rem; height: 3.5rem; }
    .gallery-nav-btn.prev { left: 2rem; }
    .gallery-nav-btn.next { right: 2rem; }
}

/* COLUMNA DERECHA 30% */
.gallery-info-col {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 280px;
    padding: 2rem 1rem;
}
@media (min-width: 1024px) {
    .gallery-info-col {
        width: 30%;
        padding: 0 3rem 0 2rem;
        min-height: 400px;
    }
}

/* Mobile: reducir separación panel info */
@media (max-width: 1023px) {
    .gallery-main-layout {
        gap: 0;
    }
    .gallery-section-header {
        margin-bottom: 0.5rem;
        padding-top: clamp(1.5rem, 4vh, 2.5rem);
    }
    .gallery-info-col {
        padding: 1.5rem 1.5rem;
        min-height: auto;
    }
    .gallery-info-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
        margin-bottom: 0.4rem;
    }
    .gallery-info-desc {
        font-size: 0.85rem;
        line-height: 1.4;
        margin-bottom: 0.6rem;
    }
    .gallery-info-actions {
        gap: 0.5rem;
    }
}

.gallery-info-container {
    width: 100%;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
@media (min-width: 1024px) {
    .gallery-info-container {
        align-items: flex-start;
        text-align: left;
        max-width: none;
    }
}

/* Info items animation */
.info-fade-title { animation: fadeRight 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) forwards; }
.info-fade-desc { animation: fadeRight 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) 0.1s forwards; opacity: 0; }
.info-fade-action { animation: fadeRight 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) 0.2s forwards; opacity: 0; }

@keyframes fadeRight {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}
@media (max-width: 1023px) {
    @keyframes fadeRight {
        from { opacity: 0; transform: translateY(20px); }
        to { opacity: 1; transform: translateY(0); }
    }
}

.gallery-info-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--cream);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
}
.gallery-info-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 28rem;
}
.gallery-info-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
@media (min-width: 1024px) {
    .gallery-info-actions {
        flex-direction: row;
        align-items: center;
    }
}
.gallery-info-price {
    color: var(--gold);
    font-size: 2rem;
    font-weight: 700;
}
.gallery-btn-details {
    background: #fff;
    color: #000;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.9rem 1.5rem;
    border-radius: 80px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.gallery-btn-details:hover {
    background: var(--orange);
    color: #fff;
    transform: scale(1.05);
}

/* ═══════════════════════════════════════════════════════
   PROCESO SECTION - UNIFIED CARD + ENCLOSED BUTTONS
   ═══════════════════════════════════════════════════════ */
.proceso-section {
    position: relative;
    width: 100%;
    background: #1A0F07;
    padding: clamp(4rem, 8vh, 6rem) 0;
    overflow: hidden;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ── Unified Background Container ── */
.proceso-unified-bg {
    position: relative;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 3rem 4rem;
    background: linear-gradient(145deg, rgba(45, 27, 13, 0.95) 0%, rgba(26, 15, 7, 0.9) 100%);
    border: 1px solid rgba(243, 231, 215, 0.1);
    border-radius: 3rem;
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.4),
        0 0 100px rgba(255, 185, 0, 0.05),
        inset 0 1px 0 rgba(243, 231, 215, 0.1);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
}

.proceso-unified-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 133, 49, 0.2), transparent);
}

.proceso-container {
    max-width: 87.5rem;
    width: 100%;
    margin: 0 auto;
    padding: 0;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.proceso-header {
    margin-bottom: 2.5rem;
    text-align: center;
}

.proceso-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--cream);
    margin: 0 0 1rem;
    line-height: 1.1;
    font-weight: 700;
}

.proceso-title em {
    font-style: italic;
    color: var(--terracota);
    font-weight: 400;
}

.proceso-subtext {
    font-family: 'Inter', sans-serif;
    color: rgba(243, 231, 215, 0.55);
    font-size: 1.2rem;
    margin: 0;
}

.proceso-layout {
    display: grid;
    grid-template-columns: 38% 62%;
    gap: 2.5rem;
    width: 100%;
    flex: 1;
    min-height: 580px;
}

/* ── Steps Panel (Left Column) ── */
.proceso-steps-list {
    display: flex;
    flex-direction: column;
    gap: 1.125rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 2rem;
}

.proceso-step-btn {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem 1.75rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.5rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    text-align: left;
    color: var(--text-primary);
    position: relative;
    overflow: hidden;
}

.proceso-step-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--btn-color);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    border-radius: inherit;
}

.proceso-step-btn:hover::before,
.proceso-step-btn.active::before {
    opacity: 1;
}

.proceso-step-btn:hover,
.proceso-step-btn.active {
    border-color: transparent;
    transform: translateX(10px);
    color: #fff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.proceso-step-btn .step-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 1rem;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.proceso-step-btn:hover .step-icon,
.proceso-step-btn.active .step-icon {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

.proceso-step-btn .step-num {
    font-size: clamp(0.85rem, 1.5vw, 1.1rem);
    font-weight: 800;
    opacity: 0.85;
    min-width: 2.5rem;
}

.proceso-step-btn .step-title {
    flex: 1;
    font-weight: 700;
    font-size: clamp(0.9rem, 1.8vw, 1.15rem);
    line-height: 1.2;
    letter-spacing: 0.01em;
}

.proceso-step-btn .step-arrow {
    display: none;
}

/* ── Display Panel (Right Column) ── */
.proceso-display {
    position: relative;
    border-radius: 2.5rem;
    overflow: hidden;
    background: var(--glass-bg);
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.35),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.proceso-display-card {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease, transform 0.5s ease;
    border-radius: 2.5rem;
    overflow: hidden;
    transform: scale(0.97);
}

.proceso-display-card.active {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
}

.display-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.display-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.display-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.35) 50%, rgba(0,0,0,0.65) 100%);
    z-index: 2;
}

.display-content {
    position: relative;
    z-index: 3;
    height: 100%;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #fff;
}

.display-subtitle {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    margin-bottom: 12px;
    color: rgba(255,255,255,0.85);
}

.display-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 4.5vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 800;
    text-shadow: 0 4px 25px rgba(0, 0, 0, 0.35);
}

.display-desc {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.88);
    max-width: 550px;
}

.display-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 16px 32px;
    background: #fff;
    color: var(--bg-primary);
    border: 2px solid var(--card-color);
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    width: fit-content;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.display-btn:hover {
    background: var(--card-color);
    color: var(--bg-primary);
    border-color: var(--card-color);
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

@media (max-width: 900px) {
    .proceso-section {
        padding: 3rem 0;
        min-height: auto;
    }

    .proceso-unified-bg {
        padding: 2.5rem 1.75rem;
        border-radius: 2rem;
        margin: 0 1rem;
    }

    .proceso-layout {
        grid-template-columns: 1fr;
        gap: 1.75rem;
        min-height: auto;
    }

    .proceso-steps-list {
        flex-direction: row;
        overflow-x: auto;
        gap: 1rem;
        padding: 1.25rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        justify-content: center;
    }

    .proceso-steps-list::-webkit-scrollbar {
        display: none;
    }

    .proceso-step-btn {
        flex-shrink: 0;
        padding: 1.25rem 1rem;
        border-radius: 1.25rem;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        min-width: 80px;
        text-align: center;
    }

    .proceso-step-btn .step-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
        font-size: 1.5rem;
    }

    .proceso-step-btn .step-num {
        font-size: 0.85rem;
        min-width: auto;
    }

    .proceso-step-btn .step-title {
        display: none;
    }

    .proceso-step-btn:hover,
    .proceso-step-btn.active {
        transform: translateX(0) scale(1.03);
    }

    .proceso-display {
        border-radius: 1.75rem;
        min-height: 360px;
    }

    .proceso-display-card {
        border-radius: 1.75rem;
    }

    .display-content {
        padding: 2rem;
    }

    .display-title {
        font-size: 1.8rem;
    }

    .display-desc {
        font-size: 1.05rem;
        margin-bottom: 1.5rem;
    }

    .display-btn {
        padding: 14px 28px;
        font-size: 0.95rem;
    }
}

    .display-desc {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
}

.social-community-section {
    position: relative;
    padding: clamp(4rem, 10vh, 6rem) 0 4rem;
    background: #1A0F07;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.social-container {
    max-width: 90rem;
    width: 100%;
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 3.75rem);
    position: relative;
    z-index: 5;
}

.social-header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2rem;
    gap: 2.5rem;
}

.social-text-content {
    text-align: left;
    max-width: 100%;
}

.social-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--cream);
    margin-bottom: 0.9375rem;
    line-height: 1.1;
    white-space: nowrap;
}

.social-title em {
    font-style: italic;
    color: var(--terracota);
    font-weight: 400;
}

.social-subtext {
    font-size: 1.1rem;
    color: rgba(243, 231, 215, 0.55);
    margin: 0;
}

.social-buttons {
    display: flex;
    gap: 12px;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(26, 15, 7, 0.8);
    border: 1px solid rgba(243, 231, 215, 0.15);
    border-radius: 50px;
    color: var(--cream);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(10px);
    white-space: nowrap;
}

.social-btn:hover {
    background: var(--cream);
    color: #1A0F07;
    transform: translateY(-5px);
}

.social-btn img {
    opacity: 0.8;
}

/* Tracks & Marquee */
.social-tracks-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-track {
    width: 100%;
    overflow: hidden;
    position: relative;
    user-select: none;
}

.social-track-inner {
    display: flex;
    width: max-content;
    gap: 24px;
}

/* Animations */
.track-to-right .social-track-inner {
    animation: marqueeRight 60s infinite linear;
}

.track-to-left .social-track-inner {
    animation: marqueeLeft 50s infinite linear;
}

@keyframes marqueeLeft {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@keyframes marqueeRight {
    from { transform: translateX(-50%); }
    to { transform: translateX(0); }
}

.social-track-inner:hover {
    animation-play-state: paused;
}

/* Cards */
.social-track-card {
    flex-shrink: 0;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(5px);
    transition: all 0.4s ease;
}

.social-track-card:hover {
    background: var(--card-bg);
    border-color: var(--terracota);
}

/* Comentarios - Reducidos */
.card-horizontal {
    width: 28rem;
    height: 8.75rem;
    padding: 1.5rem 2rem;
}

/* Productos */
.card-vertical {
    width: 17.5rem;
    height: 23.125rem;
}

.card-vertical img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.social-card-text {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--cream);
    font-style: italic;
    margin-bottom: 12px;
}

.social-card-author {
    font-weight: 700;
    color: var(--gold);
    font-size: 0.9rem;
}

/* Partner Card - Altura reducida */
.partner-card {
    width: 20rem;
    height: 5rem;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 0;
}

.partner-logo-img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.partner-card:hover .partner-logo-img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .partner-card { width: 12.5rem; height: 5rem; }
}

/* ═══════════════════════════════════════════════════════
   NEWSLETTER - GLOBAL CLUB
   ═══════════════════════════════════════════════════════ */
.newsletter-section {
    padding: 100px 0;
    position: relative;
    z-index: 5;
    background: #1A0F07;
}

.newsletter-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.newsletter-glass {
    background: rgba(45, 27, 13, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(243, 231, 215, 0.1);
    border-radius: 60px;
    padding: 80px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.newsletter-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.newsletter-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin: 20px 0;
    color: var(--cream);
}

.newsletter-text {
    font-size: 1.1rem;
    color: rgba(243, 231, 215, 0.55);
    margin-bottom: 40px;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 550px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 18px 30px;
    border-radius: 50px;
    border: 1px solid rgba(243, 231, 215, 0.2);
    background: rgba(26, 15, 7, 0.8);
    color: var(--cream);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--terracota);
    box-shadow: 0 0 0 4px rgba(255, 133, 49, 0.15);
}

.newsletter-input::placeholder {
    color: rgba(243, 231, 215, 0.4);
}

.newsletter-decor {
    position: absolute;
    font-size: 2rem;
    color: var(--terracota);
    opacity: 0.2;
    animation: float 4s infinite ease-in-out;
}

.decor-1 { top: 20%; left: 10%; }
.decor-2 { bottom: 20%; right: 10%; animation-delay: -2s; }

/* ═══════════════════════════════════════════════════════
   FOOTER LUXURY
   ═══════════════════════════════════════════════════════ */
.footer-luxury {
    background: #1A0F07;
    border-top: 1px solid rgba(243, 231, 215, 0.08);
    color: var(--cream);
    position: relative;
    padding-bottom: 30px;
    overflow: hidden;
}

.footer-luxury::after {
    content: 'HAMELIE';
    position: absolute;
    bottom: -5vh;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-display);
    font-size: 24vw;
    font-weight: 800;
    color: rgba(94, 55, 27, 0.03);
    pointer-events: none;
    z-index: 0;
    line-height: 1;
    white-space: nowrap;
}

.footer-arch {
    width: 100%;
    height: 40px;
    margin-top: -1px;
}

.footer-arch svg {
    display: block;
    height: 100%;
    width: 100%;
}

.footer-luxury-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.footer-luxury-top {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    padding: 60px 0 40px;
}

.footer-luxury-brand {
    max-width: 320px;
}

.footer-luxury-logo {
    margin-bottom: 20px;
}

.footer-luxury-logo-img {
    width: 178px;
    height: auto;
    aspect-ratio: 200 / 45;
    opacity: 0.9;
}

.footer-luxury-tagline {
    font-size: 1.05rem;
    line-height: 1.5;
    opacity: 0.6;
    margin-bottom: 25px;
    font-weight: 300;
    color: var(--cream);
}

.footer-lux-socials {
    display: flex;
    gap: 15px;
}

.lux-social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(243, 231, 215, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cream);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(243, 231, 215, 0.1);
}

.lux-social-link:hover {
    background: var(--terracota);
    border-color: var(--terracota);
    color: #FFFFFF;
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 10px 20px rgba(255, 133, 49, 0.2);
}

.footer-lux-col {
    display: flex;
    flex-direction: column;
}

.footer-luxury-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-lux-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--cream);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.footer-lux-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-lux-list a {
    font-size: 0.95rem;
    opacity: 0.5;
    transition: all 0.3s ease;
    position: relative;
    width: fit-content;
    font-weight: 300;
    color: var(--cream);
}

.footer-lux-list a:hover {
    opacity: 1;
    color: var(--terracota);
    transform: translateX(5px);
}

.footer-lux-list a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--terracota);
    transition: width 0.3s ease;
}

.footer-lux-list a:hover::after {
    width: 100%;
}

.footer-luxury-bottom {
    padding-top: 60px;
    text-align: center;
}

.footer-lux-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(216, 185, 138, 0.2), transparent);
    margin-bottom: 40px;
}

.footer-lux-legal {
    display: flex;
    justify-content: space-between;
    opacity: 0.4;
    font-size: 0.9rem;
}

@media (max-width: 1024px) {
    .footer-luxury-top { flex-direction: column; gap: 60px; padding: 60px 0; }
    .footer-luxury-brand { max-width: 100%; text-align: center; display: flex; flex-direction: column; align-items: center; }
    .footer-luxury-logo { margin-left: auto; margin-right: auto; }
    .footer-lux-socials { justify-content: center; }
    .footer-luxury-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .newsletter-glass { padding: 60px 24px; border-radius: 40px; }
    .newsletter-form { flex-direction: column; }
    .footer-luxury-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .footer-lux-list { align-items: center; }
    .footer-lux-legal { flex-direction: column; gap: 15px; }
}

/* ══ BENTO CATEGORIES GRID ══════════════════════════════════════ */
.bento-categories-section {
    padding: clamp(5rem, 12vh, 7.5rem) 0 clamp(1.5rem, 6vh, 3rem);
    position: relative;
    background: #1A0F07;
}

.bento-container {
    max-width: 81rem; /* Reducido un 10% respecto a 90rem */
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 3.75rem);
    position: relative;
    z-index: 2;
}

.bento-header {
    text-align: center;
    margin-bottom: 2rem;
}

.bento-main-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.5rem, 4.5vw, 4rem);
    font-weight: 200;
    color: var(--cream);
    margin-top: 1rem;
    letter-spacing: -0.02em;
}

.bento-main-title em {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--terracota);
}



.cat-bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-flow: dense;
    gap: 1.5rem;
}

.bento-item {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    background: #1A120B;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.25rem;
    text-decoration: none;
    transition: all 0.7s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 0.625rem 1.875rem rgba(0,0,0,0.3);
    aspect-ratio: 1 / 1;
}

.bento-item:hover {
    transform: translateY(-0.625rem) scale(1.02);
    box-shadow: 0 1.25rem 3.125rem rgba(0,0,0,0.5);
}

.bento-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 1;
    transition: transform 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}

.bento-item:hover .bento-bg {
    transform: scale(1.1);
}

.bento-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: opacity 0.6s ease, filter 0.6s ease;
    filter: grayscale(0.1) brightness(0.95);
}

.bento-item:hover .bento-bg img {
    opacity: 0.8;
    filter: grayscale(0) brightness(1);
}

.bento-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13,8,5,0.7) 0%, rgba(13,8,5,0.1) 40%, transparent 100%);
    z-index: 2;
}

.bento-content {
    position: relative;
    z-index: 3;
    pointer-events: none;
}

.bento-tag {
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--gold);
    display: block;
    margin-bottom: 0.3125rem;
}

.bento-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: #fff;
    line-height: 1.2;
}

/* Bento Sizes */
.bento-2x2 { grid-column: span 2; grid-row: span 2; aspect-ratio: 1 / 1; }
.bento-2x1 { grid-column: span 2; grid-row: span 1; aspect-ratio: 2 / 0.95; } /* Proporción para 2 columnas y 1 fila */
.bento-1x2 { grid-column: span 1; grid-row: span 2; aspect-ratio: 0.5 / 1; }
.bento-1x1 { grid-column: span 1; grid-row: span 1; aspect-ratio: 1 / 1; }

@media (max-width: 75rem) {
    .cat-bento-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .bento-main-title { font-size: 3.2rem; }
}

@media (max-width: 62rem) {
    .bento-container { padding: 0 1.875rem; }
    .cat-bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 48rem) {
    .bento-main-title { font-size: 2.6rem; }
    .bento-header { margin-bottom: 2rem; }

    /* 2-column horizontal rectangle grid */
    .cat-bento-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-auto-flow: dense;
        gap: 0.875rem;
    }

    /* All items: horizontal rectangles (wide, not square) */
    .bento-item,
    .bento-2x2,
    .bento-2x1,
    .bento-1x2,
    .bento-1x1 {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
        aspect-ratio: 16 / 9 !important; /* Wide rectangle */
        min-height: unset;
        border-radius: 1.25rem;
        padding: 1rem;
    }

    /* Typography adjustments */
    .bento-tag { display: none !important; } /* Only show titles on mobile */
    .bento-title { font-size: 1rem; }
}
/* WhatsApp Channel Section - Theme Aware */
/* ══ WHATSAPP CHANNEL SECTION - PREMIUM ══════════════════════ */
.wa-channel-section {
    position: relative;
    padding: clamp(5rem, 12vh, 8rem) 0;
    overflow: hidden;
    background: #1A0F07;
}

.wa-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.wa-glass-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    background: transparent; /* Movido a ::after */
    border: none; /* Movido a ::after */
    border-radius: 40px;
    padding: 60px;
    /* backdrop-filter movido a ::after */
    box-shadow: none;
    position: relative;
    overflow: visible;
    isolation: isolate;
}

/* Fix para la línea de corte en Comunidad Movil */
.wa-glass-box::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--glass-bg);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: inherit;
    z-index: -1;
    box-shadow: var(--shadow-lux), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: translateZ(0);
}

.wa-glass-box::before {
    content: '';
    position: absolute;
    top: -50%; right: -30%;
    width: 80%; height: 150%;
    background: radial-gradient(circle at center, rgba(37, 211, 102, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

body.light-mode .wa-glass-box::before {
    background: radial-gradient(circle at center, rgba(37, 211, 102, 0.1) 0%, transparent 60%);
}

.wa-content { position: relative; z-index: 5; }

.wa-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.2);
    border-radius: 100px;
    color: #25D366;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 2rem;
}

.wa-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    line-height: 1.1;
    color: var(--cream);
    margin-bottom: 1.5rem;
}

.wa-title em { font-style: italic; color: #25D366; font-weight: 400; }

.wa-text {
    font-size: 1.1rem;
    color: rgba(243, 231, 215, 0.55);
    line-height: 1.6;
    margin-bottom: 3rem;
}

.btn-wa-channel {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #25D366;
    color: #fff;
    padding: 18px 40px;
    border-radius: 100px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.btn-wa-channel:hover {
    transform: translateY(-5px);
    background: #20bd5b;
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

/* QR Visualization - REDESIGNED PREMIUM */
.wa-qr-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 5;
    perspective: 1000px;
}

.wa-qr-glass {
    position: relative;
    padding: 30px;
    background: #FFFFFF;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.25);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 8px solid #F8F9FA;
}

.wa-qr-glass::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(to right, transparent, #25D366, transparent);
    z-index: 10;
    animation: scanMove 3s infinite linear;
    pointer-events: none;
    box-shadow: 0 0 15px #25D366;
}

.wa-container:hover .wa-qr-glass {
    transform: rotateY(-10deg) rotateX(5deg) translateY(-10px);
}



.qr-code-img {
    width: 200px; height: 200px;
    background: #fff;
    padding: 0;
    border-radius: 0;
    display: block;
    transition: transform 0.4s ease;
}

.wa-qr-glass::after {
    content: 'ESCANEAME';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #25D366;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

.wa-qr-hint {
    margin-top: 25px !important;
    color: var(--text-secondary);
    font-size: 0.85rem;
    opacity: 0.8;
    font-weight: 500;
}

@media (max-width: 900px) {
    .wa-channel-section { padding: clamp(3rem, 8vh, 5rem) 0; }
    .wa-container { padding: 0 20px; }

    /* Remove glass effect completely */
    .wa-glass-box {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 40px 24px;
        border-radius: 30px;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.08);
    }
    .wa-glass-box::after {
        display: none !important; /* Kill the glass pseudo-element */
    }
    .wa-glass-box::before {
        display: none !important; /* Kill the glow pseudo-element */
    }

    /* Typography */
    .wa-title { font-size: clamp(1.8rem, 6vw, 2.5rem); margin-bottom: 1rem; }
    .wa-text { margin: 0 auto 2rem; max-width: 400px; font-size: 1rem; }

    /* Center buttons */
    .wa-content > div[style] {
        justify-content: center !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .btn-wa-channel {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        padding: 16px 30px;
    }

    /* Hide QR on mobile — can't scan your own phone screen */
    .wa-qr-container { display: none !important; }
}


/* Scanning Animation for QR */
@keyframes scanMove {
    0% { top: 0%; opacity: 0; }
    50% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

.wa-qr-glass::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 2px;
    background: linear-gradient(to right, transparent, #25D366, transparent);
    z-index: 10;
    animation: scanMove 3s infinite linear;
    pointer-events: none;
}

/* ═══════════════════════════════════════════════════
   MOBILE GPU OPTIMIZATION — Prevents Safari iOS crash
   Disables heavy blur/filter effects on mobile only
   ═══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  /* Kill expensive decorative blur layers */
  .figuras-section::before { display: none !important; }
  .luxury-shape { display: none !important; }
  .light-beam { display: none !important; }
  .sparkle { display: none !important; }
  .proceso-creative-bg { display: none !important; }
  .figuras-creative-bg { display: none !important; }

  /* Remove backdrop-filter from product cards */
  .figuras-item::before {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  /* Remove backdrop-filter from nav buttons */
  .figuras-coverflow-nav {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: rgba(30, 20, 10, 0.7) !important;
  }

  /* Remove backdrop-filter from modals */
  .product-modal-overlay,
  .modal-overlay {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: rgba(0, 0, 0, 0.92) !important;
  }

  /* Remove backdrop-filter from proceso panel numbers */
  .proceso-panel-num {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: rgba(255, 255, 255, 0.25) !important;
  }

  /* Remove backdrop-filter from WA channel section */
  .wa-glass-box::after {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  /* Bento grid items */
  .bento-item-overlay {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
}

/* ═══════════════════════════════════════════════════════
   BTS CONCERT RAFFLE POPUP MODAL
   ═══════════════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════════════
   BTS CONCERT RAFFLE POPUP MODAL (REDESIGNED LUXURY HORIZONTAL)
   ═══════════════════════════════════════════════════════ */
.bts-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 5, 2, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.bts-popup-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.bts-popup-content {
    background: linear-gradient(135deg, rgba(26, 13, 45, 0.9) 0%, rgba(13, 5, 23, 0.98) 100%);
    border: 2px solid rgba(124, 77, 255, 0.35);
    box-shadow: 
        0 40px 80px rgba(0, 0, 0, 0.85),
        0 0 50px rgba(124, 77, 255, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    width: min(520px, 92vw); /* Default for mobile/portrait */
    padding: 40px 30px;
    border-radius: 2.2rem;
    position: relative;
    transform: scale(0.92) translateY(20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    color: var(--cream);
}

.bts-popup-overlay.open .bts-popup-content {
    transform: scale(1) translateY(0);
}

.bts-popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--cream);
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.bts-popup-close:hover {
    background: rgba(228, 139, 174, 0.2);
    border-color: #e48bae;
    color: #e48bae;
    transform: rotate(90deg);
}

/* Grid layout */
.bts-popup-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
    text-align: center;
}

/* Left side card */
.bts-popup-visual-col {
    width: 100%;
    max-width: 320px;
}

.bts-popup-glow-card {
    background: linear-gradient(135deg, rgba(149, 117, 205, 0.15) 0%, rgba(13, 5, 23, 0.5) 100%);
    border: 1px solid rgba(124, 77, 255, 0.35);
    padding: 24px;
    border-radius: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 25px rgba(124, 77, 255, 0.15);
    position: relative;
    overflow: hidden;
}

.bts-popup-visual-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    filter: drop-shadow(0 8px 16px rgba(124, 77, 255, 0.35));
    transition: transform 0.5s ease;
}

.bts-popup-glow-card:hover .bts-popup-visual-img {
    transform: scale(1.04) rotate(1deg);
}

.bts-popup-visual-meta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.visual-prize {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.05em;
}

.visual-date {
    font-size: 0.8rem;
    color: #e48bae;
    font-weight: 600;
}

/* Right side content */
.bts-popup-info-col {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bts-popup-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #e48bae;
    background: rgba(228, 139, 174, 0.1);
    border: 1px solid rgba(228, 139, 174, 0.25);
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 16px;
    box-shadow: 0 0 15px rgba(228, 139, 174, 0.1);
}

.bts-popup-title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 4vw, 2.1rem);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 16px;
    color: #fff;
}

.bts-popup-title em {
    font-style: italic;
    background: linear-gradient(90deg, #e48bae, #9575cd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 400;
}

.bts-popup-text {
    font-size: 0.9rem;
    line-height: 1.55;
    color: #d1c4e9;
    opacity: 0.85;
    margin-bottom: 24px;
}

.bts-popup-text strong {
    color: #fff;
}

.bts-popup-action-wrap {
    width: 100%;
}

.bts-popup-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 700;
    background: linear-gradient(90deg, #7c4dff, #e48bae);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 20px rgba(124, 77, 255, 0.35);
    border-radius: 50px;
    transition: all 0.3s ease;
    width: 100%;
}

.bts-popup-cta:hover {
    background: linear-gradient(90deg, #9575cd, #e48bae);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(228, 139, 174, 0.45);
}

/* Responsive side-by-side on PC */
@media (min-width: 769px) {
    .bts-popup-content {
        width: min(840px, 90vw);
        padding: 45px;
    }
    .bts-popup-grid {
        flex-direction: row;
        gap: 35px;
        align-items: center;
        text-align: left;
    }
    .bts-popup-visual-col {
        flex: 1.1;
        max-width: 100%;
    }
    .bts-popup-info-col {
        flex: 1.3;
        align-items: flex-start;
        text-align: left;
    }
    .bts-popup-title {
        margin-bottom: 18px;
    }
    .bts-popup-text {
        margin-bottom: 28px;
    }
    .bts-popup-cta {
        width: auto;
        padding: 14px 36px;
    }
}

/* mobile GPU optimization for bts-popup */
@media (max-width: 1024px) {
    .bts-popup-overlay {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        background: rgba(10, 5, 2, 0.95);
    }
    .bts-popup-content {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        background: linear-gradient(135deg, rgba(26, 13, 45, 0.98) 0%, rgba(13, 5, 23, 0.99) 100%);
    }
}

/* ══ COMPRAR NAVBAR DROPDOWN & MODAL (DESKTOP PROPOSAL) ════════════ */
.comprar-dropdown-container {
    position: relative;
    display: inline-block;
}

.nav-comprar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 56px;
    padding: 0 32px;
    background: transparent;
    color: #000 !important;
    font-family: var(--font-body, inherit);
    font-size: 0.85rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    border: none;
    cursor: pointer;
    transition: color 0.3s ease;
}

.nav-comprar-btn:hover {
    color: var(--terracota, #FF8531) !important;
}

/* Modal styling */
.comprar-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(18, 10, 6, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s;
    padding: 20px;
}

.comprar-modal-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.comprar-modal-content {
    background: linear-gradient(135deg, rgba(28, 16, 10, 0.98) 0%, rgba(14, 8, 5, 0.99) 100%);
    border: 1px solid rgba(255, 184, 0, 0.15);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.8), 0 0 40px rgba(255, 107, 0, 0.05) inset;
    border-radius: 28px;
    max-width: 820px;
    width: 100%;
    position: relative;
    padding: 45px 40px;
    box-sizing: border-box;
    transform: scale(0.95) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.comprar-modal-overlay.active .comprar-modal-content {
    transform: scale(1) translateY(0);
}

.comprar-modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #fff8ea;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.comprar-modal-close:hover {
    background: rgba(255, 107, 0, 0.1);
    border-color: #FF6B00;
    color: #fff;
    transform: rotate(90deg);
}

.comprar-modal-body {
    text-align: center;
}

.comprar-modal-title {
    font-family: var(--font-display, 'Playfair Display', serif);
    font-size: 2rem;
    font-weight: 750;
    color: #fff8ea;
    margin: 0 0 8px 0;
}

.comprar-modal-subtitle {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 0.95rem;
    color: #cc9cac;
    margin: 0 0 35px 0;
}

.comprar-modal-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.comprar-modal-card {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(168, 134, 72, 0.25);
    border-radius: 20px;
    padding: 35px 24px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.comprar-modal-card:hover {
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.04) 0%, rgba(255, 184, 0, 0.02) 100%);
    border-color: rgba(255, 107, 0, 0.4);
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.comprar-modal-card .card-glow {
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.15) 0%, transparent 70%);
    top: -50px;
    right: -50px;
    filter: blur(20px);
    pointer-events: none;
    transition: all 0.4s ease;
}

.comprar-modal-card:hover .card-glow {
    background: radial-gradient(circle, rgba(255, 107, 0, 0.25) 0%, transparent 70%);
}

.comprar-modal-card .card-icon {
    font-size: 2.2rem;
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.comprar-modal-card:hover .card-icon {
    background: rgba(255, 107, 0, 0.12);
    border-color: rgba(255, 107, 0, 0.3);
    transform: scale(1.08);
}

.comprar-modal-card .card-title {
    font-family: var(--font-display, 'Playfair Display', serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff8ea;
    margin: 0 0 12px 0;
}

.comprar-modal-card .card-desc {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 0.8rem;
    color: #cc9cac;
    line-height: 1.45;
    margin: 0 auto 20px auto;
    flex-grow: 1;
}

.comprar-modal-card .card-action-btn {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #FF6B00 0%, #FFB900 100%);
    padding: 10px 24px;
    border-radius: 100px;
    transition: all 0.3s ease;
}

.comprar-modal-card:hover .card-action-btn {
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.4);
    transform: scale(1.03);
}

/* Hide triggers on mobile */
@media (max-width: 1024px) {
    .comprar-dropdown-container {
        display: none !important;
    }
}

/* Responsive modal styles */
@media (max-width: 767px) {
    .comprar-modal-content {
        padding: 30px 20px;
        border-radius: 24px;
    }
    .comprar-modal-title {
        font-size: 1.6rem;
    }
    .comprar-modal-options {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .comprar-modal-card {
        padding: 24px 16px;
    }
    .comprar-modal-card .card-icon {
        margin-bottom: 12px;
    }
}


