@charset "UTF-8";

/* ================================================================
   D VIBRA STORE — styles.css
   Sistema de diseño premium: Fragancias & Tennis

   ÍNDICE DE CONTENIDO:
   01. Design Tokens (Variables CSS)
   02. Reset & Base
   03. Tipografía
   04. Utilidades globales (.container, .btn, .text-gold, .divider-gold,
       .section-header, .section-eyebrow, .section-title, .reveal-*)
   05. Header & Navegación
   06. Menú Móvil
   07. Sección Hero
   08. Sección About
   09. Sección Categories
   10. Sección Products (tarjetas + ilustraciones CSS)
   11. Sección Lifestyle
   12. Sección Testimonials + Trust Bar
   13. Sección CTA Final
   14. Footer
   15. Componentes flotantes (Scroll Top, Social Btn)
   16. Keyframes & Animaciones
   17. Media Queries Responsive
================================================================ */


/* ================================================================
   01. DESIGN TOKENS — Variables CSS
   Centralizar todos los valores de diseño aquí permite mantener
   consistencia y escalar fácilmente la paleta sin buscar por todo el CSS.
================================================================ */
:root {
    /* ── Paleta de color principal ── */
    --gold-bright:  #D4AF37;   /* Oro brillante: botones, acentos, brillos */
    --gold-matte:   #C5A059;   /* Oro mate / latón: títulos, bordes, iconos */
    --gold-old:     #8B6F38;   /* Oro viejo: sombras, profundidad, degradados */
    --gold-pale:    #E8D5A3;   /* Oro pálido: texto dorado sutil */
    --black-main:   #1A1A1A;   /* Negro grafito: fondo principal */
    --black-deep:   #111111;   /* Negro profundo: zonas de mayor contraste */
    --gray-dark:    #2B2B2B;   /* Gris oscuro: fondos secundarios */
    --gray-mid:     #3A3A3A;   /* Gris medio: bordes, separadores */
    --gray-light:   #5A5A5A;   /* Gris claro: texto secundario, placeholders */
    --cream:        #FFFDD0;   /* Crema suave: texto claro, detalles delicados */
    --white:        #FFFFFF;

    /* ── Gradientes dorados reutilizables ── */
    --gradient-gold:        linear-gradient(135deg, var(--gold-old) 0%, var(--gold-bright) 50%, var(--gold-matte) 100%);
    --gradient-gold-h:      linear-gradient(90deg,  var(--gold-old) 0%, var(--gold-bright) 50%, var(--gold-matte) 100%);
    --gradient-dark:        linear-gradient(180deg, var(--black-main) 0%, var(--gray-dark) 100%);
    --gradient-hero:        linear-gradient(135deg, #0D0D0D 0%, #1A1A1A 50%, #222222 100%);
    --gradient-card:        linear-gradient(145deg, var(--gray-dark) 0%, var(--black-main) 100%);

    /* ── Tipografía ── */
    --font-display:  'Playfair Display', 'Georgia', serif;   /* Títulos de alto impacto */
    --font-heading:  'Cormorant Garamond', 'Georgia', serif; /* Encabezados elegantes */
    --font-body:     'Montserrat', 'Helvetica Neue', sans-serif; /* UI, cuerpo, nav */

    /* ── Tamaños de fuente (escala modular) ── */
    --fs-xs:    0.75rem;   /*  12px */
    --fs-sm:    0.875rem;  /*  14px */
    --fs-base:  1rem;      /*  16px */
    --fs-md:    1.125rem;  /*  18px */
    --fs-lg:    1.25rem;   /*  20px */
    --fs-xl:    1.5rem;    /*  24px */
    --fs-2xl:   1.875rem;  /*  30px */
    --fs-3xl:   2.25rem;   /*  36px */
    --fs-4xl:   3rem;      /*  48px */
    --fs-5xl:   3.75rem;   /*  60px */
    --fs-6xl:   4.5rem;    /*  72px */

    /* ── Espaciado ── */
    --space-xs:  0.5rem;
    --space-sm:  1rem;
    --space-md:  1.5rem;
    --space-lg:  2rem;
    --space-xl:  3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    --space-4xl: 8rem;

    /* ── Bordes & Radios ── */
    --radius-sm:  4px;
    --radius-md:  8px;
    --radius-lg:  16px;
    --radius-xl:  24px;
    --radius-full: 9999px;

    /* ── Sombras ── */
    --shadow-sm:   0 2px 8px rgba(0, 0, 0, 0.4);
    --shadow-md:   0 4px 24px rgba(0, 0, 0, 0.5);
    --shadow-lg:   0 8px 48px rgba(0, 0, 0, 0.6);
    --shadow-gold: 0 4px 24px rgba(212, 175, 55, 0.2);
    --shadow-gold-strong: 0 0 32px rgba(212, 175, 55, 0.35);

    /* ── Transiciones ── */
    --transition-fast:   0.2s ease;
    --transition-base:   0.35s ease;
    --transition-slow:   0.6s ease;
    --transition-spring: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);

    /* ── Header height (usada en padding-top del hero) ── */
    --header-h: 80px;
}


/* ================================================================
   02. RESET & BASE
   Box-model unificado, scroll suave nativo, tipografía base.
================================================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;          /* Scroll suave nativo para anclas */
    font-size: 16px;
    -webkit-text-size-adjust: 100%;   /* Evita zoom automático en iOS */
}

body {
    font-family: var(--font-body);
    font-size: var(--fs-base);
    font-weight: 400;
    line-height: 1.6;
    color: var(--cream);
    background-color: var(--black-main);
    overflow-x: hidden;               /* Evita scroll horizontal indeseado */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Bloquea scroll del body cuando el menú móvil está abierto */
body.menu-open {
    overflow: hidden;
}

img, video {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul, ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* Mejora de accesibilidad: foco visible para teclado */
:focus-visible {
    outline: 2px solid var(--gold-bright);
    outline-offset: 3px;
}


/* ================================================================
   03. TIPOGRAFÍA
   Estilos de texto base para párrafos, headings, etc.
================================================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.15;
    color: var(--white);
}

p {
    color: var(--cream);
    opacity: 0.85;
    line-height: 1.75;
}

strong {
    font-weight: 600;
    color: var(--white);
}

em {
    font-style: italic;
}


/* ================================================================
   04. UTILIDADES GLOBALES
   Clases reutilizables en múltiples secciones.
================================================================ */

/* Contenedor máximo centrado — define el ancho del layout */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* ── Texto dorado con gradiente ── */
.text-gold {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Separador decorativo dorado (línea + estrella + línea) ── */
.divider-gold {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin: var(--space-lg) 0;
}

.divider-gold--centered {
    justify-content: center;
}

.divider-gold__line {
    flex: 1;
    max-width: 80px;
    height: 1px;
    background: var(--gradient-gold-h);
    opacity: 0.6;
}

/* ── Encabezado de sección (eyebrow + title + subtitle) ── */
.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: var(--fs-xs);
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold-matte);
    margin-bottom: var(--space-sm);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(var(--fs-2xl), 4vw, var(--fs-4xl));
    font-weight: 700;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.section-subtitle {
    font-size: var(--fs-md);
    color: var(--cream);
    opacity: 0.65;
    max-width: 560px;
    margin: 0 auto;
}

/* ── Sistema de botones ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: var(--fs-sm);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    padding: 0.75rem 1.75rem;
    transition: all var(--transition-base);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

/* Botón primario: fondo dorado con gradiente */
.btn--primary {
    background: var(--gradient-gold);
    color: var(--black-main);
    border: 1px solid transparent;
    box-shadow: var(--shadow-gold);
}
.btn--primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0);
    transition: background var(--transition-fast);
}
.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold-strong);
}
.btn--primary:hover::after {
    background: rgba(255, 255, 255, 0.08);
}
.btn--primary:active {
    transform: translateY(0);
}

/* Botón outline: borde dorado, fondo transparente */
.btn--outline {
    background: transparent;
    color: var(--gold-matte);
    border: 1px solid var(--gold-old);
}
.btn--outline:hover {
    background: rgba(212, 175, 55, 0.08);
    border-color: var(--gold-bright);
    color: var(--gold-bright);
    transform: translateY(-2px);
}

/* Botón WhatsApp: verde oscuro premium */
.btn--whatsapp {
    background: #1a3a2a;
    color: #4ade80;
    border: 1px solid #2d5a3d;
}
.btn--whatsapp:hover {
    background: #1f4832;
    border-color: #4ade80;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(74, 222, 128, 0.15);
}

/* Tamaños de botón */
.btn--sm  { font-size: var(--fs-xs); padding: 0.6rem 1.25rem; }
.btn--lg  { font-size: var(--fs-base); padding: 1rem 2.25rem; }

/* ── Clases de animación de entrada (controladas por JS IntersectionObserver) ──
   Los elementos con estas clases inician invisible.
   JS agrega .is-visible cuando entran al viewport, activando la transición.
   --delay permite escalonar animaciones en grupos (stagger effect). */
