/* ═══════════════════════════════════════════
   VARIABLES & RESET
═══════════════════════════════════════════ */
:root {
    --carbon: #141414;
    --carbon-2: #1e1e1e;
    --carbon-3: #2a2a2a;
    --gold: #C9A84C;
    --gold-light: #e0c06a;
    --cream: #F5F0E8;
    --text: #e8e4dc;
    --muted: #888;
    --radius: 6px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--carbon);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.15; }

/* ═══════════════════════════════════════════
   UTILITIES
═══════════════════════════════════════════ */
.section-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
    display: block;
}

.btn-gold {
    display: inline-block;
    background: var(--gold);
    color: #000;
    padding: 11px 22px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: background var(--transition), transform var(--transition);
    border: none;
    cursor: pointer;
    white-space: nowrap;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }

/* FADE IN */
.fade-section { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-section.visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════
   HEADER
═══════════════════════════════════════════ */
.header {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    background: transparent;
    transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
.header.scrolled {
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(255,255,255,0.06);
    padding: 10px 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}
.logo-icon { color: var(--gold); font-size: 1rem; }
.logo-text { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--cream); font-weight: 700; }

.header-right { display: flex; align-items: center; gap: 14px; }

/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.7rem;
    color: var(--muted);
}
.lang-btn {
    background: none;
    border: none;
    color: var(--muted);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    cursor: pointer;
    padding: 2px 4px;
    transition: color var(--transition);
}
.lang-btn.active, .lang-btn:hover { color: var(--gold); }

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 24px 60px;
    background: url('https://images.unsplash.com/photo-1503951914875-452162b0f3f1?w=1600&q=80') center/cover no-repeat;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.72) 60%, rgba(20,20,20,1) 100%);
}
.hero-content { position: relative; z-index: 1; max-width: 700px; }

.hero-eyebrow {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
    animation: fadeUp 0.8s ease both;
}
.hero-title {
    font-size: clamp(2.4rem, 8vw, 4.5rem);
    color: var(--cream);
    margin-bottom: 18px;
    animation: fadeUp 0.9s 0.1s ease both;
}
.hero-sub {
    font-size: clamp(1rem, 3vw, 1.15rem);
    color: rgba(245,240,232,0.7);
    margin-bottom: 36px;
    animation: fadeUp 1s 0.2s ease both;
}
.btn-hero {
    display: inline-block;
    background: var(--gold);
    color: #000;
    padding: 16px 34px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: background var(--transition), transform var(--transition);
    animation: fadeUp 1.1s 0.3s ease both;
}
.btn-hero:hover { background: var(--gold-light); transform: translateY(-3px); }

.hero-scroll {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}
.hero-scroll span {
    display: block;
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    margin: 0 auto;
    animation: scrollPulse 2s ease-in-out infinite;
}

/* ═══════════════════════════════════════════
   QUICK LINKS
═══════════════════════════════════════════ */
.quicklinks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 32px 20px;
    max-width: 480px;
    margin: 0 auto;
}
.ql-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 12px;
    background: var(--carbon-2);
    border: 1px solid rgba(201,168,76,0.25);
    border-radius: var(--radius);
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all var(--transition);
}
.ql-btn:hover, .ql-whatsapp:hover { background: var(--gold); color: #000; border-color: var(--gold); }
.ql-btn i { font-size: 1.1rem; }

/* ═══════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════ */
.about {
    padding: 70px 20px;
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}
.about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    /* Sin altura fija — cada foto ocupa su espacio natural */
}
.about-img {
    border-radius: 8px;
    overflow: hidden;
    /* Altura fija por foto para que se vean bien en todos los tamaños */
    height: 320px;
}
.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}
/* La segunda foto baja un poco para crear efecto visual escalonado */
.about-img-1 { height: 320px; }
.about-img-2 { height: 280px; margin-top: 40px; }

.about-text h2 {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    color: var(--cream);
    margin-bottom: 18px;
}
.about-text p { color: var(--muted); font-size: 0.95rem; max-width: 480px; }

.about-stats {
    display: flex;
    gap: 32px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--gold); font-weight: 700; }
.stat-label { font-size: 0.75rem; color: var(--muted); }

