/* =============================================
   GADU STORE — styles.css  (rediseño v2)
   Inspirado en Mosquita Muerta Wines
   Fondo oscuro · Paneles beige · Zoom hover
   ============================================= */

:root {
    --dark:      #1C1B19;
    --dark-2:    #252422;
    --beige:     #e4e0d7;
    --beige-lt:  #eeebe5;
    --text-dark: #2a2826;
    --text-mid:  #5a5652;
    --gold:      #a07830;
    --wine:      #6B1F27;
    --wa:        #25D366;
    --white:     #ffffff;
    --trans:     all .35s ease;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
    font-family: 'Montserrat', sans-serif;
    background: var(--beige);
    color: var(--beige);
    line-height: 1.6;
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

::-webkit-scrollbar { width:5px; height:5px; }
::-webkit-scrollbar-track { background: var(--dark-2); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius:3px; }

/* =============================================
   MODAL EDAD
   ============================================= */
#age-modal {
    position: fixed; inset:0; z-index:9999;
    background: rgba(10,9,8,.95);
    display: flex; align-items:center; justify-content:center;
    backdrop-filter: blur(6px);
}
.modal-box {
    background: var(--dark-2);
    border: 1px solid rgba(228,224,215,.12);
    border-radius: 4px;
    padding: 3rem 2.5rem;
    max-width: 420px; width:90%;
    text-align: center;
}
.modal-logo {
    width: 200px; height:auto;
    display:block; margin: 0 auto 1.5rem;
}
.modal-divider {
    width:40px; height:1px;
    background: var(--gold);
    margin: 0 auto 1.5rem;
}
.modal-text { font-size:.82rem; color:var(--text-mid); letter-spacing:.06em; margin-bottom:.5rem; }
.modal-question {
    font-size:1rem; font-weight:500;
    letter-spacing:.1em; text-transform:uppercase;
    color:var(--beige); margin: 1.25rem 0 1.5rem;
}
.modal-buttons { display:flex; flex-direction:column; gap:.75rem; }
.btn-age-yes {
    background: var(--beige); color:var(--text-dark);
    border:none; padding:.85rem;
    font-family:inherit; font-size:.8rem;
    font-weight:700; letter-spacing:.18em;
    text-transform:uppercase;
    transition:var(--trans);
}
.btn-age-yes:hover { background:var(--white); }
.btn-age-no {
    background:transparent; color:var(--text-mid);
    border:1px solid rgba(228,224,215,.2);
    padding:.7rem; font-size:.8rem;
    font-family:inherit; transition:var(--trans);
}
.btn-age-no:hover { border-color:var(--text-mid); }
.modal-legal { font-size:.68rem; color:var(--text-mid); margin-top:1.25rem; line-height:1.5; }

/* UNDERAGE */
#underage-block {
    position:fixed; inset:0;
    background:var(--dark);
    display:flex; align-items:center; justify-content:center;
    font-size:1rem; letter-spacing:.1em;
    text-transform:uppercase; color:var(--text-mid);
}

/* =============================================
   TOP BAR
   ============================================= */
.topbar {
    background: var(--dark-2);
    border-bottom: 1px solid rgba(228,224,215,.06);
    padding: .5rem 2rem;
    display: flex; align-items:center;
    justify-content: space-between;
}
.topbar-left {
    font-size:.65rem; letter-spacing:.2em;
    color:var(--text-mid); text-transform:uppercase;
}
.topbar-right { display:flex; gap:1.25rem; align-items:center; }
.topbar-link {
    color:var(--text-mid); transition:color .2s;
    display:flex; align-items:center;
}
.topbar-link:hover { color:var(--beige); }

/* =============================================
   NAVBAR
   ============================================= */
header {
    position: sticky; top:0; z-index:100;
    background: rgba(28,27,25,.97);
    border-bottom: 1px solid rgba(228,224,215,.08);
    backdrop-filter: blur(10px);
}
.navbar {
    display:flex; align-items:center;
    padding: .75rem 2rem; gap:2rem;
}
.logo-link { display:flex; align-items:center; }
.nav-logo {
    height: 52px; width:auto;
    transition: opacity .2s;
}
.nav-logo:hover { opacity:.85; }
.nav-links {
    display:flex; gap:2rem; margin-left:auto;
}
.nav-links a {
    font-size:.72rem; font-weight:500;
    letter-spacing:.18em; text-transform:uppercase;
    color:rgba(228,224,215,.7);
    transition: color .2s;
    position:relative;
}
.nav-links a::after {
    content:''; position:absolute;
    bottom:-4px; left:0; right:0;
    height:1px; background:var(--gold);
    transform: scaleX(0);
    transition: transform .25s ease;
}
.nav-links a:hover { color:var(--beige); }
.nav-links a:hover::after { transform: scaleX(1); }

