/* ============================================================
   EL DESVÁN DE LULÚ — Shared Stylesheet
   ============================================================ */

/* ---- RESET & VARIABLES ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --coral:       #D4877A;
    --coral-dark:  #BB6D60;
    --neon:        #C8E64A;
    --cream:       #FDFAF7;
    --pink-soft:   #FDF0EC;
    --pink-medium: #F8E2DB;
    --pink-footer: #F5D5CF;
    --border:      #EACFC9;
    --text-dark:   #2A2A2A;
    --text-mid:    #5C5C5C;
    --text-light:  #9A9A9A;
    --shadow-sm:   0 2px 16px rgba(0,0,0,0.06);
    --shadow-md:   0 8px 30px rgba(0,0,0,0.1);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    color: var(--text-dark);
    background: var(--cream);
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- PAGE FADE-IN ---- */
main {
    animation: pageIn 0.35s ease;
}
@keyframes pageIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ---- LANGUAGE SYSTEM ---- */
[data-en] { display: none; }

body.lang-en [data-es] { display: none !important; }
body.lang-en [data-en] { display: block; }

/* inline variants */
span[data-en] { display: none; }
body.lang-en span[data-es] { display: none !important; }
body.lang-en span[data-en] { display: inline; }


/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 10000;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 48px;
    height: 112px;
    background-color: #FDFAF7;
    background: rgba(253,250,247,0.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s, height 0.3s, box-shadow 0.3s;
    will-change: height;
}
#navbar.scrolled {
    height: 92px;
    border-color: var(--border);
    box-shadow: var(--shadow-sm);
}

.nav-logo {
    font-family: 'Dancing Script', cursive;
    font-size: 1.65rem; font-weight: 600;
    color: var(--coral);
    white-space: nowrap;
    letter-spacing: 0.01em;
    display: flex; align-items: center;
}
.nav-logo-img {
    height: 88px; width: auto;
    object-fit: contain; display: block;
    transition: opacity 0.2s, height 0.3s;
}
#navbar.scrolled .nav-logo-img { height: 68px; }

.nav-links {
    display: flex; align-items: center;
    gap: 30px; list-style: none;
}
.nav-links a {
    font-size: 0.68rem; font-weight: 500;
    letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--text-dark);
    position: relative; padding-bottom: 3px;
    transition: color 0.2s;
}
.nav-links a::after {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 1px; background: var(--coral);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.25s;
}
.nav-links a:hover { color: var(--coral); }
.nav-links a:hover::after { transform: scaleX(1); }

/* Active page link */
.nav-links a[aria-current="page"] {
    color: var(--coral);
}
.nav-links a[aria-current="page"]::after {
    transform: scaleX(1);
}

.lang-toggle {
    display: flex; align-items: center; gap: 4px;
    font-size: 0.7rem; font-weight: 500; letter-spacing: 0.12em;
    border-left: 1px solid var(--border);
    padding-left: 22px;
}
.lang-btn {
    padding: 4px 6px; border-radius: 3px;
    opacity: 0.4; transition: opacity 0.2s, color 0.2s;
}
.lang-btn.active { opacity: 1; color: var(--coral); }
.lang-sep { opacity: 0.3; }

.hamburger {
    display: none; flex-direction: column; gap: 5px; padding: 6px;
}
.hamburger span {
    width: 22px; height: 1.5px;
    background: var(--text-dark); transition: all 0.3s;
}
/* =========================================
   VISTA MÓVIL Y TABLET (MENÚ OVERLAY)
   ========================================= */