/* ═══════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════ */
.services {
    padding: 70px 20px;
    background: var(--carbon-2);
}
.services-header {
    text-align: center;
    margin-bottom: 40px;
}
.services-header h2 { font-size: clamp(1.8rem, 5vw, 2.5rem); color: var(--cream); }

.tabs { max-width: 600px; margin: 0 auto; }

.tab-buttons {
    display: flex;
    gap: 0;
    margin-bottom: 28px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.tab-btn {
    flex: 1;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    color: var(--muted);
    font-size: 0.95rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    cursor: pointer;
    padding: 12px 0;
    transition: all var(--transition);
    letter-spacing: 0.03em;
}
.tab-btn.active { color: var(--gold); border-bottom-color: var(--gold); }

.tab-content { display: none; }
.tab-content.active { display: block; animation: fadeUp 0.4s ease both; }

.service-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    gap: 12px;
}
.service-item.featured { background: rgba(201,168,76,0.06); padding: 18px 16px; border-radius: var(--radius); border-bottom: none; margin-bottom: 1px; }

.service-info { display: flex; flex-direction: column; gap: 3px; }
.service-name { font-weight: 600; font-size: 0.95rem; color: var(--cream); }
.service-desc { font-size: 0.78rem; color: var(--muted); }
.service-price { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--gold); font-weight: 700; white-space: nowrap; }

.services-cta { text-align: center; margin-top: 36px; }

/* ═══════════════════════════════════════════
   GALLERY — FOTOS
═══════════════════════════════════════════ */
.gallery { padding: 24px 16px 8px; background: var(--carbon); }

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(2, 260px);
    gap: 10px;
    max-width: 1200px;
    margin: 0 auto;
}

.gal-item {
    overflow: hidden;
    position: relative;
    background: var(--carbon-2);
    border-radius: 12px;
}
.gal-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.gal-item:hover img { transform: scale(1.04); }

/* ═══════════════════════════════════════════
   VIDEO SECTION
═══════════════════════════════════════════ */
.video-section {
    padding: 8px 16px 24px;
    background: var(--carbon);
}

.video-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    max-width: 1200px;
    margin: 0 auto;
}

.video-item {
    overflow: hidden;
    position: relative;
    background: var(--carbon-2);
    border-radius: 12px;
    aspect-ratio: 16 / 9;
}
.video-item video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    background: #000;
}

.gal-caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    padding: 24px 14px 12px;
    pointer-events: none;
    border-radius: 0 0 12px 12px;
}
.gal-caption p { color: var(--cream); font-style: italic; font-size: 0.82rem; }

/* ═══════════════════════════════════════════
   BOOKING
═══════════════════════════════════════════ */
.booking {
    padding: 70px 20px;
    background: var(--carbon);
}
.booking-header {
    text-align: center;
    margin-bottom: 36px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}
.booking-header h2 { font-size: clamp(1.8rem, 5vw, 2.5rem); color: var(--cream); margin-bottom: 10px; }
.booking-header p { color: var(--muted); font-size: 0.9rem; }

.booking-embed {
    max-width: 860px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    background: var(--carbon-2);
    border: 1px solid rgba(201,168,76,0.15);
}
.booking-embed iframe { display: block; }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.footer {
    background: #0d0d0d;
    padding: 50px 20px 24px;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-brand {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand .logo-icon { color: var(--gold); font-size: 1.3rem; margin-bottom: 8px; }
.footer-name { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--cream); margin-bottom: 4px; }
.footer-tagline { font-size: 0.78rem; color: var(--muted); }

.footer-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 32px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.footer-col h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}
.footer-col p { font-size: 0.85rem; color: var(--muted); margin-bottom: 4px; }
.footer-closed { color: rgba(136,136,136,0.5) !important; font-size: 0.78rem !important; }
.footer-link { display: inline-block; font-size: 0.82rem; color: var(--gold); text-decoration: none; margin-top: 8px; }
.footer-link:hover { text-decoration: underline; }

.footer-social { display: flex; gap: 14px; margin-bottom: 14px; }
.footer-social a { color: var(--muted); font-size: 1.1rem; transition: color var(--transition); }
.footer-social a:hover { color: var(--gold); }