.cart-btn {
    position:relative; background:transparent;
    border:1px solid rgba(228,224,215,.2);
    color:var(--beige); padding:.5rem .75rem;
    border-radius:2px; transition:var(--trans);
    display:flex; align-items:center; gap:.4rem;
}
.cart-btn:hover { border-color:var(--beige); }
.cart-badge {
    background: var(--gold); color:var(--dark);
    font-size:.65rem; font-weight:700;
    width:18px; height:18px; border-radius:50%;
    display:flex; align-items:center; justify-content:center;
    line-height:1;
}
.hamburger {
    display:none; flex-direction:column; gap:5px;
    background:transparent; border:none; padding:.3rem;
}
.hamburger span {
    display:block; width:22px; height:1.5px;
    background:var(--beige); border-radius:1px;
}
.mobile-menu {
    display:none; flex-direction:column;
    background:var(--dark-2);
    border-top: 1px solid rgba(228,224,215,.06);
    padding:1rem 2rem 1.5rem;
}
.mobile-menu a {
    padding:.75rem 0;
    font-size:.75rem; font-weight:500; letter-spacing:.16em;
    text-transform:uppercase; color:rgba(228,224,215,.7);
    border-bottom:1px solid rgba(228,224,215,.06);
    transition:color .2s;
}
.mobile-menu a:last-child { border:none; }
.mobile-menu a:hover { color:var(--beige); }
.mobile-menu.open { display:flex; }

/* =============================================
   HERO PORTADA
   ============================================= */
.hero-cover {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 560px;
    background: url('IMAGENES/hero-vinedo.jpg') center center / cover no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10,9,8,.55) 0%,
        rgba(10,9,8,.35) 50%,
        rgba(10,9,8,.72) 100%
    );
}
.hero-logo {
    position: relative;
    z-index: 2;
    width: clamp(220px, 32vw, 480px);
    height: auto;
    filter: brightness(0) invert(1);
    opacity: .95;
    drop-shadow: 0 4px 32px rgba(0,0,0,.6);
}
.hero-scroll-cta {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: .5rem;
    color: rgba(228,224,215,.75);
    font-size: .65rem;
    font-weight: 600;
    letter-spacing: .25em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid rgba(228,224,215,.3);
    padding: .75rem 1.75rem;
    transition: all .3s ease;
}
.hero-scroll-cta:hover {
    color: var(--beige);
    border-color: var(--gold);
    background: rgba(160,120,48,.1);
}
.hero-scroll-cta svg {
    animation: bounce-down 1.8s ease infinite;
}
@keyframes bounce-down {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(4px); }
}

/* =============================================
   GRID DE PANELES
   ============================================= */
main { display:flex; flex-direction:column; gap:6px; padding:6px 0; }

.pair {
    display:flex; gap:6px;
    height: clamp(320px, 42vw, 480px);
}

/* Panel genérico */
.panel { flex:1; overflow:hidden; position:relative; }

/* Panel de IMAGEN */
.panel-img { cursor:pointer; }
.panel-img-inner {
    width:100%; height:100%;
    background-size:cover;
    background-position:center;
    transition: transform .75s cubic-bezier(.25,.46,.45,.94);
}
.panel-img:hover .panel-img-inner { transform:scale(1.07); }

/* Panel de TEXTO */
.panel-text {
    background: var(--beige);
    display:flex; align-items:center; justify-content:center;
    cursor: pointer;
}
.panel-text-inner {
    text-align:center; padding:2.5rem;
    max-width:400px;
}

/* Logo de marca (imagen cuando esté disponible) */
.brand-logo-img {
    max-width: 280px; max-height: 130px;
    width: 100%; height: auto;
    display: block; margin: 0 auto 1.1rem;
    object-fit: contain;
    filter: none; /* logo ya viene con color oscuro sobre fondo transparente */
}