@media (max-width: 900px) {
    /* 1. Ajustar los márgenes del navbar en móvil para que no esté tan pegado */
    #navbar {
        padding: 0 24px;
    }

    /* 2. Mostrar la hamburguesa */
    .hamburger {
        display: flex;
        cursor: pointer;
        /* La hamburguesa hereda el z-index 10000 del #navbar, por lo que siempre se podrá clicar */
    }

    /* 3. Ocultar los enlaces por defecto */
    .nav-links {
        display: none; 
    }

    /* 4. EL MENÚ DESPLEGADO (Overlay tipo persiana) */
    .nav-links.open {
        position: absolute !important; /* CRÍTICO: Absolute lo libera de la trampa del blur */
        top: 100% !important; /* CRÍTICO: Hace que el menú empiece EXACTAMENTE donde termina la cabecera */
        bottom: auto !important;
        left: 0 !important;
        width: 100% !important;

        height: auto !important; 
        max-height: 75vh !important; /* Tope de seguridad por si hay muchos enlaces */
        overflow-y: auto !important; /* Permitir scroll interno solo si choca con el tope */

        background-color: #FDFAF7 !important;
        z-index: 9999 !important;
        
        /* Como ahora cuelga de la cabecera, no necesitamos 130px, con 25px respira perfecto */
        padding-top: 25px !important; 
        padding-bottom: 30px !important; 
        gap: 20px !important; 
        
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: flex-start !important;
        
        box-shadow: 0 15px 20px -10px rgba(0,0,0,0.1) !important;
    }
    /* 5. Ajustes de los enlaces dentro del menú móvil */
    .nav-links.open li {
        width: 100%;
        text-align: center;
    }

    .nav-links.open a {
        font-size: 1.1rem; /* Un poco más grande para que sea fácil darle con el dedo */
        padding: 5px 0;
        display: inline-block;
    }

    /* 6. Ajustar el selector de idioma para que quede centrado debajo de las secciones */
    .nav-links.open .lang-toggle {
        border-left: none; /* Quitamos la raya separadora de la versión PC */
        padding-left: 0;
        margin-top: 15px;
        justify-content: center;
        font-size: 1rem;
    }
    /* 7. Forzar que el logo y la hamburguesa estén SIEMPRE por encima del menú overlay */
    .nav-logo, 
    .hamburger {
        position: relative !important;
        z-index: 99999 !important;
    }
}


/* ============================================================
   SHARED SECTION / PAGE STYLES
   ============================================================ */
main > section {
    padding: 80px 60px 90px;
}
.page-top { padding-top: 72px; } /* offset for fixed navbar */

.container { max-width: 1180px; margin: 0 auto; }

.label {
    font-size: 0.66rem; letter-spacing: 0.28em; text-transform: uppercase;
    color: var(--text-light); margin-bottom: 10px;
}
.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 300; font-style: italic;
    line-height: 1.1; margin-bottom: 18px;
}
.neon-bar {
    height: 2px; background: var(--neon);
    border: none; margin-bottom: 50px;
}

/* Page header band (used in secondary pages) */
.page-hero {
    background: var(--pink-soft);
    border-bottom: 1px solid var(--border);
    padding: 132px 60px 72px;
    text-align: left;
}
.page-hero .container { display: flex; flex-direction: column; }
.page-hero .neon-bar  { max-width: 70px; margin-left: 0; margin-bottom: 0; }


/* ============================================================
   SHARED BUTTONS
   ============================================================ */
.btn-coral {
    padding: 13px 22px;
    background: var(--coral); color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.74rem; font-weight: 600;
    letter-spacing: 0.12em; text-transform: uppercase;
    transition: background 0.2s; white-space: nowrap;
    display: inline-block;
}
.btn-coral:hover { background: var(--coral-dark); }


/* ============================================================
   SECCIÓN I — NOSOTROS (index.html)
   ============================================================ */
#nosotros {
    display: flex; flex-direction: column;
    align-items: center; text-align: center;
    background: var(--cream);
    padding-top: 0;
}

.hero-block { padding: 80px 20px 0; width: 100%; }
.hero-name {
    font-family: 'Dancing Script', cursive;
    font-size: clamp(3.5rem, 9vw, 8.5rem);
    font-weight: 600; color: var(--coral);
    line-height: 1; letter-spacing: -0.01em; margin-bottom: 20px;
}
.hero-neon {
    width: min(75%, 680px); height: 2.5px;
    background: var(--neon); border: none;
    margin: 0 auto 22px; display: block;
}
.hero-concept {
    font-family: 'Dancing Script', cursive;
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    font-weight: 400; color: var(--text-dark);
    letter-spacing: 0.08em; margin-bottom: 70px;
}

/* Slider */
.slider-wrap {
    width: 100%; max-width: 940px;
    position: relative; overflow: hidden;
    border-radius: 3px; box-shadow: var(--shadow-md);
    contain: layout style;
}
.slider-track {
    display: flex;
    transition: transform 0.75s cubic-bezier(0.25,0.46,0.45,0.94);
    will-change: transform;
}
.slide {
    min-width: 100%; height: 500px;
    display: flex; align-items: center; justify-content: center;
}
.slide-ph {
    display: flex; flex-direction: column; align-items: center; gap: 14px;
    color: var(--text-mid); opacity: 0.55;
    font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1rem;
}
.slide-ph svg { width: 52px; height: 52px; }
.slide-photo { display: block; position: relative; overflow: hidden; }
.slide-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s ease; }
.slide-photo:hover img { transform: scale(1.03); }
.s-btn {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 42px; height: 42px; border-radius: 50%;
    background: rgba(255,255,255,0.88); border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    z-index: 5; transition: all 0.2s; color: var(--text-dark);
}
.s-btn:hover { background: #fff; box-shadow: 0 4px 14px rgba(0,0,0,0.12); }
.s-btn.prev { left: 14px; }
.s-btn.next { right: 14px; }
.s-btn svg  { width: 16px; height: 16px; }
.slider-dots {
    display: flex; justify-content: center; gap: 7px; margin-top: 18px;
}
.dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--border); cursor: pointer;
    transition: background 0.25s, transform 0.25s;
}
.dot.on { background: var(--coral); transform: scale(1.4); }