.reveal-up,
.reveal-fade {
    opacity: 0;
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-up    { transform: translateY(40px); }
.reveal-fade  { transform: translateY(0); }

.reveal-up.is-visible,
.reveal-fade.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Delays escalonados: el --delay se lee vía CSS del style inline del elemento */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.35s; }
.reveal-delay-4 { transition-delay: 0.5s; }


/* ================================================================
   05. HEADER & NAVEGACIÓN
   Header transparente por defecto, se vuelve sólido al hacer scroll
   (JS agrega clase .header--scrolled). Altura fija --header-h.
================================================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-h);
    display: flex;
    flex-direction: column;
    transition: background var(--transition-base), box-shadow var(--transition-base);
}

/* Estado scrolled: fondo oscuro sólido con borde inferior dorado sutil */
.header--scrolled {
    background: rgba(17, 17, 17, 0.97);
    box-shadow: 0 1px 0 rgba(212, 175, 55, 0.15), 0 4px 24px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    height: 100%;
}

/* Logo: ocupa el lado izquierdo del header */
.header__logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.header__logo-img {
    height: 52px;
    width: auto;
    object-fit: contain;
    transition: transform var(--transition-base), filter var(--transition-base);
}

.header__logo:hover .header__logo-img {
    transform: scale(1.04);
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.4));
}

/* Navegación principal: centrada entre logo y acciones */
.header__nav {
    display: flex;
    align-items: center;
}

.header__nav-list {
    display: flex;
    gap: var(--space-xl);
}

.header__nav-link {
    font-family: var(--font-body);
    font-size: var(--fs-xs);
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 253, 208, 0.75);
    position: relative;
    padding-bottom: 4px;
    transition: color var(--transition-fast);
}

/* Subrayado dorado animado en hover (crece desde el centro) */
.header__nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 100%;
    height: 1px;
    background: var(--gradient-gold-h);
    transition: transform var(--transition-base);
    transform-origin: center;
}

.header__nav-link:hover {
    color: var(--gold-bright);
}
.header__nav-link:hover::after,
.header__nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}
.header__nav-link.active {
    color: var(--gold-matte);
}

/* Acciones del header: CTA + hamburguesa */
.header__actions {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

/* Botón hamburguesa: solo visible en mobile (oculto en desktop via MQ) */
.header__hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    padding: 4px;
}

.header__hamburger-line {
    display: block;
    height: 1.5px;
    background: var(--gold-matte);
    transition: transform var(--transition-base), opacity var(--transition-fast), width var(--transition-base);
    transform-origin: center;
    width: 100%;
}

/* Animación hamburguesa → X cuando está activo */
.header__hamburger.is-open .header__hamburger-line:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}
.header__hamburger.is-open .header__hamburger-line:nth-child(2) {
    opacity: 0;
    width: 0;
}
.header__hamburger.is-open .header__hamburger-line:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}


/* ================================================================
   06. MENÚ MÓVIL
   Overlay de pantalla completa que se desliza desde arriba.
   Se activa con JS añadiendo .mobile-menu--open.
================================================================ */
.mobile-menu {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 15, 15, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    display: flex;
    align-items: center;
    justify-content: center;
    /* Estado inicial: oculto (pointer-events none para no bloquear clicks) */
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity var(--transition-base), transform var(--transition-base);
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    z-index: 999;
}

/* Estado abierto: se muestra con transición suave */
.mobile-menu--open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.mobile-menu__list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-lg);
    text-align: center;
}

.mobile-menu__link {
    font-family: var(--font-display);
    font-size: var(--fs-2xl);
    font-weight: 500;
    color: rgba(255, 253, 208, 0.8);
    letter-spacing: 0.05em;
    transition: color var(--transition-fast);
}

.mobile-menu__link:hover {
    color: var(--gold-bright);
}

.mobile-menu__cta {
    margin-top: var(--space-sm);
}


/* ================================================================
   07. SECCIÓN HERO
   Sección de pantalla completa. Dos columnas: texto + visual.
   Fondo oscuro con decos de luz difusa (glow).
================================================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-h);
    position: relative;
    overflow: hidden;
    background: var(--gradient-hero);
}

/* Decoraciones de fondo: esferas de luz difusa dorada */
.hero__bg-deco {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.hero__bg-deco--1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.07) 0%, transparent 70%);
    top: -100px;
    right: -100px;
}

.hero__bg-deco--2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.05) 0%, transparent 70%);
    bottom: 50px;
    left: 5%;
}

.hero__bg-deco--3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.04) 0%, transparent 70%);
    top: 40%;
    left: 40%;
}

/* Contenido del hero: grid 2 columnas */
.hero__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: var(--space-3xl);
    position: relative;
    z-index: 1;
    padding: var(--space-3xl) 0;
}

/* ── Columna de texto ── */
.hero__eyebrow {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--fs-xs);
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold-matte);
    margin-bottom: var(--space-md);
}

.hero__eyebrow-line {
    display: inline-block;
    width: 32px;
    height: 1px;
    background: var(--gradient-gold-h);
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(var(--fs-4xl), 6vw, var(--fs-6xl));
    font-weight: 800;
    line-height: 1.08;
    color: var(--white);
    margin-bottom: var(--space-md);
}

.hero__title-italic {
    display: block;
    font-style: italic;
}

.hero__subtitle {
    font-family: var(--font-heading);
    font-size: clamp(var(--fs-md), 2vw, var(--fs-xl));
    font-weight: 300;
    line-height: 1.6;
    color: var(--cream);
    opacity: 0.8;
    margin-bottom: 0;
}