/* Placeholder de texto cuando no hay logo */
.brand-logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.1rem, 2.2vw, 1.6rem);
    font-weight: 400; font-style: italic;
    letter-spacing: .06em;
    color: var(--text-dark);
    margin-bottom: 1.1rem;
    line-height: 1.2;
}

.brand-sub {
    font-size: .7rem; font-weight: 500;
    letter-spacing: .18em; text-transform: uppercase;
    color: var(--gold); margin-bottom: .9rem !important;
}

/* Grid de múltiples logos (Espumantes) */
.brand-logos-grid {
    display: flex; flex-wrap: wrap;
    justify-content: center; align-items: center;
    gap: .75rem 1.25rem;
    margin-bottom: .75rem;
}
.brand-logo-multi {
    height: 36px; width: auto;
    max-width: 110px;
    object-fit: contain;
    filter: none;
    opacity: .85;
    transition: opacity .2s;
}
.brand-panel:hover .brand-logo-multi { opacity: 1; }

.panel-line {
    width:44px; height:1px;
    background:var(--text-dark);
    margin:0 auto 1.25rem;
}
.panel-text-inner p {
    font-size:.8rem; color:var(--text-mid);
    line-height:1.75; margin-bottom:1.5rem;
    font-weight:300; letter-spacing:.04em;
}
.panel-cta {
    display:inline-block;
    font-size:.68rem; font-weight:700;
    letter-spacing:.2em; text-transform:uppercase;
    color:var(--text-dark);
    border-bottom:1px solid var(--text-dark);
    padding-bottom:2px;
    transition:var(--trans);
}
.panel-text:hover .panel-cta {
    color:var(--gold);
    border-color:var(--gold);
}

/* Hover sutil en panel de texto */
.brand-panel { transition: background .3s ease; }
.brand-panel:hover { background: #dedad0; }

/* =============================================
   MARCAS BANNER
   ============================================= */
.brands-bar {
    background: var(--dark-2);
    border-top: 1px solid rgba(228,224,215,.06);
    border-bottom: 1px solid rgba(228,224,215,.06);
    padding: 1.2rem 0;
    overflow:hidden; position:relative;
}
.brands-label {
    position:absolute; left:0; top:0; bottom:0;
    background:var(--gold); color:var(--dark);
    display:flex; align-items:center;
    padding:0 1.5rem;
    font-size:.65rem; font-weight:700;
    letter-spacing:.2em; text-transform:uppercase;
    z-index:2; white-space:nowrap;
}
.marquee-wrap { overflow:hidden; }
.marquee-inner {
    display:flex; align-items:center;
    gap:2rem; white-space:nowrap;
    width:max-content;
    animation: marquee 35s linear infinite;
    padding-left:220px;
}
.marquee-inner:hover { animation-play-state:paused; }
.marquee-inner span {
    color:rgba(228,224,215,.6);
    font-size:.72rem; font-weight:300;
    letter-spacing:.16em; text-transform:uppercase;
    flex-shrink:0;
}
.marquee-inner .mdot { color:var(--gold); font-size:.5rem; }
.marquee-logo {
    height: 34px;
    width: auto;
    max-width: 130px;
    object-fit: contain;
    flex-shrink: 0;
    filter: brightness(0) invert(1);
    opacity: .65;
    transition: opacity .25s;
}
.marquee-inner:hover .marquee-logo { opacity: 1; }
@keyframes marquee {
    from { transform:translateX(0); }
    to   { transform:translateX(-50%); }
}

/* =============================================
   PÁGINA DE CATÁLOGO — HERO
   ============================================= */
.catalog-page-hero {
    position: relative;
    min-height: 260px;
    background: var(--dark-2);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.catalog-page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.62);
}
.catalog-hero-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem 1.5rem;
}
.catalog-hero-eyebrow {
    font-size: .65rem;
    letter-spacing: .25em;
    color: var(--gold);
    margin-bottom: .75rem;
}
.catalog-hero-title {
    font-size: clamp(1.3rem, 3vw, 2.2rem);
    font-weight: 700;
    letter-spacing: .2em;
    color: var(--beige);
    margin-bottom: .5rem;
}
.catalog-hero-sub {
    font-size: .72rem;
    letter-spacing: .14em;
    color: rgba(228,224,215,.65);
    margin-top: .4rem;
}
.catalog-hero-logo {
    max-height: 80px;
    max-width: 280px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    margin-bottom: 1rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.catalog-hero-logos {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem 1.5rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
}
.catalog-hero-logo-multi {
    height: 30px;
    width: auto;
    max-width: 100px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: .85;
}
.catalog-back-link {
    position: absolute;
    top: 1.2rem;
    left: 1.5rem;
    z-index: 2;
    color: rgba(228,224,215,.7);
    font-size: .65rem;
    letter-spacing: .15em;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: .4rem;
    transition: color .2s;
}
.catalog-back-link:hover { color: var(--gold); }

/* nav-active para catálogo */
.nav-active { color: var(--gold) !important; }

/* =============================================
   CATÁLOGO
   ============================================= */
.catalog-section {
    padding: 3rem 0 4rem;
    background: #010101;
}
.catalog-head {
    text-align:center; padding:0 2rem;
    margin-bottom:2.5rem;
}
.catalog-head h2 {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    font-weight:700; letter-spacing:.22em;
    text-transform:uppercase; color:var(--beige);
    margin-bottom:1rem;
}
.section-line {
    width:44px; height:1px;
    background:var(--gold);
    margin:0 auto 1rem;
}
.catalog-sub { font-size:.78rem; color:var(--beige); letter-spacing:.08em; margin-bottom:.5rem; }
.catalog-notice {
    font-size:.68rem; color:rgba(228,224,215,.45);
    letter-spacing:.06em; margin-bottom:1.5rem;
    font-style: italic;
}

/* Filtros de marca */
.brand-filters {
    display: flex; flex-wrap: wrap;
    gap: .5rem; justify-content: center;
    margin-top: 1.25rem;
}
.filter-btn {
    background: transparent;
    border: 1px solid rgba(228,224,215,.2);
    color: rgba(228,224,215,.55);
    padding: .4rem 1rem;
    font-family: inherit; font-size: .65rem;
    font-weight: 600; letter-spacing: .14em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: var(--trans);
    cursor: pointer;
}
.filter-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}
.filter-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--dark);
}