/* Story */
.story-block { max-width: 700px; margin: 80px auto 0; text-align: center; }
.story-block .neon-bar { width: 80px; margin: 0 auto 30px; }
.story-text { font-size: 1rem; line-height: 1.95; color: var(--text-mid); }

/* Newsletter */
.newsletter-block {
    width: 100%; max-width: 560px;
    margin: 80px auto 90px;
    background: var(--pink-soft);
    border: 1px solid var(--border);
    padding: 52px 44px; text-align: center;
}
.newsletter-block .neon-bar { width: 60px; margin: 0 auto 24px; }
.discount-pill {
    display: inline-block;
    background: var(--coral); color: #fff;
    font-size: 0.68rem; font-weight: 700;
    letter-spacing: 0.14em; text-transform: uppercase;
    padding: 5px 16px; border-radius: 30px; margin-bottom: 20px;
}
.nl-desc { font-size: 0.88rem; line-height: 1.75; color: var(--text-mid); margin-bottom: 28px; }
.nl-form { display: flex; gap: 8px; }
.nl-form input[type="email"] {
    flex: 1; padding: 13px 16px;
    border: 1px solid var(--border); background: #fff;
    font-family: 'Montserrat', sans-serif; font-size: 0.84rem;
    outline: none; transition: border-color 0.2s;
}
.nl-form input[type="email"]:focus { border-color: var(--coral); }
.nl-note { font-size: 0.72rem; color: var(--text-light); margin-top: 14px; }
.nl-success {
    display: none; padding: 14px;
    background: #EEF7EE; color: #2E7D32;
    font-size: 0.85rem; margin-top: 12px; border-radius: 2px;
}


/* ============================================================
   SECCIÓN II — TIENDAS (tiendas.html)
   ============================================================ */
#tiendas-content { background: var(--cream); padding: 60px 60px 90px; }

.stores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 28px; margin-top: 0;
}
.store-card {
    background: #fff; border: 1px solid var(--border);
    overflow: hidden; transition: transform 0.3s, box-shadow 0.3s;
}
@media (hover: hover) {
    .store-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
}

.store-map { width: 100%; height: 210px; overflow: hidden; }
.store-map iframe { width: 100%; height: 100%; border: none; display: block; }
.store-map-ph {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    flex-direction: column; gap: 12px;
}