.hero__actions {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

/* Estadísticas de la marca en el hero */
.hero__stats {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(212, 175, 55, 0.12);
    margin-top: var(--space-lg);
}

.hero__stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hero__stat-num {
    font-family: var(--font-display);
    font-size: var(--fs-xl);
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__stat-lbl {
    font-size: var(--fs-xs);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--cream);
    opacity: 0.5;
}

.hero__stat-sep {
    width: 1px;
    height: 36px;
    background: rgba(212, 175, 55, 0.2);
    flex-shrink: 0;
}

/* ── Visual del hero: hexágono con logo ── */
.hero__visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero__hex-frame {
    position: relative;
    width: 380px;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__hex-inner {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(212, 175, 55, 0.3);
    box-shadow: var(--shadow-gold-strong), inset 0 0 40px rgba(212, 175, 55, 0.05);
    position: relative;
    z-index: 2;
    background: var(--black-deep);
}

.hero__hex-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Anillos orbitales decorativos */
.hero__ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid;
    pointer-events: none;
    animation: spin linear infinite;
}

.hero__ring--1 {
    width: 330px;
    height: 330px;
    border-color: rgba(212, 175, 55, 0.12);
    animation-duration: 20s;
}

.hero__ring--2 {
    width: 380px;
    height: 380px;
    border-color: rgba(197, 160, 89, 0.07);
    border-style: dashed;
    animation-duration: 35s;
    animation-direction: reverse;
}

/* Partículas flotantes del hero — posicionadas relativas a la sección completa */
.hero__particle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 40% 35%, #fff9c4, var(--gold-bright) 50%, var(--gold-old) 100%);
    box-shadow:
        0 0 6px 2px rgba(212, 175, 55, 0.7),
        0 0 14px 4px rgba(212, 175, 55, 0.35);
    animation: float ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

/* Partículas grandes con halo extra intenso */
.hero__particle--1,  .hero__particle--7,  .hero__particle--12,
.hero__particle--17, .hero__particle--21, .hero__particle--29,
.hero__particle--35, .hero__particle--42, .hero__particle--50,
.hero__particle--58, .hero__particle--65 {
    box-shadow:
        0 0 8px 3px rgba(255, 220, 60, 0.9),
        0 0 20px 6px rgba(212, 175, 55, 0.5),
        0 0 40px 12px rgba(180, 130, 10, 0.22);
}

/* ── Partículas 1–25 (zona superior e izquierda) ── */
.hero__particle--1  { width: 6px;  height: 6px;  top:  8%;  left:  4%;   opacity: 0.85; animation-duration: 4.0s; animation-delay: 0.0s; }
.hero__particle--2  { width: 4px;  height: 4px;  top: 14%;  left: 18%;   opacity: 0.65; animation-duration: 5.0s; animation-delay: 1.0s; }
.hero__particle--3  { width: 5px;  height: 5px;  top: 22%;  left:  8%;   opacity: 0.75; animation-duration: 3.5s; animation-delay: 0.5s; }
.hero__particle--4  { width: 3px;  height: 3px;  top: 30%;  left:  2%;   opacity: 0.55; animation-duration: 6.0s; animation-delay: 2.0s; }
.hero__particle--5  { width: 5px;  height: 5px;  top: 40%;  left:  6%;   opacity: 0.70; animation-duration: 4.5s; animation-delay: 0.8s; }
.hero__particle--6  { width: 3px;  height: 3px;  top: 50%;  left: 14%;   opacity: 0.60; animation-duration: 5.5s; animation-delay: 1.5s; }
.hero__particle--7  { width: 7px;  height: 7px;  top: 60%;  left:  4%;   opacity: 0.90; animation-duration: 3.8s; animation-delay: 2.5s; }
.hero__particle--8  { width: 4px;  height: 4px;  top: 70%;  left: 22%;   opacity: 0.65; animation-duration: 6.5s; animation-delay: 0.3s; }
.hero__particle--9  { width: 3px;  height: 3px;  top: 78%;  left:  9%;   opacity: 0.55; animation-duration: 4.2s; animation-delay: 3.0s; }
.hero__particle--10 { width: 5px;  height: 5px;  top: 88%;  left: 18%;   opacity: 0.70; animation-duration: 5.2s; animation-delay: 1.2s; }
.hero__particle--11 { width: 4px;  height: 4px;  top: 95%;  left:  5%;   opacity: 0.60; animation-duration: 4.8s; animation-delay: 2.2s; }
.hero__particle--12 { width: 6px;  height: 6px;  top:  5%;  left: 32%;   opacity: 0.80; animation-duration: 3.2s; animation-delay: 0.7s; }
.hero__particle--13 { width: 3px;  height: 3px;  top: 12%;  left: 45%;   opacity: 0.55; animation-duration: 5.8s; animation-delay: 1.9s; }
.hero__particle--14 { width: 5px;  height: 5px;  top: 20%;  left: 38%;   opacity: 0.70; animation-duration: 4.1s; animation-delay: 0.4s; }
.hero__particle--15 { width: 4px;  height: 4px;  top: 28%;  left: 50%;   opacity: 0.60; animation-duration: 6.2s; animation-delay: 2.8s; }
.hero__particle--16 { width: 3px;  height: 3px;  top: 36%;  left: 42%;   opacity: 0.50; animation-duration: 3.9s; animation-delay: 1.7s; }
.hero__particle--17 { width: 7px;  height: 7px;  top: 45%;  left: 33%;   opacity: 0.85; animation-duration: 4.6s; animation-delay: 0.2s; }
.hero__particle--18 { width: 3px;  height: 3px;  top: 55%;  left: 48%;   opacity: 0.50; animation-duration: 5.4s; animation-delay: 3.2s; }
.hero__particle--19 { width: 4px;  height: 4px;  top: 65%;  left: 36%;   opacity: 0.65; animation-duration: 4.3s; animation-delay: 1.1s; }
.hero__particle--20 { width: 5px;  height: 5px;  top: 75%;  left: 44%;   opacity: 0.70; animation-duration: 5.7s; animation-delay: 2.6s; }
.hero__particle--21 { width: 6px;  height: 6px;  top: 83%;  left: 30%;   opacity: 0.80; animation-duration: 3.6s; animation-delay: 0.9s; }
.hero__particle--22 { width: 3px;  height: 3px;  top: 92%;  left: 40%;   opacity: 0.55; animation-duration: 6.8s; animation-delay: 1.4s; }
.hero__particle--23 { width: 4px;  height: 4px;  top: 97%;  left: 55%;   opacity: 0.60; animation-duration: 4.9s; animation-delay: 0.6s; }
.hero__particle--24 { width: 5px;  height: 5px;  top:  3%;  left: 60%;   opacity: 0.70; animation-duration: 3.3s; animation-delay: 2.1s; }
.hero__particle--25 { width: 3px;  height: 3px;  top: 10%;  left: 72%;   opacity: 0.50; animation-duration: 5.1s; animation-delay: 3.5s; }

/* ── Partículas 26–50 (zona derecha) ── */
.hero__particle--26 { width: 4px;  height: 4px;  top: 18%;  left: 80%;   opacity: 0.65; animation-duration: 4.4s; animation-delay: 0.9s; }
.hero__particle--27 { width: 6px;  height: 6px;  top: 26%;  left: 88%;   opacity: 0.80; animation-duration: 3.7s; animation-delay: 1.6s; }
.hero__particle--28 { width: 3px;  height: 3px;  top: 34%;  left: 78%;   opacity: 0.55; animation-duration: 5.9s; animation-delay: 0.1s; }
.hero__particle--29 { width: 7px;  height: 7px;  top: 42%;  left: 92%;   opacity: 0.90; animation-duration: 4.7s; animation-delay: 2.3s; }
.hero__particle--30 { width: 4px;  height: 4px;  top: 50%;  left: 84%;   opacity: 0.65; animation-duration: 6.1s; animation-delay: 1.0s; }
.hero__particle--31 { width: 3px;  height: 3px;  top: 58%;  left: 76%;   opacity: 0.55; animation-duration: 4.0s; animation-delay: 3.3s; }
.hero__particle--32 { width: 5px;  height: 5px;  top: 66%;  left: 90%;   opacity: 0.75; animation-duration: 5.3s; animation-delay: 0.5s; }
.hero__particle--33 { width: 4px;  height: 4px;  top: 74%;  left: 82%;   opacity: 0.65; animation-duration: 3.4s; animation-delay: 2.0s; }
.hero__particle--34 { width: 3px;  height: 3px;  top: 82%;  left: 95%;   opacity: 0.50; animation-duration: 6.6s; animation-delay: 1.3s; }
.hero__particle--35 { width: 6px;  height: 6px;  top: 90%;  left: 78%;   opacity: 0.80; animation-duration: 4.2s; animation-delay: 0.4s; }
.hero__particle--36 { width: 3px;  height: 3px;  top:  7%;  left: 95%;   opacity: 0.50; animation-duration: 5.6s; animation-delay: 2.9s; }
.hero__particle--37 { width: 4px;  height: 4px;  top: 16%;  left: 62%;   opacity: 0.60; animation-duration: 3.1s; animation-delay: 1.8s; }
.hero__particle--38 { width: 5px;  height: 5px;  top: 24%;  left: 70%;   opacity: 0.70; animation-duration: 4.8s; animation-delay: 0.2s; }
.hero__particle--39 { width: 3px;  height: 3px;  top: 32%;  left: 65%;   opacity: 0.55; animation-duration: 6.3s; animation-delay: 3.1s; }
.hero__particle--40 { width: 4px;  height: 4px;  top: 48%;  left: 58%;   opacity: 0.60; animation-duration: 4.5s; animation-delay: 1.6s; }
.hero__particle--41 { width: 5px;  height: 5px;  top: 56%;  left: 68%;   opacity: 0.70; animation-duration: 3.6s; animation-delay: 0.7s; }
.hero__particle--42 { width: 7px;  height: 7px;  top: 63%;  left: 56%;   opacity: 0.85; animation-duration: 5.0s; animation-delay: 2.4s; }
.hero__particle--43 { width: 3px;  height: 3px;  top: 71%;  left: 64%;   opacity: 0.50; animation-duration: 4.1s; animation-delay: 1.1s; }
.hero__particle--44 { width: 4px;  height: 4px;  top: 80%;  left: 72%;   opacity: 0.65; animation-duration: 6.0s; animation-delay: 0.6s; }
.hero__particle--45 { width: 5px;  height: 5px;  top: 86%;  left: 60%;   opacity: 0.70; animation-duration: 3.8s; animation-delay: 3.4s; }
.hero__particle--46 { width: 3px;  height: 3px;  top: 93%;  left: 68%;   opacity: 0.55; animation-duration: 5.5s; animation-delay: 0.8s; }
.hero__particle--47 { width: 4px;  height: 4px;  top:  2%;  left: 50%;   opacity: 0.60; animation-duration: 4.3s; animation-delay: 2.7s; }
.hero__particle--48 { width: 6px;  height: 6px;  top: 96%;  left: 85%;   opacity: 0.75; animation-duration: 3.2s; animation-delay: 0.3s; }
.hero__particle--49 { width: 3px;  height: 3px;  top: 38%;  left: 97%;   opacity: 0.50; animation-duration: 6.4s; animation-delay: 1.5s; }
.hero__particle--50 { width: 7px;  height: 7px;  top: 52%;  left: 25%;   opacity: 0.88; animation-duration: 4.6s; animation-delay: 2.0s; }

/* ── Partículas 51–70 (relleno disperso) ── */
.hero__particle--51 { width: 3px;  height: 3px;  top:  6%;  left: 27%;   opacity: 0.55; animation-duration: 5.2s; animation-delay: 1.3s; }
.hero__particle--52 { width: 4px;  height: 4px;  top: 43%;  left: 16%;   opacity: 0.60; animation-duration: 3.5s; animation-delay: 0.4s; }
.hero__particle--53 { width: 5px;  height: 5px;  top: 68%;  left: 52%;   opacity: 0.70; animation-duration: 4.9s; animation-delay: 2.8s; }
.hero__particle--54 { width: 3px;  height: 3px;  top: 11%;  left: 87%;   opacity: 0.50; animation-duration: 6.7s; animation-delay: 0.1s; }
.hero__particle--55 { width: 4px;  height: 4px;  top: 77%;  left: 11%;   opacity: 0.60; animation-duration: 4.0s; animation-delay: 1.9s; }
.hero__particle--56 { width: 5px;  height: 5px;  top: 33%;  left: 75%;   opacity: 0.70; animation-duration: 5.8s; animation-delay: 3.0s; }
.hero__particle--57 { width: 3px;  height: 3px;  top: 57%;  left: 38%;   opacity: 0.55; animation-duration: 3.3s; animation-delay: 0.6s; }
.hero__particle--58 { width: 6px;  height: 6px;  top: 84%;  left: 50%;   opacity: 0.80; animation-duration: 4.7s; animation-delay: 2.2s; }
.hero__particle--59 { width: 3px;  height: 3px;  top: 16%;  left: 55%;   opacity: 0.50; animation-duration: 6.2s; animation-delay: 1.0s; }
.hero__particle--60 { width: 4px;  height: 4px;  top: 89%;  left: 28%;   opacity: 0.60; animation-duration: 3.9s; animation-delay: 3.6s; }
.hero__particle--61 { width: 5px;  height: 5px;  top: 47%;  left: 74%;   opacity: 0.70; animation-duration: 5.4s; animation-delay: 0.5s; }
.hero__particle--62 { width: 3px;  height: 3px;  top: 73%;  left: 88%;   opacity: 0.50; animation-duration: 4.1s; animation-delay: 2.5s; }
.hero__particle--63 { width: 4px;  height: 4px;  top: 21%;  left: 22%;   opacity: 0.65; animation-duration: 6.5s; animation-delay: 1.7s; }
.hero__particle--64 { width: 5px;  height: 5px;  top: 61%;  left: 12%;   opacity: 0.70; animation-duration: 3.7s; animation-delay: 0.2s; }
.hero__particle--65 { width: 7px;  height: 7px;  top: 37%;  left: 56%;   opacity: 0.88; animation-duration: 4.4s; animation-delay: 2.9s; }
.hero__particle--66 { width: 3px;  height: 3px;  top: 94%;  left: 46%;   opacity: 0.50; animation-duration: 5.0s; animation-delay: 1.2s; }
.hero__particle--67 { width: 4px;  height: 4px;  top:  4%;  left: 42%;   opacity: 0.60; animation-duration: 4.6s; animation-delay: 3.7s; }
.hero__particle--68 { width: 5px;  height: 5px;  top: 53%;  left: 93%;   opacity: 0.70; animation-duration: 3.8s; animation-delay: 0.8s; }
.hero__particle--69 { width: 3px;  height: 3px;  top: 79%;  left: 34%;   opacity: 0.55; animation-duration: 5.7s; animation-delay: 2.1s; }
.hero__particle--70 { width: 4px;  height: 4px;  top: 46%;  left:  2%;   opacity: 0.60; animation-duration: 4.2s; animation-delay: 0.4s; }

/* Indicador de scroll al fondo del hero */
.hero__scroll-hint {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: fadeInUp 1s ease 1.5s both;
}

.hero__scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, transparent, var(--gold-old), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

.hero__scroll-text {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-old);
}