/* GRILLA PÁGINA CATÁLOGO */
.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 8px;
    padding: 1.5rem 2rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
}
.catalog-grid .wine-card {
    min-width: unset;
    max-width: unset;
    width: 100%;
}

.catalog-wrapper { position:relative; display:flex; align-items:center; }
.catalog-track {
    display:flex; gap:6px;
    overflow-x:auto; scroll-behavior:smooth;
    -webkit-overflow-scrolling:touch;
    padding:1rem 2rem 2rem;
    scrollbar-width:thin;
    scrollbar-color: var(--gold) #010101;
}
.catalog-track::-webkit-scrollbar { height:3px; }
.catalog-track::-webkit-scrollbar-thumb { background:var(--gold); }

.slide-btn {
    position:absolute; z-index:10;
    background:var(--dark-2);
    border:1px solid rgba(228,224,215,.15);
    color:var(--beige); width:42px; height:42px;
    border-radius:50%; font-size:1.6rem;
    display:flex; align-items:center; justify-content:center;
    transition:var(--trans); line-height:1;
}
.slide-btn:hover { background:var(--gold); border-color:var(--gold); color:var(--dark); }
.slide-prev { left:.5rem; }
.slide-next { right:.5rem; }
.slide-btn:disabled { opacity:.25; pointer-events:none; }

/* ── Foto real en card ── */
.card-visual-photo {
    position: relative;
    overflow: hidden;
    height: 220px !important;
    padding: 12px 16px 0;
    background: #000 !important;
}
.card-photo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
    transition: transform .5s cubic-bezier(.25,.46,.45,.94);
    filter: drop-shadow(0 8px 16px rgba(0,0,0,.5));
}
.wine-card:hover .card-photo {
    transform: scale(1.06) translateY(-4px);
}
.card-photo-shine { display: none; }
.card-visual-photo::after { display: none; }

/* ── Animación agregar al pedido ── */
@keyframes card-added {
    0%   { transform: scale(1); box-shadow: 0 0 0 0 rgba(160,120,48,0); }
    30%  { transform: scale(1.03); box-shadow: 0 0 0 6px rgba(160,120,48,.35); }
    100% { transform: scale(1); box-shadow: 0 0 0 14px rgba(160,120,48,0); }
}
.card-added-anim {
    animation: card-added .55s ease forwards;
}