.footer-map {
    max-width: 800px;
    margin: 0 auto 32px;
    border-radius: 8px;
    overflow: hidden;
    opacity: 0.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-bottom p { font-size: 0.72rem; color: rgba(136,136,136,0.5); }

/* ═══════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════ */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.3; transform: scaleY(0.6); }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — TABLET & DESKTOP
═══════════════════════════════════════════ */
@media (min-width: 600px) {
    .quicklinks { grid-template-columns: repeat(4, 1fr); max-width: 700px; }
}

@media (min-width: 768px) {
    .about {
        grid-template-columns: 1fr 1fr;
        align-items: center;
        padding: 100px 40px;
    }
    .gallery-grid {
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-rows: 280px 180px;
    }
    .gal-wide { grid-column: span 2; }
    .footer-info { grid-template-columns: repeat(3, 1fr); gap: 40px; }
    .footer-info { margin-bottom: 32px; }
}

@media (min-width: 1024px) {
    .header { padding: 18px 48px; }
    .header.scrolled { padding: 12px 48px; }
    .about { max-width: 1100px; padding: 100px 48px; gap: 60px; }
    .about-images { height: 420px; }
    .services { padding: 100px 40px; }
    .booking { padding: 100px 40px; }
}


/* ═══════════════════════════════════════════
   DOMICILE — Sección nueva
═══════════════════════════════════════════ */
.domicile {
    padding: 70px 20px;
    background: var(--carbon);
}
.domicile-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}
.domicile-text h2 {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    color: var(--cream);
    margin-bottom: 18px;
}
.domicile-text p {
    color: var(--muted);
    font-size: 0.95rem;
    max-width: 520px;
    margin-bottom: 28px;
}
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #000;
    padding: 14px 26px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    letter-spacing: 0.03em;
    transition: background var(--transition), transform var(--transition);
}
.btn-whatsapp:hover { background: #1ebe5d; transform: translateY(-2px); }
.btn-whatsapp i { font-size: 1.2rem; }

.domicile-perks {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.perk {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--carbon-2);
    border: 1px solid rgba(201,168,76,0.15);
    border-radius: 8px;
}
.perk-icon {
    color: var(--gold);
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
}
.perk-title {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--cream);
    margin-bottom: 4px;
}
.perk-desc {
    font-size: 0.8rem;
    color: var(--muted);
}

/* ═══════════════════════════════════════════
   ZONES — Sección nueva
═══════════════════════════════════════════ */
.zones {
    padding: 60px 20px;
    background: var(--carbon-2);
    text-align: center;
}
.zones-inner {
    max-width: 700px;
    margin: 0 auto;
}
.zones-inner h2 {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    color: var(--cream);
    margin-bottom: 12px;
}
.zones-sub {
    color: var(--muted);
    font-size: 0.9rem;
    margin-bottom: 36px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}
.zones-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}
.zone-pill {
    display: inline-block;
    padding: 8px 18px;
    border: 1px solid rgba(201,168,76,0.4);
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--gold-light);
    letter-spacing: 0.04em;
    transition: all var(--transition);
    cursor: default;
}
.zone-pill:hover {
    background: rgba(201,168,76,0.1);
    border-color: var(--gold);
    color: var(--gold);
}

/* ═══════════════════════════════════════════
   GALLERY — Actualizada con videos
═══════════════════════════════════════════ */
.gallery-header {
    text-align: center;
    padding: 60px 20px 32px;
    background: var(--carbon);
}
.gallery-header h2 {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    color: var(--cream);
    margin-bottom: 0;
}
.gallery { padding: 0 0 60px; overflow: hidden; background: var(--carbon); }

/* Grid principal: 2 columnas en móvil, cada item muestra la imagen completa */
.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 0 16px;
    max-width: 1100px;
    margin: 0 auto;
}
.gal-item {
    position: relative;
    background: var(--carbon-2);
    border-radius: 10px;
    overflow: hidden;
    /* La altura se adapta al contenido — la imagen manda */
}
/* Imagen completa sin recorte */
.gal-item img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.5s ease;
}
/* Video completo sin recorte */
.gal-item video {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.5s ease;
}
.gal-item:hover img,
.gal-item:hover video { transform: scale(1.02); }