/* ================================================================
   08. SECCIÓN ABOUT
   Grid de dos columnas: visual enmarcado / texto de marca.
================================================================ */
.about {
    padding: var(--space-4xl) 0;
    background: var(--gray-dark);
    position: relative;
    overflow: hidden;
    overflow: hidden;
}

/* Línea decorativa superior */
.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-old), transparent);
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

/* Marco visual del logo */
.about__frame {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about__frame-inner {
    position: relative;
    width: 320px;
    height: 320px;
    border-radius: var(--radius-xl);
    overflow: visible;
    background: transparent;
}

/* Neblina dorada detrás del logo */
.about__frame-inner::before,
.about__frame-inner::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
}

.about__frame-inner::before {
    width: 420px;
    height: 420px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(ellipse at center,
        rgba(255, 215, 50, 0.9)  0%,
        rgba(212, 175, 55, 0.65) 25%,
        rgba(180, 130, 10, 0.35) 55%,
        transparent 75%
    );
    filter: blur(35px);
    animation: mistPulse 3.5s ease-in-out infinite;
}

.about__frame-inner::after {
    width: 500px;
    height: 280px;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(ellipse at center,
        rgba(255, 210, 40, 0.7)  0%,
        rgba(212, 175, 55, 0.45) 40%,
        transparent 70%
    );
    filter: blur(50px);
    animation: mistDrift 5s ease-in-out infinite;
}

.about__frame-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Borde dorado animado alrededor del marco */
.about__frame-border {
    display: none;
}

/* Badge flotante de calidad */
.about__badge {
    position: absolute;
    bottom: -16px;
    right: -16px;
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    background: var(--gradient-gold);
    padding: 12px 16px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.about__badge-icon {
    font-size: var(--fs-lg);
    color: var(--black-main);
}

.about__badge-text {
    display: flex;
    flex-direction: column;
}

.about__badge-text strong {
    font-size: var(--fs-sm);
    font-weight: 700;
    color: var(--black-main);
    line-height: 1.2;
}

.about__badge-text span {
    font-size: 10px;
    color: var(--black-deep);
    opacity: 0.7;
}

/* Columna de texto */
.about__content .section-eyebrow {
    margin-bottom: var(--space-xs);
}

.about__body {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin: var(--space-lg) 0 var(--space-xl);
}

/* Los 3 pilares de valor */
.about__pillars {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.about__pillar {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-md);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: var(--radius-md);
    background: rgba(212, 175, 55, 0.02);
    transition: border-color var(--transition-base), background var(--transition-base);
}

.about__pillar:hover {
    border-color: rgba(212, 175, 55, 0.25);
    background: rgba(212, 175, 55, 0.05);
}

.about__pillar-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-sm);
    background: rgba(212, 175, 55, 0.04);
}

.about__pillar strong {
    display: block;
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}

.about__pillar p {
    font-size: var(--fs-sm);
    opacity: 0.6;
    margin: 0;
}


/* ================================================================
   09. SECCIÓN CATEGORIES
   Grid de 6 tarjetas premium con icono SVG, título y enlace.
================================================================ */
.categories {
    padding: var(--space-4xl) 0;
    background: var(--black-main);
    position: relative;
    overflow: hidden;
}

.categories__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

/* Tarjeta de categoría base */
.category-card {
    position: relative;
    padding: var(--space-xl) var(--space-lg);
    background: var(--gradient-card);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    overflow: hidden;
    transition: transform var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
    /* Stagger animation via CSS var --delay del style inline */
    transition-delay: calc(var(--delay, 0) * 0.08s);
}

.category-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: var(--shadow-gold);
}

/* Icono de categoría */
.category-card__icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: var(--radius-md);
    background: rgba(212, 175, 55, 0.04);
    transition: background var(--transition-base), border-color var(--transition-base);
    margin-bottom: var(--space-xs);
}

.category-card:hover .category-card__icon {
    background: rgba(212, 175, 55, 0.08);
    border-color: rgba(212, 175, 55, 0.3);
}

.category-card__title {
    font-family: var(--font-heading);
    font-size: var(--fs-xl);
    font-weight: 600;
    color: var(--white);
    line-height: 1.2;
}

.category-card__title span {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.category-card__desc {
    font-size: var(--fs-sm);
    opacity: 0.6;
    flex: 1;
}

/* Enlace inferior de la tarjeta */
.category-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: var(--fs-xs);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-old);
    margin-top: auto;
    transition: color var(--transition-fast), gap var(--transition-fast);
}

.category-card:hover .category-card__link {
    color: var(--gold-bright);
    gap: 10px;
}

/* Decoración de fondo de la tarjeta (círculo radial sutil) */
.category-card__bg-deco {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
    pointer-events: none;
    transition: transform var(--transition-slow);
}

.category-card:hover .category-card__bg-deco {
    transform: scale(1.5);
}

/* Badge "Nuevo" en tarjeta featured */
.category-card__badge-new {
    position: absolute;
    top: var(--space-sm);
    right: var(--space-sm);
    background: var(--gradient-gold);
    color: var(--black-main);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: var(--radius-full);
}

/* Variante featured: borde dorado más visible */
.category-card--featured {
    border-color: rgba(212, 175, 55, 0.25);
    background: linear-gradient(145deg, #2a2510 0%, var(--black-main) 60%);
}

/* Variante dark: fondo más oscuro y contrastante */
.category-card--dark {
    background: linear-gradient(145deg, var(--black-deep) 0%, #1c1c1c 100%);
}


/* ================================================================
   10. SECCIÓN PRODUCTS
   Tarjetas de producto con imagen CSS ilustrada + info.
   Las imágenes CSS son ilustraciones de botellas y sneakers
   que se reemplazan fácilmente con <img> reales sin cambiar el layout.
================================================================ */
.products {
    padding: var(--space-4xl) 0;
    background: var(--gray-dark);
    position: relative;
}

.products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-old), transparent);
}

/* Filtros de producto */
.products__filters {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-3xl);
}

.products__filter {
    font-family: var(--font-body);
    font-size: var(--fs-xs);
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 253, 208, 0.5);
    padding: 8px 20px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: var(--radius-full);
    background: transparent;
    transition: all var(--transition-base);
}

.products__filter:hover {
    color: var(--gold-matte);
    border-color: rgba(212, 175, 55, 0.4);
}

.products__filter.active {
    background: var(--gradient-gold);
    color: var(--black-main);
    border-color: transparent;
}

/* Grid de productos */
.products__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-3xl);
}

/* Clase para ocultar tarjetas filtradas (via JS) */
.product-card.hidden {
    display: none;
}