/* ── Punto volador al carrito ── */
.cart-fly-dot {
    position: fixed;
    width: 14px; height: 14px;
    background: var(--gold);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
    transition: transform .52s cubic-bezier(.55,0,.45,1), opacity .52s ease;
}

/* ── Pop del ícono carrito ── */
@keyframes cart-pop {
    0%   { transform: scale(1); }
    40%  { transform: scale(1.35); }
    100% { transform: scale(1); }
}
.cart-btn-pop { animation: cart-pop .38s ease; }

/* WINE CARD */
.wine-card {
    min-width:210px; max-width:210px;
    background:#010101;
    border:1px solid rgba(228,224,215,.08);
    flex-shrink:0;
    display:flex; flex-direction:column;
    transition:var(--trans);
}
.wine-card:hover {
    border-color:rgba(228,224,215,.22);
    transform:translateY(-3px);
}
.card-visual {
    height:140px;
    display:flex; align-items:center;
    justify-content:center; position:relative;
    overflow:hidden;
}
.card-bottle-wrap {
    display:flex; flex-direction:column;
    align-items:center; z-index:1;
}
.cb-cap { width:12px; height:8px; border-radius:2px 2px 0 0; }
.cb-neck { width:16px; height:36px; }
.cb-shoulder {
    width:32px; height:12px;
    clip-path:polygon(22% 0%,78% 0%,100% 100%,0% 100%);
}
.cb-body {
    width:50px; height:70px;
    border-radius:2px 2px 7px 7px;
    position:relative; overflow:hidden;
    box-shadow: inset 3px 0 8px rgba(255,255,255,.07);
}
.cb-label {
    position:absolute; top:8px; left:50%;
    transform:translateX(-50%);
    width:36px; height:28px; border-radius:2px;
    background:rgba(228,224,215,.14);
    border:1px solid rgba(255,255,255,.1);
}
.cb-shine {
    position:absolute; top:0; left:5px;
    width:6px; height:100%;
    background:linear-gradient(90deg,rgba(255,255,255,.1),transparent);
}

.card-body { padding:.85rem; display:flex; flex-direction:column; flex:1; }
.card-badge {
    display:inline-block; align-self:flex-start;
    font-size:.58rem; font-weight:700; letter-spacing:.1em;
    text-transform:uppercase; padding:.18rem .55rem;
    color:var(--dark); margin-bottom:.5rem;
    border-radius:1px;
}
.card-name {
    font-size:.82rem; font-weight:500;
    color:var(--beige); line-height:1.35;
    margin-bottom:.5rem; flex:1; letter-spacing:.02em;
}
.card-price {
    font-size:.9rem; font-weight:700;
    color:var(--gold); margin-bottom:.65rem;
    letter-spacing:.04em;
}
.card-price-unit {
    font-size:.62rem; font-weight:400;
    color:rgba(228,224,215,.45); letter-spacing:.06em;
}
.card-qty-row {
    display:flex; align-items:center;
    background:rgba(228,224,215,.06);
    border-radius:2px; padding:.25rem .35rem;
    margin-bottom:.5rem; justify-content:space-between;
}
.cq-btn {
    background:var(--gold); color:var(--dark);
    border:none; width:26px; height:26px;
    border-radius:1px; font-size:1rem; font-weight:700;
    display:flex; align-items:center; justify-content:center;
    transition:var(--trans);
}
.cq-btn:hover { background:var(--beige); }
.cq-num {
    font-weight:700; font-size:.95rem;
    color:var(--beige); min-width:22px; text-align:center;
}
.card-add-btn {
    background:var(--beige); color:var(--text-dark);
    border:none; padding:.55rem;
    font-size:.65rem; font-weight:700;
    letter-spacing:.14em; text-transform:uppercase;
    width:100%; transition:var(--trans); font-family:inherit;
}
.card-add-btn:hover { background:var(--white); }
.card-add-btn.added { background:var(--gold); color:var(--dark); }

/* =============================================
   CART PANEL (sidebar)
   ============================================= */