/* La foto tall ocupa columna completa en móvil */
.gal-tall { grid-column: span 2; }

/* Videos — fondo negro para cuando el video carga */
.gal-video { background: #000; }

.gal-caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 24px 16px 14px;
    border-radius: 0 0 10px 10px;
}
.gal-caption p {
    color: var(--cream);
    font-style: italic;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
}
.gal-caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.75));
    padding: 20px 16px 12px;
}
.gal-caption p { color: var(--cream); font-style: italic; font-size: 0.85rem; }

/* ═══════════════════════════════════════════
   FOOTER — Actualizado
═══════════════════════════════════════════ */
.footer-dev {
    font-size: 0.72rem;
    color: rgba(136,136,136,0.4);
    margin-top: 6px;
}
.footer-dev a {
    color: rgba(201,168,76,0.6);
    text-decoration: none;
    transition: color var(--transition);
}
.footer-dev a:hover { color: var(--gold); }

/* ═══════════════════════════════════════════
   COOKIES — Loi 25 Québec
═══════════════════════════════════════════ */
.cookie-banner {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 9999;
    background: #1a1a1a;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 18px 24px 10px;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 -4px 24px rgba(0,0,0,0.4);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner.hidden { display: none; }

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 1100px;
    margin: 0 auto;
}
.cookie-title {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--cream);
    margin-bottom: 4px;
}
.cookie-text p {
    font-size: 0.8rem;
    color: var(--muted);
    line-height: 1.5;
}
.cookie-link { color: var(--gold); text-decoration: underline; }
.cookie-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.cookie-btn {
    padding: 9px 18px;
    border-radius: var(--radius);
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
    white-space: nowrap;
}
.cookie-reject {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--muted);
}
.cookie-reject:hover { border-color: rgba(255,255,255,0.4); color: var(--text); }
.cookie-custom {
    background: transparent;
    border: 1px solid rgba(201,168,76,0.3);
    color: var(--gold);
}
.cookie-custom:hover { background: rgba(201,168,76,0.1); }
.cookie-accept {
    background: var(--gold);
    color: #000;
}
.cookie-accept:hover { background: var(--gold-light); }

.cookie-footer {
    text-align: right;
    font-size: 0.68rem;
    color: rgba(136,136,136,0.4);
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid rgba(255,255,255,0.05);
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}
.cookie-brand {
    color: rgba(201,168,76,0.5);
    text-decoration: none;
    transition: color var(--transition);
}
.cookie-brand:hover { color: var(--gold); }

/* Modal personalizar */
.cookie-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0,0,0,0.7);
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.cookie-modal.visible { display: flex; }
.cookie-modal-box {
    background: var(--carbon-2);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 10px;
    padding: 28px;
    max-width: 480px;
    width: 100%;
}
.cookie-modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--cream);
    margin-bottom: 24px;
}
.cookie-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.cookie-option-name {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--cream);
    margin-bottom: 4px;
}
.cookie-option-desc {
    font-size: 0.75rem;
    color: var(--muted);
}
.cookie-toggle-fixed {
    font-size: 0.7rem;
    color: var(--gold);
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
}
.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
    flex-shrink: 0;
}
.cookie-toggle input { opacity: 0; width: 0; height: 0; }
.cookie-toggle-slider {
    position: absolute;
    inset: 0;
    background: var(--carbon-3);
    border-radius: 24px;
    cursor: pointer;
    transition: background var(--transition);
}
.cookie-toggle-slider::before {
    content: '';
    position: absolute;
    width: 18px; height: 18px;
    left: 3px; top: 3px;
    background: white;
    border-radius: 50%;
    transition: transform var(--transition);
}
.cookie-toggle input:checked + .cookie-toggle-slider { background: var(--gold); }
.cookie-toggle input:checked + .cookie-toggle-slider::before { transform: translateX(20px); }
.cookie-modal-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 24px;
}

/* ═══════════════════════════════════════════
   RESPONSIVE — Nuevas secciones
═══════════════════════════════════════════ */
@media (min-width: 768px) {
    .domicile-inner {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }
    .cookie-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    .cookie-text { flex: 1; }
    .cookie-actions { flex-shrink: 0; }
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: 300px;
        gap: 12px;
    }
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .gal-tall { grid-row: span 1; }
    .gal-video { grid-column: span 1; }
}