/* Tarjeta de producto base */
.product-card {
    background: var(--black-main);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
    position: relative;
    transition-delay: calc(var(--delay, 0) * 0.08s);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-gold);
    border-color: rgba(212, 175, 55, 0.25);
}

/* Badge de producto (Más Vendido, Edición Gold, etc.) */
.product-card__badge {
    position: absolute;
    top: var(--space-sm);
    left: var(--space-sm);
    z-index: 3;
    background: rgba(26, 26, 26, 0.9);
    color: var(--gold-matte);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 10px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-full);
}

.product-card__badge--gold {
    background: var(--gradient-gold);
    color: var(--black-main);
    border-color: transparent;
}

/* Tarjeta destacada: borde dorado más pronunciado */
.product-card--highlight {
    border-color: rgba(212, 175, 55, 0.2);
}

/* Área de imagen del producto */
.product-card__img-wrap {
    position: relative;
    overflow: hidden;
}

/* Imagen CSS: área de visualización del producto con gradiente de fondo */
.product-card__img {
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition-slow);
}

.product-card:hover .product-card__img {
    transform: scale(1.03);
}

/* Fondos de imagen por producto — cada uno evoca la esencia del producto */
.product-card__img--noir   { background: linear-gradient(145deg, #0a0a0f 0%, #1a1a2e 50%, #0d0d1a 100%); }
.product-card__img--rose   { background: linear-gradient(145deg, #1a0a0a 0%, #2e1518 50%, #1a0d0d 100%); }
.product-card__img--oud    { background: linear-gradient(145deg, #120c00 0%, #2a1f00 50%, #1a1200 100%); }
.product-card__img--jordan { background: linear-gradient(145deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%); }
.product-card__img--nb     { background: linear-gradient(145deg, #0a0f0a 0%, #141e14 50%, #0a0f0a 100%); }
.product-card__img--af1    { background: linear-gradient(145deg, #120c00 0%, #1e1800 50%, #120c00 100%); }

/* Tag de categoría en la imagen (Hombre, Mujer, Urbano, etc.) */
.product-card__tag {
    position: absolute;
    top: var(--space-sm);
    right: var(--space-sm);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: var(--radius-full);
    background: rgba(26, 26, 26, 0.85);
    color: var(--cream);
    border: 1px solid rgba(212, 175, 55, 0.2);
    z-index: 2;
}
.product-card__tag--alt  { color: var(--gold-pale);  border-color: rgba(212, 175, 55, 0.3); }
.product-card__tag--gold { background: var(--gradient-gold); color: var(--black-main); border: none; }
.product-card__tag--prem { color: var(--gold-matte); border-color: rgba(197, 160, 89, 0.4); }

/* Overlay con CTA que aparece al hacer hover */
.product-card__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-base);
    z-index: 4;
}

.product-card:hover .product-card__overlay {
    opacity: 1;
}

/* Información del producto */
.product-card__info {
    padding: var(--space-md);
}

.product-card__name {
    font-family: var(--font-heading);
    font-size: var(--fs-lg);
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}

.product-card__brand {
    font-size: var(--fs-xs);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold-old);
    margin-bottom: var(--space-sm);
}

.product-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-card__price {
    font-family: var(--font-display);
    font-size: var(--fs-lg);
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-card__stars {
    color: var(--gold-bright);
    font-size: var(--fs-sm);
    letter-spacing: 1px;
}

/* CTA para ver catálogo completo */
.products__view-all {
    text-align: center;
}

/* ── Ilustraciones CSS de botellas de fragancia ──
   Cada botella se construye con 4 elementos apilados verticalmente:
   .cap (tapa) → .neck (cuello) → .body (cuerpo con nombre) → .base (base)
   Estos son placeholders elegantes, se reemplazan con imágenes reales. */
.product-bottle {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    position: relative;
}

.product-bottle__cap {
    width: 20px;
    height: 14px;
    border-radius: 3px 3px 0 0;
}

.product-bottle__neck {
    width: 16px;
    height: 20px;
}

.product-bottle__body {
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.product-bottle__name {
    font-family: var(--font-display);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.12em;
    line-height: 1.4;
}

.product-bottle__base {
    height: 6px;
    border-radius: 0 0 4px 4px;
}

/* Botella Noir Élite: azul noche + dorado */
.product-bottle--noir .product-bottle__cap  { background: var(--gradient-gold); }
.product-bottle--noir .product-bottle__neck { background: linear-gradient(to bottom, #D4AF37, #1a1a2e); width: 12px; }
.product-bottle--noir .product-bottle__body { width: 60px; height: 100px; background: linear-gradient(160deg, #0d0d2e, #1a1a4e, #0a0a1e); border: 1px solid rgba(212,175,55,0.4); }
.product-bottle--noir .product-bottle__name { color: var(--gold-pale); }
.product-bottle--noir .product-bottle__base { width: 68px; background: var(--gradient-gold); }

/* Botella Rose Divine: tonos rosados + dorado */
.product-bottle--rose .product-bottle__cap  { background: var(--gradient-gold); }
.product-bottle--rose .product-bottle__neck { background: linear-gradient(to bottom, #D4AF37, #3e1520); width: 14px; }
.product-bottle--rose .product-bottle__body { width: 70px; height: 90px; background: linear-gradient(160deg, #2e0d15, #4a1a25, #1e0a10); border: 1px solid rgba(212,175,55,0.35); border-radius: 8px; }
.product-bottle--rose .product-bottle__name { color: #e8a0b0; }
.product-bottle--rose .product-bottle__base { width: 78px; background: var(--gradient-gold); }

/* Botella Oud Imperial: ámbar / dorado profundo */
.product-bottle--oud .product-bottle__cap  { background: var(--gradient-gold); width: 26px; }
.product-bottle--oud .product-bottle__neck { background: linear-gradient(to bottom, #D4AF37, #2a1500); width: 18px; height: 16px; }
.product-bottle--oud .product-bottle__body { width: 80px; height: 110px; background: linear-gradient(160deg, #1a0d00, #2e1800, #120a00); border: 1px solid rgba(212,175,55,0.5); }
.product-bottle--oud .product-bottle__name { color: var(--gold-bright); }
.product-bottle--oud .product-bottle__base { width: 88px; height: 8px; background: var(--gradient-gold); }

/* ── Ilustraciones CSS de sneakers ──
   Cada sneaker tiene 3 partes: body (upper), tongue y sole.
   Se construye con posicionamiento relativo y clip-path simple. */
.sneaker-art {
    position: relative;
    width: 160px;
    height: 90px;
}

.sneaker-art__body {
    position: absolute;
    border-radius: 40% 60% 30% 20% / 50% 50% 40% 30%;
}

.sneaker-art__tongue {
    position: absolute;
    border-radius: 0 0 4px 4px;
}

.sneaker-art__sole {
    position: absolute;
    border-radius: 4px 4px 8px 8px;
}

.sneaker-art__label {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.1em;
    white-space: nowrap;
}

/* Air Jordan 1: negro + rojo / dorado */
.sneaker-art--jordan .sneaker-art__body   { width: 145px; height: 65px; top: 5px; left: 8px; background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #111 100%); border: 1px solid rgba(212,175,55,0.3); }
.sneaker-art--jordan .sneaker-art__tongue { width: 28px; height: 35px; top: 0; left: 40px; background: linear-gradient(to bottom, #222, #1a1a1a); border: 1px solid rgba(212,175,55,0.2); }
.sneaker-art--jordan .sneaker-art__sole   { width: 155px; height: 18px; bottom: 0; left: 3px; background: var(--gradient-gold); }
.sneaker-art--jordan .sneaker-art__label  { color: var(--gold-bright); }

/* New Balance 550: blanco/gris + dorado */
.sneaker-art--nb .sneaker-art__body   { width: 145px; height: 60px; top: 8px; left: 8px; background: linear-gradient(135deg, #1e1e1e 0%, #2a2a2a 50%, #181818 100%); border: 1px solid rgba(197,160,89,0.25); }
.sneaker-art--nb .sneaker-art__tongue { width: 30px; height: 30px; top: 2px; left: 38px; background: linear-gradient(to bottom, #252525, #1a1a1a); border: 1px solid rgba(197,160,89,0.2); }
.sneaker-art--nb .sneaker-art__sole   { width: 152px; height: 16px; bottom: 0; left: 4px; background: linear-gradient(90deg, var(--gold-old), var(--gold-matte)); }
.sneaker-art--nb .sneaker-art__label  { color: var(--gold-matte); }

/* Air Force 1 Gold Edition: dorado completo */
.sneaker-art--af1 .sneaker-art__body   { width: 148px; height: 58px; top: 10px; left: 6px; background: linear-gradient(135deg, #2a1f00 0%, #3d2d00 50%, #1e1600 100%); border: 1px solid rgba(212,175,55,0.5); }
.sneaker-art--af1 .sneaker-art__tongue { width: 32px; height: 28px; top: 4px; left: 38px; background: linear-gradient(to bottom, #3a2900, #2a1f00); border: 1px solid rgba(212,175,55,0.4); }
.sneaker-art--af1 .sneaker-art__sole   { width: 156px; height: 20px; bottom: 0; left: 2px; background: var(--gradient-gold); box-shadow: 0 0 12px rgba(212,175,55,0.3); }
.sneaker-art--af1 .sneaker-art__label  { color: var(--gold-bright); text-shadow: 0 0 8px rgba(212,175,55,0.5); }


/* ================================================================
   11. SECCIÓN LIFESTYLE
   Sección editorial oscura con cita de marca y grid de hexágonos.
================================================================ */
.lifestyle {
    padding: var(--space-4xl) 0;
    background: var(--black-deep);
    position: relative;
    overflow: hidden;
    overflow: hidden;
}

/* Fondo con patrón de puntos y glow dorado */
.lifestyle__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.lifestyle__glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
    top: 50%;
    left: 20%;
    transform: translate(-50%, -50%);
}

/* Patrón de cuadrícula sutil */
.lifestyle__grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(212, 175, 55, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

/* Layout de dos columnas del lifestyle */
.lifestyle__layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--space-4xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Cita principal de la marca */
.lifestyle__quote {
    position: relative;
    margin-bottom: var(--space-3xl);
}

.lifestyle__quote-mark {
    font-family: var(--font-display);
    font-size: 100px;
    line-height: 0.8;
    color: var(--gold-old);
    opacity: 0.3;
    position: absolute;
    top: -10px;
    left: -20px;
}

.lifestyle__quote-text {
    font-family: var(--font-display);
    font-size: clamp(var(--fs-xl), 2.5vw, var(--fs-3xl));
    font-weight: 400;
    font-style: italic;
    line-height: 1.4;
    color: var(--white);
    padding-left: var(--space-lg);
}

.lifestyle__quote-author {
    display: block;
    font-size: var(--fs-sm);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-old);
    margin-top: var(--space-md);
    padding-left: var(--space-lg);
    font-style: normal;
}

/* Pilares del estilo de vida */
.lifestyle__pillars {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    padding-top: var(--space-xl);
}

.lifestyle__pillar {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.lifestyle__pillar-num {
    font-family: var(--font-display);
    font-size: var(--fs-2xl);
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.4;
    flex-shrink: 0;
    line-height: 1;
}

.lifestyle__pillar-title {
    font-family: var(--font-heading);
    font-size: var(--fs-md);
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}

.lifestyle__pillar p {
    font-size: var(--fs-sm);
    opacity: 0.55;
    margin: 0;
}

/* Grid de hexágonos decorativos (lado derecho) */
.hex-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

.hex {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    font-family: var(--font-heading);
    font-size: var(--fs-sm);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: transform var(--transition-base);
    cursor: default;
}

.hex:hover { transform: scale(1.05); }

/* Colores alternados para el grid de hexágonos */
.hex--1 { background: rgba(212, 175, 55, 0.08); color: var(--gold-matte); border: 1px solid rgba(212,175,55,0.2); clip-path: none; border-radius: var(--radius-md); }
.hex--2 { background: rgba(212, 175, 55, 0.05); color: var(--gold-old); border: 1px solid rgba(212,175,55,0.15); clip-path: none; border-radius: var(--radius-md); }
.hex--3 { background: rgba(197, 160, 89, 0.06); color: var(--gold-bright); border: 1px solid rgba(212,175,55,0.2); clip-path: none; border-radius: var(--radius-md); }
.hex--4 { background: var(--gradient-gold); color: var(--black-main); clip-path: none; border-radius: var(--radius-md); font-weight: 700; }
.hex--5 { background: rgba(212, 175, 55, 0.04); color: var(--gold-old); border: 1px solid rgba(212,175,55,0.1); clip-path: none; border-radius: var(--radius-md); }
.hex--6 { background: rgba(139, 111, 56, 0.08); color: var(--gold-matte); border: 1px solid rgba(139,111,56,0.2); clip-path: none; border-radius: var(--radius-md); }


/* ================================================================
   12. SECCIÓN TESTIMONIALS + TRUST BAR
================================================================ */
.testimonials {
    padding: var(--space-4xl) 0;
    background: var(--black-main);
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-3xl);
}

/* Tarjeta de testimonio */
.testimonial-card {
    background: var(--gradient-card);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    transition: border-color var(--transition-base), transform var(--transition-base);
    transition-delay: calc(var(--delay, 0) * 0.1s);
}

.testimonial-card:hover {
    border-color: rgba(212, 175, 55, 0.2);
    transform: translateY(-4px);
}

.testimonial-card--featured {
    border-color: rgba(212, 175, 55, 0.25);
    background: linear-gradient(145deg, #1e1900 0%, var(--black-main) 60%);
}

.testimonial-card__stars {
    color: var(--gold-bright);
    font-size: var(--fs-md);
    letter-spacing: 2px;
}

.testimonial-card__text {
    font-family: var(--font-heading);
    font-size: var(--fs-md);
    font-weight: 300;
    font-style: italic;
    line-height: 1.65;
    color: var(--cream);
    opacity: 0.85;
    flex: 1;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding-top: var(--space-md);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.testimonial-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gray-dark);
    border: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: var(--fs-xs);
    font-weight: 700;
    color: var(--gold-matte);
    flex-shrink: 0;
}

.testimonial-card__avatar--gold {
    background: var(--gradient-gold);
    color: var(--black-main);
    border-color: transparent;
}

.testimonial-card__author strong {
    display: block;
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--white);
}

.testimonial-card__author span {
    display: block;
    font-size: var(--fs-xs);
    color: var(--gray-light);
}

/* Barra de cifras de confianza */
.trust-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3xl);
    padding: var(--space-xl) var(--space-2xl);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: var(--radius-lg);
    background: rgba(212, 175, 55, 0.02);
}

.trust-bar__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.trust-bar__num {
    font-family: var(--font-display);
    font-size: var(--fs-3xl);
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.trust-bar__lbl {
    font-size: var(--fs-xs);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--cream);
    opacity: 0.5;
}

.trust-bar__sep {
    width: 1px;
    height: 56px;
    background: linear-gradient(to bottom, transparent, rgba(212,175,55,0.25), transparent);
}


/* ================================================================
   13. SECCIÓN CTA FINAL
   Cierre con logo, headline, dos CTAs y redes sociales.
================================================================ */
.cta-final {
    padding: var(--space-4xl) 0;
    background: var(--gray-dark);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-final::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-old), transparent);
}

/* Fondo decorativo del CTA */
.cta-final__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-final__glow {
    position: absolute;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 65%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Hexágono decorativo gigante de fondo */
.cta-final__hex-deco {
    position: absolute;
    width: 500px;
    height: 500px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: rgba(212, 175, 55, 0.015);
}

.cta-final__content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

/* Logo del CTA */
.cta-final__logo-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: var(--space-xl);
}

.cta-final__logo {
    height: 100px;
    width: auto;
    filter: drop-shadow(var(--shadow-gold));
}

.cta-final__title {
    font-family: var(--font-display);
    font-size: clamp(var(--fs-3xl), 5vw, var(--fs-5xl));
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: var(--space-md);
}

.cta-final__subtitle {
    font-family: var(--font-heading);
    font-size: var(--fs-lg);
    font-weight: 300;
    line-height: 1.7;
    opacity: 0.7;
    margin-bottom: var(--space-xl);
}

.cta-final__actions {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
    margin-bottom: var(--space-xl);
}

/* Redes sociales en el CTA */
.cta-final__social {
    margin-top: var(--space-xl);
}

.cta-final__social-label {
    font-size: var(--fs-xs);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-old);
    margin-bottom: var(--space-sm);
    opacity: 1;
}

.cta-final__social-row {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
}

/* Botón de red social */
.social-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.2);
    background: rgba(212, 175, 55, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-old);
    transition: all var(--transition-base);
}

.social-btn:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold-bright);
    color: var(--gold-bright);
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.15);
}


/* ================================================================
   14. FOOTER
   Grid 4 columnas. Barra inferior con copyright.
================================================================ */
.footer {
    background: var(--black-deep);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer__main {
    padding: var(--space-3xl) 0 var(--space-2xl);
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: var(--space-2xl);
}

/* Columna de marca */
.footer__logo {
    height: 64px;
    width: auto;
    margin-bottom: var(--space-md);
}

.footer__tagline {
    font-size: var(--fs-sm);
    line-height: 1.7;
    opacity: 0.55;
    margin-bottom: var(--space-lg);
}

/* Iconos sociales del footer */
.footer__social {
    display: flex;
    gap: 10px;
}

.footer__social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-old);
    transition: all var(--transition-fast);
}

.footer__social-icon:hover {
    border-color: var(--gold-bright);
    color: var(--gold-bright);
    background: rgba(212, 175, 55, 0.06);
}

/* Títulos de columnas del footer */
.footer__col-title {
    font-family: var(--font-body);
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-matte);
    margin-bottom: var(--space-md);
}

/* Links del footer */
.footer__links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__links a {
    font-size: var(--fs-sm);
    color: var(--cream);
    opacity: 0.5;
    transition: opacity var(--transition-fast), color var(--transition-fast);
    padding: 2px 0;
}

.footer__links a:hover {
    opacity: 1;
    color: var(--gold-matte);
}

/* Lista de contacto del footer */
.footer__contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: var(--fs-sm);
    color: var(--cream);
    opacity: 0.5;
    transition: opacity var(--transition-fast);
}

.footer__contact li:hover {
    opacity: 0.8;
}

.footer__contact svg {
    flex-shrink: 0;
    margin-top: 3px;
}

/* Barra de copyright */
.footer__bottom {
    border-top: 1px solid rgba(212, 175, 55, 0.08);
    padding: var(--space-md) 0;
}

.footer__bottom-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer__copy {
    font-size: var(--fs-xs);
    opacity: 0.4;
    margin: 0;
}

.footer__legal {
    display: flex;
    gap: var(--space-lg);
}

.footer__legal a {
    font-size: var(--fs-xs);
    color: var(--cream);
    opacity: 0.35;
    transition: opacity var(--transition-fast);
}

.footer__legal a:hover {
    opacity: 0.7;
}


/* ================================================================
   15. COMPONENTES FLOTANTES
================================================================ */

/* Botón scroll-to-top: aparece al bajar 400px (JS agrega .is-visible) */
.scroll-top {
    position: fixed;
    bottom: var(--space-xl);
    right: var(--space-xl);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-gold);
    color: var(--black-main);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-gold);
    z-index: 900;
    /* Estado inicial: oculto */
    opacity: 0;
    pointer-events: none;
    transform: translateY(16px);
    transition: opacity var(--transition-base), transform var(--transition-base);
}

.scroll-top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.scroll-top:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold-strong);
}


/* ================================================================
   15b. CARRITO DE COMPRAS
   Botón en header, drawer lateral, overlay, items, footer con CTAs.
================================================================ */

/* ── Botón del carrito en el header ── */
.cart-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1.5px solid var(--gold-matte);
    border-radius: var(--radius-md);
    background: transparent;
    color: var(--gold-pale);
    cursor: pointer;
    transition: background var(--transition-fast), color var(--transition-fast), box-shadow var(--transition-fast);
    flex-shrink: 0;
}

.cart-btn:hover {
    background: rgba(212, 175, 55, 0.12);
    color: var(--gold-bright);
    box-shadow: var(--shadow-gold);
}

.cart-btn__badge {
    position: absolute;
    top: -7px;
    right: -7px;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    background: var(--gradient-gold);
    color: var(--black-main);
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    line-height: 20px;
    text-align: center;
    border-radius: var(--radius-full);
    pointer-events: none;
}

/* ── Overlay oscuro ── */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(3px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-base), visibility var(--transition-base);
}

.cart-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

/* ── Drawer lateral ── */
.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 420px;
    max-width: 100vw;
    height: 100dvh;
    height: 100vh;
    background: var(--black-deep);
    border-left: 1px solid var(--gray-mid);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: -8px 0 48px rgba(0, 0, 0, 0.7);
}

.cart-drawer.is-open {
    transform: translateX(0);
}

/* ── Cabecera del drawer ── */
.cart-drawer__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 24px 20px;
    border-bottom: 1px solid var(--gray-mid);
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.06) 0%, transparent 100%);
    flex-shrink: 0;
}

.cart-drawer__title {
    font-family: var(--font-display);
    font-size: var(--fs-xl);
    font-weight: 600;
    color: var(--gold-bright);
    margin: 0 0 2px;
    line-height: 1.2;
}

.cart-drawer__subtitle {
    font-family: var(--font-body);
    font-size: var(--fs-xs);
    color: var(--gray-light);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.cart-drawer__close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid var(--gray-mid);
    border-radius: var(--radius-md);
    background: transparent;
    color: var(--gray-light);
    cursor: pointer;
    transition: color var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast);
    flex-shrink: 0;
}

.cart-drawer__close:hover {
    color: var(--gold-bright);
    border-color: var(--gold-matte);
    background: rgba(212, 175, 55, 0.08);
}

/* ── Estado vacío ── */
.cart-drawer__empty {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 24px;
    text-align: center;
    gap: 12px;
}

.cart-drawer__empty-icon {
    color: var(--gray-mid);
    margin-bottom: 8px;
}

.cart-drawer__empty-title {
    font-family: var(--font-heading);
    font-size: var(--fs-lg);
    color: var(--gold-pale);
    margin: 0;
}

.cart-drawer__empty-text {
    font-family: var(--font-body);
    font-size: var(--fs-sm);
    color: var(--gray-light);
    margin: 0;
    max-width: 260px;
    line-height: 1.6;
}

/* ── Lista de productos ── */
.cart-drawer__items {
    flex: 1;
    overflow-y: auto;
    padding: 8px 0;
    list-style: none;
    margin: 0;
    scrollbar-width: thin;
    scrollbar-color: var(--gray-mid) transparent;
}

.cart-drawer__items::-webkit-scrollbar { width: 4px; }
.cart-drawer__items::-webkit-scrollbar-track { background: transparent; }
.cart-drawer__items::-webkit-scrollbar-thumb { background: var(--gray-mid); border-radius: 4px; }

/* ── Item individual ── */
.cart-item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 6px 12px;
    padding: 14px 24px;
    border-bottom: 1px solid rgba(58, 58, 58, 0.5);
    animation: fadeInUp 0.3s ease both;
}

.cart-item__name {
    font-family: var(--font-heading);
    font-size: var(--fs-base);
    font-weight: 500;
    color: var(--cream);
    margin: 0;
    line-height: 1.3;
    grid-column: 1;
}

.cart-item__tag {
    font-family: var(--font-body);
    font-size: var(--fs-xs);
    color: var(--gray-light);
    letter-spacing: 0.05em;
    grid-column: 1;
}

.cart-item__price {
    font-family: var(--font-body);
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--gold-bright);
    grid-column: 2;
    grid-row: 1;
    align-self: start;
    white-space: nowrap;
}

/* Controles de cantidad + botón eliminar */
.cart-item__controls {
    display: flex;
    align-items: center;
    gap: 8px;
    grid-column: 1;
    margin-top: 6px;
}

.cart-item__qty-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: 1px solid var(--gray-mid);
    border-radius: var(--radius-sm);
    background: transparent;
    color: var(--gold-pale);
    font-size: var(--fs-base);
    line-height: 1;
    cursor: pointer;
    transition: border-color var(--transition-fast), color var(--transition-fast), background var(--transition-fast);
}

.cart-item__qty-btn:hover {
    border-color: var(--gold-matte);
    color: var(--gold-bright);
    background: rgba(212, 175, 55, 0.1);
}

.cart-item__qty {
    min-width: 24px;
    text-align: center;
    font-family: var(--font-body);
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--white);
}

.cart-item__remove {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    background: transparent;
    color: var(--gray-light);
    cursor: pointer;
    margin-left: auto;
    grid-column: 2;
    grid-row: 2 / 4;
    align-self: end;
    transition: color var(--transition-fast), border-color var(--transition-fast);
}

.cart-item__remove:hover {
    color: #e05252;
    border-color: rgba(224, 82, 82, 0.3);
}

.cart-item__subtotal {
    font-family: var(--font-body);
    font-size: var(--fs-xs);
    color: var(--gray-light);
    grid-column: 1;
}

/* ── Pie del carrito ── */
.cart-drawer__footer {
    padding: 0 24px 24px;
    flex-shrink: 0;
    background: linear-gradient(0deg, rgba(212, 175, 55, 0.04) 0%, transparent 100%);
}

.cart-drawer__divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-old), transparent);
    margin-bottom: 20px;
}