.cart-panel {
    position:fixed; top:0; right:-420px; bottom:0;
    width:380px; max-width:95vw;
    background:var(--dark-2);
    border-left:1px solid rgba(228,224,215,.1);
    z-index:200; transition:right .35s ease;
    display:flex; flex-direction:column;
    overflow:hidden;
}
.cart-panel.open { right:0; }
.cart-backdrop {
    position:fixed; inset:0; z-index:199;
    background:rgba(0,0,0,.5);
    display:none; backdrop-filter:blur(2px);
}
.cart-backdrop.show { display:block; }

.cart-panel-head {
    display:flex; align-items:center;
    justify-content:space-between;
    padding:1.25rem 1.5rem;
    border-bottom:1px solid rgba(228,224,215,.08);
}
.cart-panel-head h3 {
    font-size:.78rem; font-weight:700;
    letter-spacing:.2em; color:var(--beige);
}
.cart-panel-close {
    background:transparent; border:none;
    color:var(--text-mid); font-size:1rem;
    padding:.25rem; transition:color .2s;
}
.cart-panel-close:hover { color:var(--beige); }

.cart-empty-msg {
    flex:1; display:flex; flex-direction:column;
    align-items:center; justify-content:center;
    gap:1rem; text-align:center; padding:2rem;
}
.cart-empty-msg p { font-size:.82rem; color:var(--text-mid); }
.cart-go-catalog {
    font-size:.7rem; font-weight:700; letter-spacing:.15em;
    text-transform:uppercase; color:var(--gold);
    border-bottom:1px solid var(--gold); padding-bottom:2px;
}