.store-body { padding: 26px 28px; }
.store-pill {
    display: inline-block;
    font-size: 0.62rem; font-weight: 600;
    letter-spacing: 0.15em; text-transform: uppercase;
    padding: 3px 12px; border-radius: 20px; margin-bottom: 10px;
}
.store-pill.main   { background: var(--pink-medium); color: var(--coral-dark, #BB6D60); }
.store-pill.summer { background: #FFF8DC; color: #927600; }
.store-pill.old    { background: #EEF5EE; color: #3A6B35; }

.store-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem; font-weight: 400; margin-bottom: 6px;
}
.store-addr {
    display: flex; align-items: flex-start; gap: 6px;
    font-size: 0.83rem; color: var(--text-mid);
    margin-bottom: 20px; line-height: 1.5;
}
.store-addr svg { flex-shrink: 0; margin-top: 2px; }

.hours-block { border-top: 1px solid var(--border); padding-top: 16px; }
.hours-heading {
    font-size: 0.64rem; font-weight: 600;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--text-light); margin-bottom: 10px;
}
.hours-row {
    display: flex; justify-content: space-between; align-items: baseline;
    font-size: 0.8rem; color: var(--text-mid); padding: 3px 0;
}
.hours-row .hday    { font-weight: 500; }
.hours-row .hclosed { color: var(--text-light); font-style: italic; }


/* ============================================================
   SECCIÓN III — MARCAS (marcas.html)
   ============================================================ */
#marcas-content { background: var(--cream); padding: 60px 60px 90px; }

.ticker-wrap {
    overflow: hidden;
    background: var(--pink-medium);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 22px 0; margin: 40px 0 56px;
}
.ticker-inner {
    display: flex; width: max-content;
    animation: tickerAnim 36s linear infinite;
    will-change: transform;
}
.ticker-inner:hover { animation-play-state: paused; }
.ticker-item {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic; font-size: 1.4rem;
    color: var(--text-mid); padding: 0 48px;
    white-space: nowrap; display: flex; align-items: center; gap: 48px;
}
.ticker-dot { color: var(--coral); font-style: normal; font-size: 0.7rem; }
@keyframes tickerAnim {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px; max-width: 1100px; margin: 0 auto;
    contain: layout style;
}
.brand-card {
    background: var(--cream); border: 1px solid var(--border);
    padding: 44px 36px 36px;
    display: flex; flex-direction: column;
    align-items: center; text-align: center; gap: 16px;
    transition: transform 0.3s, box-shadow 0.3s;
    content-visibility: auto;
    contain-intrinsic-size: 0 280px;
}
@media (hover: hover) {
    .brand-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
    .brand-card:hover .brand-logo-img { transform: scale(1.05); }
    .brand-card:hover .brand-logo-svg { color: var(--coral); }
}
.brand-logo-wrap {
    width: 100%; height: 96px;
    display: flex; align-items: center; justify-content: center;
}
.brand-logo-img {
    max-width: 190px; max-height: 84px;
    width: auto; height: auto; object-fit: contain;
    transition: transform 0.3s;
}
.brand-logo-svg {
    width: 210px; height: 68px;
    color: var(--text-dark); transition: color 0.3s;
}
.brand-desc { font-size: 0.83rem; line-height: 1.8; color: var(--text-mid); }


/* ============================================================
   SECCIÓN IV — NOVEDADES (novedades.html)
   ============================================================ */
#novedades-content { background: var(--pink-soft); padding: 60px 60px 90px; }

.no-cart-note {
    font-size: 0.78rem; color: var(--text-light);
    letter-spacing: 0.06em; font-style: italic; margin-top: 6px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 18px; max-width: 1180px; margin: 40px auto 0;
    contain: layout style;
}
.prod-card {
    background: #fff; border: 1px solid var(--border);
    overflow: hidden; transition: transform 0.3s, box-shadow 0.3s;
    content-visibility: auto;
    contain-intrinsic-size: 0 360px;
}
@media (hover: hover) {
    .prod-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
    .prod-card:hover .prod-img img { transform: scale(1.04); }
}

.prod-img {
    position: relative; aspect-ratio: 3/4; overflow: hidden;
}
.prod-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.5s;
}
.prod-ph {
    width: 100%; height: 100%;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 10px; color: var(--text-light); font-size: 0.76rem;
}
.prod-ph svg { width: 36px; height: 36px; }
.prod-badge {
    position: absolute; top: 10px; left: 10px;
    background: var(--coral); color: #fff;
    font-size: 0.62rem; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase;
    padding: 4px 11px; border-radius: 20px;
}
.prod-info { padding: 14px 18px; }
.prod-name { font-size: 0.85rem; font-weight: 500; margin-bottom: 4px; }
.prod-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem; color: var(--coral); font-weight: 600;
}
.edit-note {
    text-align: center; margin-top: 44px;
    font-size: 0.78rem; color: var(--text-light); font-style: italic;
}
.edit-note code {
    background: var(--pink-medium); padding: 2px 6px;
    border-radius: 3px; font-style: normal; font-size: 0.74rem;
}


/* ============================================================
   SECCIÓN V — RESEÑAS (resenas.html)
   ============================================================ */
#resenas-content { background: var(--cream); padding: 60px 60px 90px; }