.cart-drawer__total-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 4px;
}

.cart-drawer__total-label {
    font-family: var(--font-body);
    font-size: var(--fs-sm);
    color: var(--gray-light);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.cart-drawer__total-price {
    font-family: var(--font-display);
    font-size: var(--fs-2xl);
    font-weight: 700;
    color: var(--gold-bright);
}

.cart-drawer__total-note {
    font-family: var(--font-body);
    font-size: var(--fs-xs);
    color: var(--gray-light);
    margin: 0 0 20px;
    line-height: 1.5;
}

/* Botones CTA de envío */
.cart-drawer__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 20px;
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: var(--fs-sm);
    font-weight: 700;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), filter var(--transition-fast);
    margin-bottom: 12px;
}

.cart-drawer__cta:hover {
    transform: translateY(-2px);
}

.cart-drawer__cta:active {
    transform: translateY(0);
}

.cart-drawer__cta--wa {
    background: #25D366;
    color: #fff;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.cart-drawer__cta--wa:hover {
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.45);
    filter: brightness(1.08);
}

.cart-drawer__cta--ig {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff;
    box-shadow: 0 4px 20px rgba(220, 39, 67, 0.3);
}

.cart-drawer__cta--ig:hover {
    box-shadow: 0 6px 28px rgba(220, 39, 67, 0.45);
    filter: brightness(1.08);
}