#cart-items-wrap {
    flex:1; display:flex; flex-direction:column;
    overflow:hidden;
}
#cart-items-list {
    flex:1; overflow-y:auto; padding:1rem 1.5rem;
    display:flex; flex-direction:column; gap:.75rem;
}
.cart-item-row {
    display:flex; align-items:center;
    gap:.75rem; padding-bottom:.75rem;
    border-bottom:1px solid rgba(228,224,215,.06);
}
.cart-item-info { flex:1; }
.cart-item-name {
    font-size:.78rem; color:var(--beige-lt);
    margin-bottom:.2rem; line-height:1.3;
}
.cart-item-price { font-size:.72rem; color:var(--gold); }
.cart-item-qty {
    display:flex; align-items:center; gap:.4rem;
}
.ciq-btn {
    background:rgba(228,224,215,.08); border:none;
    color:var(--beige); width:24px; height:24px;
    border-radius:1px; font-size:.9rem;
    display:flex; align-items:center; justify-content:center;
    transition:var(--trans);
}
.ciq-btn:hover { background:var(--gold); color:var(--dark); }
.cart-item-remove {
    background:transparent; border:none;
    color:rgba(228,224,215,.3); font-size:.85rem;
    transition:color .2s; padding:.2rem;
}
.cart-item-remove:hover { color:#c0392b; }

.cart-total-row {
    display:flex; justify-content:space-between;
    align-items:center; padding:1rem 1.5rem;
    border-top:1px solid rgba(228,224,215,.1);
    font-size:.82rem; font-weight:700;
    letter-spacing:.12em; text-transform:uppercase;
    color:var(--beige);
}
#cart-total { color:var(--gold); font-size:1.1rem; }

.cart-panel-btns {
    display:flex; gap:.5rem; padding:1rem 1.5rem;
    border-top:1px solid rgba(228,224,215,.06);
}
.btn-clear {
    background:transparent; color:var(--text-mid);
    border:1px solid rgba(228,224,215,.15);
    padding:.65rem 1rem; font-size:.68rem;
    font-weight:700; letter-spacing:.12em;
    text-transform:uppercase; font-family:inherit;
    transition:var(--trans); flex-shrink:0;
}
.btn-clear:hover { border-color:var(--text-mid); color:var(--beige); }
.btn-wa-order {
    flex:1; display:flex; align-items:center;
    justify-content:center; gap:.5rem;
    background:var(--wa); color:#fff;
    border:none; padding:.65rem 1rem;
    font-size:.7rem; font-weight:700;
    letter-spacing:.1em; text-transform:uppercase;
    font-family:inherit; transition:var(--trans);
}
.btn-wa-order:hover { background:#128C7E; }

/* =============================================
   CONTACTO
   ============================================= */
.contact-section {
    background: var(--dark-2);
    padding: 5rem 2rem;
    border-top:1px solid rgba(228,224,215,.06);
}
.contact-grid {
    max-width:900px; margin:0 auto;
    display:grid; grid-template-columns:1fr 1fr;
    gap:4rem; align-items:center;
}
.contact-logo {
    height: 60px; width:auto;
    display:block; margin-bottom:1.25rem;
    filter: invert(0);
}
.contact-info h2 {
    font-size:1.1rem; font-weight:700;
    letter-spacing:.22em; color:var(--beige);
    margin-bottom:1rem;
}
.contact-info p {
    font-size:.82rem; color:var(--text-mid);
    margin-bottom:1.5rem; line-height:1.75;
}
.contact-list { display:flex; flex-direction:column; gap:.5rem; }
.contact-list li {
    font-size:.8rem; color:rgba(228,224,215,.6);
    letter-spacing:.06em;
}
.contact-map-link {
    color:rgba(228,224,215,.6); text-decoration:none;
    border-bottom:1px solid transparent;
    transition:color .2s, border-color .2s;
}
.contact-map-link:hover { color:var(--gold); border-color:var(--gold); }
.contact-ctas { display:flex; flex-direction:column; gap:1rem; }
.cta-wa, .cta-ig {
    display:flex; align-items:center; justify-content:center;
    gap:.75rem; padding:1rem 1.5rem;
    font-size:.72rem; font-weight:700;
    letter-spacing:.14em; text-transform:uppercase;
    transition:var(--trans);
}
.cta-wa {
    background:var(--wa); color:#fff;
}
.cta-wa:hover { background:#128C7E; transform:translateY(-2px); }
.cta-ig {
    background:transparent; color:var(--beige);
    border:1px solid rgba(228,224,215,.2);
}
.cta-ig:hover {
    background:linear-gradient(135deg,#833AB4,#FD1D1D,#FCAF45);
    border-color:transparent; transform:translateY(-2px);
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    background: var(--dark);
    border-top: 1px solid rgba(228,224,215,.06);
    padding: .9rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: .4rem;
}
.footer-legal {
    font-size: .62rem;
    color: rgba(228,224,215,.3);
    letter-spacing: .04em;
}
.footer-dev {
    font-size: .62rem;
    color: rgba(228,224,215,.3);
    letter-spacing: .04em;
    text-decoration: none;
    transition: color .2s;
}
.footer-dev:hover { color: var(--gold); }
@media (max-width:600px) {
    .footer { justify-content: center; text-align: center; }
}

/* =============================================
   WHATSAPP FLOTANTE
   ============================================= */
.wa-float {
    position:fixed; bottom:2rem; right:2rem; z-index:150;
    background:var(--wa); color:#fff;
    width:56px; height:56px; border-radius:50%;
    display:none; align-items:center; justify-content:center;
    box-shadow:0 4px 20px rgba(37,211,102,.4);
    transition:var(--trans);
}
.wa-float:hover { background:#128C7E; transform:scale(1.1); }
.wa-float.show { display:flex; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width:900px) {
    .pair { height:clamp(260px,56vw,380px); }
    .contact-grid { grid-template-columns:1fr; gap:2.5rem; }
}
@media (max-width:680px) {
    .nav-links { display:none; }
    .hamburger { display:flex; }

    /* ── Zigzag móvil: mantener horizontal ── */
    .pair {
        flex-direction: row;
        height: 52vw;
        min-height: 180px;
        max-height: 260px;
    }
    .panel { flex: 1; height: 100%; }

    /* Texto en móvil — más compacto */
    .panel-text-inner {
        padding: 1.1rem 0.9rem;
        gap: 0.4rem;
    }
    .brand-logo-img {
        max-width: 120px;
        max-height: 50px;
        margin-bottom: 0.4rem;
    }
    .brand-logos-grid { gap: .3rem .6rem; margin-bottom: .3rem; }
    .brand-logo-multi { height: 22px; max-width: 70px; }
    .brand-sub { font-size: .55rem; letter-spacing: .08em; }
    .panel-text-inner p { display: none; }   /* ocultar descripción larga */
    .panel-cta { font-size: .55rem; letter-spacing: .12em; margin-top: .3rem; }

    .brands-label { position:static; padding:.5rem 1.5rem; display:block; text-align:center; }
    .marquee-inner { padding-left:1rem; }
    .cart-panel { width:100%; right:-100%; }
}
@media (max-width:420px) {
    .modal-box { padding:2rem 1.25rem; }
    .slide-btn { display:none; }
}