.rating-hero { text-align: center; margin: 36px auto 50px; }
.rating-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5.5rem; font-weight: 300; line-height: 1; color: var(--text-dark);
}
.rating-stars  { font-size: 1.5rem; letter-spacing: 4px; color: #D4A017; margin: 8px 0; }
.rating-sub    { font-size: 0.8rem; color: var(--text-light); letter-spacing: 0.08em; }

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 18px; max-width: 1100px; margin: 0 auto;
    contain: layout style;
}
.review-card {
    background: var(--pink-soft); border: 1px solid var(--border); padding: 26px 28px;
    content-visibility: auto;
    contain-intrinsic-size: 0 220px;
}
.review-top { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.rev-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--pink-medium); flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem; font-weight: 600; color: var(--coral);
}
.rev-name  { font-size: 0.88rem; font-weight: 500; }
.rev-date  { font-size: 0.73rem; color: var(--text-light); }
.rev-stars { color: #D4A017; font-size: 0.88rem; margin-bottom: 10px; }
.rev-text  { font-size: 0.83rem; line-height: 1.8; color: var(--text-mid); }

.google-note {
    display: flex; align-items: center; justify-content: center;
    gap: 10px; margin-top: 44px;
    font-size: 0.76rem; color: var(--text-light);
}


/* ============================================================
   FOOTER
   ============================================================ */
footer { background: var(--pink-footer); }

.footer-signature {
    text-align: center; padding: 60px 40px 34px;
    border-bottom: 1px solid var(--border);
}
.footer-tagline {
    font-size: 0.67rem; letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--text-light); margin-bottom: 20px;
}
.footer-sig-text {
    font-family: 'Dancing Script', cursive;
    font-size: 2.2rem; color: var(--coral); line-height: 1.35;
}

.footer-bottom {
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 16px; padding: 22px 48px;
}
.footer-copy { font-size: 0.73rem; color: var(--text-light); }
.footer-nav  { display: flex; gap: 22px; list-style: none; }
.footer-nav a { font-size: 0.73rem; color: var(--text-light); transition: color 0.2s; }
.footer-nav a:hover { color: var(--coral); }
.footer-socials { display: flex; gap: 10px; }
.soc-btn {
    width: 38px; height: 38px; border-radius: 50%;
    background: rgba(212,135,122,0.13);
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s, color 0.2s; color: var(--coral);
}
.soc-btn:hover { background: var(--coral); color: #fff; }
.soc-btn svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.8; }

.footer-powered {
    display: flex; align-items: center; justify-content: center;
    padding: 10px 48px 16px;
    border-top: 1px solid var(--border);
}
.footer-powered a {
    display: flex; align-items: center; gap: 8px;
    color: var(--text-light); font-size: 0.68rem;
    letter-spacing: 0.12em; text-transform: uppercase;
    transition: opacity 0.2s; text-decoration: none;
}
.footer-powered a:hover { opacity: 0.65; }
.footer-powered-text { white-space: nowrap; }
.footer-powered img {
    max-height: 55px; width: auto;
    display: block; opacity: 0.5;
    transition: opacity 0.2s;
}
.footer-powered a:hover img { opacity: 0.8; }


/* ============================================================
   FLOATING BUTTONS
   ============================================================ */
.floaters {
    position: fixed; bottom: 28px; right: 28px;
    display: flex; flex-direction: column; align-items: center;
    gap: 10px; z-index: 900;
}
.fl-btn {
    width: 52px; height: 52px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 18px rgba(0,0,0,0.2);
    transition: transform 0.2s, box-shadow 0.2s;
}
.fl-btn:hover { transform: scale(1.09); box-shadow: 0 6px 22px rgba(0,0,0,0.28); }
.fl-btn.ig {
    background: linear-gradient(135deg,#f09433,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888);
}
.fl-btn.wa { background: #25D366; }
.fl-btn svg { width: 23px; height: 23px; fill: #fff; }


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
    main > section, #tiendas-content, #marcas-content, #novedades-content, #resenas-content {
        padding: 60px 28px 70px;
    }
    .page-hero { padding: 124px 28px 44px; }
    #navbar { padding: 0 24px; }
    .nav-links { display: none; }
    .nav-logo-img { height: 72px; }
    .nav-links.open {
        display: flex; flex-direction: column; align-items: center;
        justify-content: flex-start;
        position: fixed; top: 0; left: 0; right: 0; bottom: 0;
        background-color: #FDFAF7 !important;
        padding: 130px 28px 32px; gap: 8px;
        overflow-y: auto; z-index: 9999;
    }
    .nav-links.open li { margin: 0; width: 100%; text-align: center; }
    .nav-links.open a { font-size: 1rem; padding: 13px 0; display: block; }
    .lang-toggle { border-left: none; padding-left: 0; }
    .nav-links.open .lang-toggle { justify-content: center; margin-top: 8px; }
    .hamburger   { display: flex; }
    .stores-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; padding: 20px 24px; }
}

@media (max-width: 600px) {
    main > section, #tiendas-content, #marcas-content, #novedades-content, #resenas-content {
        padding: 50px 18px 60px;
    }
    .page-hero { padding: 124px 18px 36px; }
    .nl-form   { flex-direction: column; }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-name { font-size: clamp(2.8rem, 13vw, 5rem); }
}