@media (min-width: 1024px) {
    .domicile { padding: 100px 40px; }
    .zones { padding: 80px 40px; }
}

/* ═══════════════════════════════════════════
   PRODUCTOS CAPILLAIRES — Estilo Acordeón
═══════════════════════════════════════════ */
.productos {
    padding: 70px 0 80px;
    background: var(--carbon-2);
    overflow: hidden;
}
.productos-header {
    text-align: center;
    padding: 0 20px;
    margin-bottom: 36px;
}
.productos-header h2 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    color: var(--cream);
    margin-bottom: 8px;
}
.productos-sub {
    color: var(--muted);
    font-size: 0.9rem;
    max-width: 520px;
    margin: 0 auto;
}

/* TABS */
.prod-tabs {
    display: flex;
    gap: 8px;
    padding: 0 20px 32px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    justify-content: center;
}
.prod-tabs::-webkit-scrollbar { display: none; }

.prod-tab {
    flex: 0 0 auto;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--muted);
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
    font-family: 'DM Sans', sans-serif;
    letter-spacing: 0.03em;
}
.prod-tab.active {
    background: var(--gold);
    color: #000;
    border-color: var(--gold);
}
.prod-tab:hover:not(.active) {
    border-color: rgba(255,255,255,0.4);
    color: var(--cream);
}

/* PANELS */
.prod-panel { display: none; }
.prod-panel.active { display: block; animation: fadeUp 0.4s ease both; }

/* ACORDEÓN — contenedor de cards */
.prod-track {
    display: flex;
    gap: 10px;
    height: 400px;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* CARD BASE — colapsada */
.prod-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    flex: 1;
    min-width: 60px;
    transition: flex 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255,255,255,0.08);
    background: var(--carbon);
    scroll-snap-align: unset;
}

/* CARD ACTIVA — expandida */
.prod-card.prod-active {
    flex: 4;
}

/* IMAGEN — siempre visible como fondo */
.prod-img-wrap {
    position: absolute;
    inset: 0;
    background: #fff;
    transition: opacity 0.4s ease;
}
.prod-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 16px;
}

/* Overlay oscuro sobre imagen */
.prod-img-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
}

/* LABEL VERTICAL — visible cuando colapsada */
.prod-label-v {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) rotate(-90deg);
    transform-origin: center center;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 11px;
    color: rgba(255,255,255,0.7);
    white-space: nowrap;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 2;
}
.prod-card.prod-active .prod-label-v { opacity: 0; }

/* CONTENIDO EXPANDIDO */
.prod-info {
    position: absolute;
    inset: 0;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
    transition: opacity 0.35s ease 0.1s;
    pointer-events: none;
    z-index: 2;
}
.prod-card.prod-active .prod-info {
    opacity: 1;
    pointer-events: auto;
}

.prod-brand {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 4px;
}
.prod-name {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1rem, 1.8vw, 1.3rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 8px;
}
.prod-desc {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.72);
    line-height: 1.55;
    margin-bottom: 16px;
}
.prod-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 18px;
    background: #25D366;
    border: none;
    border-radius: 6px;
    color: #000;
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s ease;
    width: fit-content;
}
.prod-btn:hover { background: #1fad53; }

/* MÓVIL — apilado vertical */
@media (max-width: 680px) {
    .prod-track {
        flex-direction: column;
        height: auto;
        gap: 8px;
        padding: 0 16px;
    }
    .prod-card {
        min-width: unset;
        min-height: 60px;
        flex: 1 !important;
        width: 100%;
        border-radius: 10px;
    }
    .prod-card.prod-active {
        min-height: 340px;
    }
    .prod-label-v {
        bottom: auto;
        top: 50%;
        transform: translate(-50%, -50%) rotate(0deg);
        font-size: 11px;
    }
    .prod-info { padding: 18px 16px; }
    .prod-name { font-size: 1rem; }
    .prod-tabs { justify-content: flex-start; }
}

@media (min-width: 768px) {
    .prod-track { padding: 0 32px; height: 420px; }
}
@media (min-width: 1024px) {
    .prod-track { height: 460px; }
}