.cart-drawer__ig-note {
    font-family: var(--font-body);
    font-size: var(--fs-xs);
    color: var(--gold-pale);
    text-align: center;
    margin: -4px 0 0;
    padding: 10px 12px;
    background: rgba(212, 175, 55, 0.08);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(212, 175, 55, 0.2);
    line-height: 1.5;
}

/* ── Toast de confirmación ── */
.cart-toast {
    position: fixed;
    bottom: 88px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--gray-dark);
    border: 1px solid var(--gold-matte);
    border-radius: var(--radius-full);
    color: var(--gold-pale);
    font-family: var(--font-body);
    font-size: var(--fs-sm);
    font-weight: 500;
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    box-shadow: var(--shadow-md), var(--shadow-gold);
    white-space: nowrap;
}

.cart-toast.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Bloqueo de scroll cuando el carrito está abierto */
body.cart-open {
    overflow: hidden;
}

/* ================================================================
   16. KEYFRAMES & ANIMACIONES
================================================================ */

/* Rotación continua (anillos del hero, borde del about) */
@keyframes spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* Flotación suave vertical (partículas del hero) */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-12px); }
}

/* Pulso de la línea de scroll */
@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(1); }
    50%       { opacity: 0.9; transform: scaleY(1.1); }
}

/* Entrada desde abajo con fade */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Brillo dorado pulsante */
@keyframes goldPulse {
    0%, 100% { box-shadow: 0 0 12px rgba(212, 175, 55, 0.2); }
    50%       { box-shadow: 0 0 28px rgba(212, 175, 55, 0.45); }
}

/* Neblina dorada — pulso central */
@keyframes mistPulse {
    0%, 100% { opacity: 0.8; transform: translate(-50%, -50%) scale(1); }
    50%       { opacity: 1;   transform: translate(-50%, -50%) scale(1.2); }
}

/* Neblina dorada — deriva inferior */
@keyframes mistDrift {
    0%, 100% { opacity: 0.7; transform: translateX(-50%) scaleX(1); }
    50%       { opacity: 1;   transform: translateX(-50%) scaleX(1.25); }
}


/* ================================================================
   17. MEDIA QUERIES — DISEÑO RESPONSIVE
   Se trabaja "desktop first" y se adapta hacia mobile.
   Breakpoints:
     - 1024px → tablet landscape
     - 768px  → tablet portrait / mobile grande
     - 480px  → mobile estándar
================================================================ */

/* ── Tablet landscape: < 1024px ── */
@media (max-width: 1024px) {

    /* Reducir padding del contenedor */
    .container {
        padding: 0 var(--space-md);
    }

    /* Header: ocultar nav y CTA desktop; mostrar hamburguesa */
    .header__nav,
    .header__cta {
        display: none;
    }

    .header__hamburger {
        display: flex;
    }

    /* Hero: una sola columna */
    .hero__content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-2xl);
    }

    .hero__visual {
        order: -1; /* Logo arriba en mobile */
    }

    .hero__eyebrow {
        justify-content: center;
    }

    .hero__actions {
        justify-content: center;
    }

    .hero__stats {
        justify-content: center;
    }

    .hero__hex-frame {
        width: 260px;
        height: 260px;
    }

    .hero__hex-inner {
        width: 200px;
        height: 200px;
    }

    .hero__ring--1 { width: 240px; height: 240px; }
    .hero__ring--2 { width: 280px; height: 280px; }

    /* Visual del hero: no desbordar en tablet */
    .hero__visual {
        max-width: 100%;
    }

    /* About: una columna */
    .about__grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
        text-align: center;
    }

    .about__frame {
        justify-content: center;
    }

    .about__pillar {
        text-align: left;
    }

    /* Categories: 2 columnas en tablet */
    .categories__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Products: 2 columnas en tablet */
    .products__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Lifestyle: una columna */
    .lifestyle__layout {
        grid-template-columns: 1fr;
    }

    .hex-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

    /* Testimonios: 2 columnas se mantienen OK */

    /* Trust bar */
    .trust-bar {
        gap: var(--space-xl);
    }

    /* Footer: 2 columnas */
    .footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Footer bottom */
    .footer__bottom-row {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
    }

    .footer__legal {
        justify-content: center;
    }
}

/* ── Tablet intermedia: < 900px (tablets Android, iPad landscape) ── */
@media (max-width: 900px) {

    /* Hero: hex-frame más pequeño en tablets medianas */
    .hero__hex-frame {
        width: 300px;
        height: 300px;
    }

    .hero__hex-inner {
        width: 220px;
        height: 220px;
    }

    .hero__ring--1 { width: 270px; height: 270px; }
    .hero__ring--2 { width: 310px; height: 310px; }

    /* Products: 2 columnas en lugar de 3 */
    .products__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Categories: 2 columnas */
    .categories__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* About grid: más compacto */
    .about__grid {
        gap: var(--space-2xl);
    }

    /* Carrito: ancho adaptado */
    .cart-drawer {
        width: min(420px, 85vw);
    }
}

/* ── Mobile: < 768px ── */
@media (max-width: 768px) {

    /* Header más compacto */
    :root {
        --header-h: 68px;
    }

    /* Secciones: reducir padding vertical */
    .about,
    .categories,
    .products,
    .lifestyle,
    .testimonials,
    .cta-final {
        padding: var(--space-3xl) 0;
    }

    /* Hero: texto más pequeño ya manejado por clamp() */
    .hero__stats {
        gap: var(--space-md);
    }

    .hero__stat-num {
        font-size: var(--fs-lg);
    }

    /* About frame: más pequeño */
    .about__frame-inner {
        width: 240px;
        height: 240px;
    }

    .about__badge {
        right: -8px;
        bottom: -8px;
    }

    /* Categories: 1 columna en mobile */
    .categories__grid {
        grid-template-columns: 1fr;
    }

    /* Products: 1 columna */
    .products__grid {
        grid-template-columns: 1fr;
    }

    /* Filtros: wrap */
    .products__filters {
        flex-wrap: wrap;
    }

    /* Lifestyle: ajustes */
    .lifestyle__quote-mark {
        font-size: 70px;
    }

    /* Hex grid: 2 columnas */
    .hex-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Testimonios: 1 columna */
    .testimonials__grid {
        grid-template-columns: 1fr;
    }

    /* Trust bar: column en mobile */
    .trust-bar {
        flex-direction: column;
        gap: var(--space-lg);
        padding: var(--space-xl);
    }

    .trust-bar__sep {
        width: 48px;
        height: 1px;
    }

    /* CTA Final */
    .cta-final__actions {
        flex-direction: column;
        align-items: center;
    }

    /* Footer: 1 columna */
    .footer__grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    /* Scroll top: ajuste de posición */
    .scroll-top {
        bottom: var(--space-md);
        right: var(--space-md);
        width: 42px;
        height: 42px;
    }

    /* Divider gold: ajustar en mobile */
    .divider-gold__line {
        max-width: 50px;
    }

    /* Hero: reducir decoraciones de fondo para evitar overflow */
    .hero__bg-deco--1 {
        width: 320px;
        height: 320px;
        right: -80px;
        top: -60px;
    }

    .hero__bg-deco--2 {
        width: 240px;
        height: 240px;
    }

    .hero__bg-deco--3 {
        width: 180px;
        height: 180px;
    }

    /* Neblina about: ajustar en 768px */
    .about__frame-inner::before {
        width: 280px;
        height: 280px;
    }

    .about__frame-inner::after {
        width: 340px;
        height: 200px;
    }

    /* Carrito: ancho reducido en tablet */
    .cart-drawer {
        width: min(420px, 92vw);
    }
}

/* ── Mobile pequeño: < 480px ── */
@media (max-width: 480px) {

    /* Contenedor más estrecho */
    .container {
        padding: 0 var(--space-md);
    }

    /* Logo del header más pequeño */
    .header__logo-img {
        height: 44px;
    }

    /* Hero: botones en columna */
    .hero__actions {
        flex-direction: column;
        align-items: center;
    }

    .hero__hex-frame {
        width: 200px;
        height: 200px;
    }

    .hero__hex-inner {
        width: 160px;
        height: 160px;
    }

    .hero__ring--1 { width: 190px; height: 190px; }
    .hero__ring--2 { width: 220px; height: 220px; }

    /* About frame: aún más pequeño */
    .about__frame-inner {
        width: 200px;
        height: 200px;
    }

    /* Neblina about: reducida en pantallas pequeñas */
    .about__frame-inner::before {
        width: 220px;
        height: 220px;
    }

    .about__frame-inner::after {
        width: 260px;
        height: 160px;
    }

    /* Section headers más compactos */
    .section-header {
        margin-bottom: var(--space-2xl);
    }

    /* Testimonial cards más compactas */
    .testimonial-card {
        padding: var(--space-md);
    }

    /* CTA logo */
    .cta-final__logo {
        height: 80px;
    }

    /* Mobile menu: texto más pequeño */
    .mobile-menu__link {
        font-size: var(--fs-xl);
    }

    /* Carrito: pantalla completa */
    .cart-drawer {
        width: 100vw;
        border-left: none;
    }

    .cart-drawer__header {
        padding: 20px 16px 16px;
    }

    .cart-item {
        padding: 12px 16px;
    }

    .cart-drawer__footer {
        padding: 0 16px 20px;
    }

    .cart-toast {
        bottom: 72px;
        max-width: calc(100vw - 32px);
        white-space: normal;
        text-align: center;
    }
}
