:root{
  --black:#111111;
  --gold:#b8933c;
  --gold-light:#d8b968;
  --cream:#faf8f4;
  --gray:#666;
  --border:#e6e2da;
  --font-body:'Montserrat', sans-serif;
  --font-display:'Cormorant Garamond', serif;
}

*{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth;}
body{
  font-family:var(--font-body);
  color:var(--black);
  background:var(--cream);
  line-height:1.5;
}
a{text-decoration:none; color:inherit;}
ul{list-style:none;}
img{max-width:100%; display:block;}
button{font-family:inherit; cursor:pointer; border:none; background:none;}
svg{width:22px; height:22px; fill:currentColor;}

/* Announcement bar */
.announcement-bar{
  background:var(--black);
  color:var(--gold-light);
  text-align:center;
  font-size:.78rem;
  letter-spacing:.03em;
  padding:8px 12px;
}
.announcement-bar a{
  color:var(--gold);
  text-decoration:underline;
  font-weight:600;
}

/* Header */
.site-header{
  background:var(--black);
  color:#fff;
  position:sticky;
  top:0;
  z-index:100;
}
.header-inner{
  max-width:1400px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:10px 24px;
  gap:16px;
}
.logo img{height:64px; width:auto;}

.main-nav ul{
  display:flex;
  gap:28px;
}
.main-nav a{
  font-size:.82rem;
  font-weight:600;
  letter-spacing:.06em;
  padding:8px 2px;
  border-bottom:2px solid transparent;
  transition:color .2s, border-color .2s;
}
.main-nav a:hover,
.main-nav a.active{
  color:var(--gold-light);
  border-color:var(--gold);
}
.has-dropdown{position:relative;}
.dropdown{
  position:absolute;
  top:100%;
  left:0;
  background:#1a1a1a;
  min-width:180px;
  padding:8px 0;
  opacity:0;
  visibility:hidden;
  transform:translateY(8px);
  transition:all .2s ease;
  box-shadow:0 12px 24px rgba(0,0,0,.35);
}
.has-dropdown:hover .dropdown{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}
.dropdown a{
  display:block;
  padding:10px 18px;
  border-bottom:none;
  font-weight:500;
}
.dropdown a:hover{background:rgba(184,147,60,.15);}

.header-icons{
  display:flex;
  align-items:center;
  gap:18px;
}
.icon-btn{
  position:relative;
  display:inline-flex;
  color:#fff;
}
.icon-btn:hover{color:var(--gold-light);}
.badge{
  position:absolute;
  top:-6px;
  right:-8px;
  background:var(--gold);
  color:var(--black);
  font-size:.65rem;
  font-weight:700;
  line-height:1;
  padding:3px 5px;
  border-radius:50%;
}
.cart-total{font-size:.85rem; font-weight:600;}

.menu-toggle{
  display:none;
  flex-direction:column;
  gap:5px;
  color:#fff;
}
.menu-toggle span{
  width:24px; height:2px; background:#fff; display:block;
}

/* Search panel */
.search-panel{
  max-height:0;
  overflow:hidden;
  background:#1a1a1a;
  transition:max-height .3s ease;
}
.search-panel.open{max-height:80px;}
.search-panel-inner{
  max-width:1400px;
  margin:0 auto;
  display:flex;
  align-items:center;
  gap:16px;
  padding:16px 24px;
}
.search-panel-inner input{
  flex:1;
  background:transparent;
  border:none;
  border-bottom:1px solid var(--gold);
  color:#fff;
  font-size:1rem;
  padding:8px 4px;
  outline:none;
}
.search-panel-inner button{
  color:#fff;
  font-size:1.6rem;
  line-height:1;
}

/* Hero */
.hero{
  position:relative;
  width:100%;
  height:92vh;
  min-height:520px;
  max-height:900px;
  overflow:hidden;
  background:#000;
  display:flex;
  align-items:flex-end;
  justify-content:center;
}
.hero-video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  filter:brightness(.48);
  pointer-events:none; /* es solo decorativo: sin esto, tocarlo en móvil lo pausa y muestra los controles nativos */
}
.hero-overlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(60% 55% at 50% 78%, rgba(0,0,0,.55) 0%, rgba(0,0,0,0) 100%),
    linear-gradient(180deg, rgba(0,0,0,.3) 0%, rgba(0,0,0,.1) 35%, rgba(0,0,0,.65) 100%);
}
.hero-caption{
  position:relative;
  z-index:2;
  color:#fff;
  text-align:center;
  max-width:640px;
  margin-bottom:56px;
  padding:0 6%;
  display:flex;
  flex-direction:column;
  align-items:center;
}
.hero-caption h1,
.hero-eyebrow,
.hero-scroll-cue{
  text-shadow:0 2px 18px rgba(0,0,0,.75);
}
.hero-eyebrow{
  font-size:.78rem;
  letter-spacing:.28em;
  text-transform:uppercase;
  color:var(--gold-light);
  margin-bottom:14px;
}
.hero-caption h1{
  font-family:var(--font-body);
  font-size:4.4rem;
  font-weight:700;
  letter-spacing:.01em;
  line-height:1;
  margin-bottom:26px;
}
.hero-scroll-cue{
  font-size:.85rem;
  letter-spacing:.03em;
  color:#fff;
  border-bottom:1px solid rgba(255,255,255,.5);
  padding-bottom:4px;
  transition:border-color .2s, color .2s;
}
.hero-scroll-cue span{margin-left:4px;}
.hero-scroll-cue:hover{color:var(--gold-light); border-color:var(--gold-light);}

.btn-primary{
  display:inline-block;
  background:var(--gold);
  color:var(--black);
  font-weight:700;
  letter-spacing:.04em;
  padding:12px 28px;
  border-radius:2px;
  transition:background .2s;
}
.btn-primary:hover{background:var(--gold-light);}

/* Welcome banner */
.welcome-banner{
  position:relative;
  min-height:420px;
  background-size:cover;
  background-position:center;
  display:flex;
  align-items:center;
  overflow:hidden;
}
.welcome-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(90deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.55) 55%, rgba(0,0,0,.25) 100%);
}
.welcome-content{
  position:relative;
  z-index:2;
  max-width:640px;
  color:#fff;
  padding:60px 8%;
}
.welcome-content h2{
  font-family:var(--font-display);
  font-size:2.4rem;
  font-weight:600;
  margin-bottom:18px;
  color:#fff;
}
.welcome-content p{
  color:#e8e6e1;
  margin-bottom:26px;
  line-height:1.7;
}

/* Nuestras ventas / videos */
.video-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:28px;
}
.video-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:6px;
  overflow:hidden;
}
.video-card video{
  width:100%;
  aspect-ratio:9/16;
  max-height:520px;
  background:#000;
  display:block;
  object-fit:cover;
}
.video-caption{
  text-align:center;
  padding:14px;
  font-weight:600;
  font-size:.9rem;
  color:var(--black);
}

/* Page banner (subpaginas) */
.page-banner{
  background:var(--black);
  color:#fff;
  text-align:center;
  padding:64px 24px;
}
.page-banner h1{
  font-family:var(--font-display);
  font-size:2.4rem;
  font-weight:600;
  color:var(--gold-light);
  text-decoration:underline;
  text-decoration-color:var(--gold);
  text-underline-offset:10px;
  display:inline-block;
}
.page-banner p{
  color:#ccc;
  max-width:600px;
  margin:16px auto 0;
}

/* Sections */
.section{
  max-width:1400px;
  margin:0 auto;
  padding:64px 24px;
}
.section.alt{background:#fff;}
.section-title{
  font-family:var(--font-display);
  font-size:2.2rem;
  text-align:center;
  text-decoration:underline;
  text-decoration-color:var(--gold);
  text-underline-offset:10px;
  margin-bottom:40px;
}
.section-title.left{
  text-align:left;
  margin-bottom:18px;
}
.centered-text{text-align:center; max-width:640px; margin:0 auto 24px;}

/* Catalog toolbar */
.catalog-toolbar{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin-bottom:8px;
}
.catalog-tabs{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.tab-btn{
  border:1px solid var(--border);
  background:#fff;
  padding:8px 16px;
  font-size:.78rem;
  font-weight:600;
  letter-spacing:.02em;
  border-radius:999px;
  color:var(--gray);
  transition:all .2s;
  white-space:nowrap;
}
.tab-btn:hover{border-color:var(--gold);}
.tab-btn.active{
  background:var(--black);
  border-color:var(--black);
  color:var(--gold-light);
}
.catalog-search input{
  border:1px solid var(--border);
  border-radius:999px;
  padding:9px 18px;
  font-size:.85rem;
  min-width:220px;
  outline:none;
  font-family:inherit;
}
.catalog-search input:focus{border-color:var(--gold);}
.catalog-count{
  text-align:center;
  color:var(--gray);
  font-size:.82rem;
  margin:18px 0 28px;
}
.catalog-loading, .catalog-empty{
  grid-column:1/-1;
  text-align:center;
  color:var(--gray);
  padding:40px 0;
}
.catalog-loadmore-wrap{
  display:flex;
  justify-content:center;
  margin-top:36px;
}
.btn-loadmore{
  border:1px solid var(--black);
  padding:12px 36px;
  font-size:.8rem;
  font-weight:600;
  letter-spacing:.03em;
  border-radius:2px;
  transition:background .2s, color .2s;
  width:auto;
}
.btn-loadmore:hover{background:var(--black); color:#fff;}

/* Product grid */
.product-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:28px;
}
.product-card{
  position:relative;
  background:#fff;
  border:1px solid var(--border);
  border-radius:6px;
  padding:18px 18px 22px;
  text-align:center;
  transition:box-shadow .2s, transform .2s;
  display:flex;
  flex-direction:column;
  cursor:pointer;
}
.product-card:hover{
  box-shadow:0 16px 30px rgba(0,0,0,.08);
  transform:translateY(-4px);
}
.product-fav{
  position:absolute;
  top:12px;
  right:12px;
  width:32px; height:32px;
  border-radius:50%;
  background:rgba(255,255,255,.9);
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--gray);
  z-index:2;
  box-shadow:0 2px 6px rgba(0,0,0,.1);
}
.product-fav svg{width:17px; height:17px;}
.product-fav.active{color:#d0433c;}
.product-thumb{
  position:relative;
  width:100%;
  aspect-ratio:1/1;
  background:var(--cream);
  border-radius:6px;
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:16px;
  color:var(--gold);
}
.product-thumb img{
  width:100%; height:100%;
  object-fit:cover;
}
.product-thumb svg{width:56px; height:56px;}

/* Etiquetas de descuento / agotado (posicionadas respecto al contenedor de imagen, position:relative) */
.product-badges{display:contents;}
.badge-discount{
  position:absolute;
  top:10px; left:10px;
  z-index:2;
  background:#e07b1a;
  color:#fff;
  font-size:.72rem;
  font-weight:800;
  padding:5px 10px;
  border-radius:999px;
  box-shadow:0 2px 6px rgba(0,0,0,.2);
}
.badge-outofstock{
  position:absolute;
  top:14px; right:-34px;
  z-index:2;
  background:var(--black);
  color:#fff;
  font-size:.68rem;
  font-weight:800;
  letter-spacing:.05em;
  text-transform:uppercase;
  padding:5px 38px;
  transform:rotate(45deg);
  box-shadow:0 2px 6px rgba(0,0,0,.25);
  overflow:hidden;
}
.card-price{margin-bottom:14px;}
.price-original{
  display:block;
  color:#aaa;
  text-decoration:line-through;
  font-size:.82rem;
  margin-bottom:2px;
}
.card-price .price-final,
.card-price .price{margin-bottom:0;}
.product-card .product-category{
  font-size:.68rem;
  text-transform:uppercase;
  letter-spacing:.06em;
  color:var(--gold);
  font-weight:700;
  margin-bottom:4px;
}
.product-card h3{
  font-size:.98rem;
  font-weight:600;
  margin-bottom:6px;
  line-height:1.3;
}
.price{
  color:var(--gold);
  font-weight:700;
  margin-bottom:14px;
}
.btn-outline{
  border:1px solid var(--black);
  padding:10px 18px;
  font-size:.8rem;
  font-weight:600;
  letter-spacing:.03em;
  border-radius:2px;
  transition:background .2s, color .2s;
  width:100%;
  margin-top:auto;
}
.btn-outline:hover{background:var(--black); color:#fff;}
.btn-outline.added{background:var(--gold); border-color:var(--gold); color:var(--black);}
.btn-outline:disabled{
  border-color:var(--border);
  color:#bbb;
  cursor:not-allowed;
  background:#f5f4f0;
}
.btn-outline:disabled:hover{background:#f5f4f0; color:#bbb;}

/* Values grid (sobre-montero) */
.values-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:28px;
  max-width:1100px;
  margin:0 auto;
}
.value-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:6px;
  padding:28px 24px;
  text-align:center;
}
.value-card h3{
  font-family:var(--font-display);
  font-size:1.3rem;
  color:var(--gold);
  margin-bottom:10px;
}
.value-card p{color:var(--gray); font-size:.92rem;}

/* About */
.about-grid{
  display:grid;
  grid-template-columns:220px 1fr;
  gap:48px;
  align-items:center;
}
.about-logo{max-width:200px; margin:0 auto;}
.about-grid p{color:var(--gray);}
.about-grid.two-col{grid-template-columns:1fr 1fr; align-items:start;}
.about-grid.two-col img{border-radius:6px; width:100%; height:100%; object-fit:cover;}

/* Footer */
.site-footer{
  background:var(--black);
  color:#ddd;
  padding:56px 24px 20px;
}
.footer-inner{
  max-width:1400px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr;
  gap:40px;
  margin-bottom:32px;
}
.footer-logo{height:70px; margin-bottom:12px;}
.footer-social{
  display:flex;
  gap:12px;
  margin-top:18px;
}
.footer-social a{
  width:38px; height:38px;
  border-radius:50%;
  border:1px solid #3a3a3a;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#ddd;
  transition:all .2s;
}
.footer-social a:hover{
  background:var(--gold);
  border-color:var(--gold);
  color:var(--black);
}
.footer-social svg{width:18px; height:18px;}
.footer-col a.contact-link{color:#ddd; transition:color .2s;}
.footer-col a.contact-link:hover{color:var(--gold-light);}
.footer-col h4{
  color:#fff;
  margin-bottom:14px;
  font-size:.95rem;
  letter-spacing:.04em;
}
.footer-col ul li{margin-bottom:8px; font-size:.88rem;}
.footer-col a:hover{color:var(--gold-light);}
.footer-bottom{
  text-align:center;
  font-size:.78rem;
  color:#888;
  border-top:1px solid #2a2a2a;
  padding-top:18px;
  max-width:1400px;
  margin:0 auto;
}

/* Página de contacto */
.contact-page-grid{
  display:grid;
  grid-template-columns:1fr 1.2fr;
  gap:32px;
  max-width:1100px;
  margin:0 auto;
  align-items:stretch;
}
.contact-info-card{
  background:var(--black);
  color:#fff;
  border-radius:10px;
  padding:48px 40px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.contact-info-card h3{
  font-family:var(--font-display);
  font-size:1.7rem;
  color:var(--gold-light);
  margin-bottom:14px;
}
.contact-info-card .lead{
  color:#ccc;
  line-height:1.7;
  margin-bottom:30px;
}
.contact-whatsapp-btn{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  background:#25d366;
  color:#fff;
  font-weight:700;
  padding:15px 24px;
  border-radius:4px;
  transition:background .2s, transform .2s;
  margin-bottom:34px;
}
.contact-whatsapp-btn:hover{background:#1ebc59; transform:translateY(-2px);}
.contact-whatsapp-btn svg{width:22px; height:22px; fill:#fff;}
.contact-methods{
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:16px;
  margin-bottom:30px;
}
.contact-methods li{
  display:flex;
  align-items:center;
  gap:12px;
  font-size:.92rem;
  color:#eee;
}
.contact-methods li a{color:#eee; transition:color .2s;}
.contact-methods li a:hover{color:var(--gold-light);}
.contact-methods svg{width:19px; height:19px; color:var(--gold); flex-shrink:0;}

.contact-form-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:10px;
  padding:48px 40px;
  box-shadow:0 14px 34px rgba(0,0,0,.06);
}
.contact-form-card h3{
  font-family:var(--font-display);
  font-size:1.5rem;
  margin-bottom:8px;
}
.contact-form-card .lead{
  color:var(--gray);
  margin-bottom:26px;
  font-size:.92rem;
}
.contact-form-card .contact-form{max-width:none; margin:0;}

@media (max-width:900px){
  .contact-page-grid{grid-template-columns:1fr;}
  .contact-info-card, .contact-form-card{padding:36px 26px;}
}

/* Formulario de contacto */
.contact-form{
  max-width:640px;
  margin:0 auto;
  display:flex;
  flex-direction:column;
  gap:16px;
}
.contact-form .form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}
.contact-form input,
.contact-form textarea{
  width:100%;
  border:1px solid var(--border);
  border-radius:4px;
  padding:13px 16px;
  font-family:inherit;
  font-size:.92rem;
  background:#fff;
  outline:none;
  transition:border-color .2s;
  resize:vertical;
}
.contact-form input:focus,
.contact-form textarea:focus{border-color:var(--gold);}
.contact-form button{
  align-self:center;
  min-width:220px;
}
.contact-form-note{
  text-align:center;
  color:var(--gold);
  font-size:.85rem;
  font-weight:600;
  margin-top:-6px;
}

@media (max-width:640px){
  .contact-form .form-row{grid-template-columns:1fr;}
}

/* Paneles laterales (carrito / favoritos) */
.drawer-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.55);
  z-index:1000;
  opacity:0;
  visibility:hidden;
  transition:opacity .25s ease;
}
.drawer-overlay.open{opacity:1; visibility:visible;}

.side-drawer{
  position:fixed;
  top:0;
  right:0;
  height:100vh;
  width:min(420px, 92vw);
  background:#fff;
  z-index:1001;
  display:flex;
  flex-direction:column;
  transform:translateX(100%);
  transition:transform .3s ease;
  box-shadow:-12px 0 40px rgba(0,0,0,.2);
}
.side-drawer.open{transform:translateX(0);}

.drawer-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:20px 24px;
  border-bottom:1px solid var(--border);
  flex-shrink:0;
}
.drawer-header h3{
  font-family:var(--font-display);
  font-size:1.35rem;
}
.drawer-close{
  width:34px; height:34px;
  border-radius:50%;
  font-size:1.6rem;
  line-height:1;
  color:var(--black);
  transition:background .2s;
}
.drawer-close:hover{background:var(--cream);}

.drawer-body{
  flex:1;
  overflow-y:auto;
  overflow-x:hidden;
  padding:8px 24px;
}
.drawer-footer{
  border-top:1px solid var(--border);
  padding:20px 24px;
  flex-shrink:0;
}
.drawer-footer .btn-primary,
.drawer-footer .btn-outline{
  width:100%;
  text-align:center;
  display:block;
}

.drawer-item{
  display:flex;
  gap:14px;
  padding:18px 0;
  border-bottom:1px solid var(--border);
  position:relative;
}
.drawer-item:last-child{border-bottom:none;}
.drawer-item img{
  width:64px; height:64px;
  object-fit:cover;
  border-radius:6px;
  background:var(--cream);
  flex-shrink:0;
}
.drawer-item-info{flex:1; min-width:0; padding-right:20px;}
.drawer-item-info h4{
  font-size:.86rem;
  font-weight:600;
  margin-bottom:4px;
  line-height:1.3;
}
.drawer-item-price{
  color:var(--gold);
  font-weight:700;
  font-size:.85rem;
  margin-bottom:8px;
}
.qty-stepper{display:flex; align-items:center; gap:10px;}
.qty-btn{
  width:24px; height:24px;
  border:1px solid var(--border);
  border-radius:4px;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1rem;
  line-height:1;
  color:var(--black);
}
.qty-btn:hover{border-color:var(--gold);}
.qty-stepper span{font-size:.85rem; font-weight:600; min-width:14px; text-align:center;}
.drawer-item-actions{
  position:absolute;
  top:18px; right:0;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:8px;
}
.drawer-item-remove{
  width:22px; height:22px;
  color:#aaa;
  font-size:1.3rem;
  line-height:1;
}
.drawer-item-remove:hover{color:#c0392b;}
.drawer-item-view{
  width:28px; height:24px;
  border:1px solid var(--border);
  border-radius:4px;
  font-size:.68rem;
  font-weight:700;
  letter-spacing:.02em;
  color:var(--gray);
  transition:all .2s;
}
.drawer-item-view:hover{
  border-color:var(--gold);
  color:var(--black);
  background:var(--cream);
}
.drawer-add-cart{
  font-size:.78rem;
  font-weight:600;
  color:var(--black);
  text-decoration:underline;
}
.drawer-add-cart:hover{color:var(--gold);}
.drawer-total{
  display:flex;
  justify-content:space-between;
  font-weight:700;
  font-size:1.1rem;
  margin-bottom:16px;
}
.drawer-total span:last-child{color:var(--gold);}
.drawer-empty{
  text-align:center;
  padding:70px 10px;
  color:var(--gray);
}
.drawer-empty p{margin-bottom:20px;}
.drawer-empty .btn-outline{width:auto; display:inline-block; padding:11px 28px;}

@media (max-width:480px){
  .side-drawer{width:100vw;}
}

/* Modal de producto */
body.modal-open{overflow:hidden;}
.product-modal-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.65);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:24px;
  z-index:1000;
  opacity:0;
  visibility:hidden;
  transition:opacity .2s ease;
}
.product-modal-overlay.open{
  opacity:1;
  visibility:visible;
}
.product-modal{
  background:#fff;
  border-radius:8px;
  max-width:860px;
  width:100%;
  height:88vh;
  max-height:640px;
  overflow:hidden;
  display:grid;
  grid-template-columns:1fr 1fr;
  position:relative;
  box-shadow:0 30px 60px rgba(0,0,0,.35);
}
.product-modal-close{
  position:absolute;
  top:14px;
  right:14px;
  width:36px; height:36px;
  border-radius:50%;
  background:#fff;
  box-shadow:0 2px 8px rgba(0,0,0,.15);
  font-size:1.6rem;
  line-height:1;
  color:var(--black);
  z-index:2;
}
.product-modal-image{
  position:relative;
  overflow:hidden;
  background:var(--cream);
  display:flex;
  align-items:center;
  justify-content:center;
  height:100%;
}
.product-modal-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
}
.product-modal-info{
  height:100%;
  overflow-y:auto;
  padding:44px 36px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.product-modal-info h3{
  font-family:var(--font-display);
  font-size:1.7rem;
  font-weight:600;
  margin-bottom:14px;
  line-height:1.3;
}
.product-modal-info .price{
  font-size:1.4rem;
  margin-bottom:18px;
}
.product-modal-description{
  color:var(--gray);
  font-size:.92rem;
  line-height:1.7;
  margin-bottom:28px;
}
.product-specs{margin-bottom:28px;}
.product-specs:empty{display:none; margin:0;}
.specs-heading{
  font-size:.68rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.16em;
  color:var(--gold);
  margin-bottom:2px;
}
.spec-row{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:20px;
  padding:11px 0;
  border-bottom:1px solid var(--border);
}
.spec-row:first-of-type{border-top:1px solid var(--border);}
.spec-label{
  font-size:.76rem;
  color:var(--gray);
  text-transform:uppercase;
  letter-spacing:.05em;
  white-space:nowrap;
}
.spec-value{
  font-family:var(--font-display);
  font-size:1.05rem;
  font-weight:600;
  color:var(--black);
  text-align:right;
}
.product-modal-info .btn-outline{width:auto; padding:12px 32px;}

@media (max-width:700px){
  .product-modal{grid-template-columns:1fr; height:auto; max-height:92vh; overflow-y:auto;}
  .product-modal-image{height:260px;}
  .product-modal-info{height:auto; overflow-y:visible; padding:28px 24px;}
}

/* WhatsApp float */
.whatsapp-float{
  position:fixed;
  bottom:24px;
  right:24px;
  width:56px; height:56px;
  background:#25d366;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 8px 20px rgba(0,0,0,.25);
  z-index:200;
}
.whatsapp-float svg{width:30px; height:30px; fill:#fff;}

/* Asistente de chat */
.assistant-float{
  position:fixed;
  bottom:94px;
  right:24px;
  width:56px; height:56px;
  background:var(--black);
  color:var(--gold-light);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 8px 20px rgba(0,0,0,.3);
  z-index:200;
  transition:transform .2s;
}
.assistant-float:hover{transform:scale(1.06);}
.assistant-float svg{width:26px; height:26px;}

.assistant-panel{
  position:fixed;
  bottom:160px;
  right:24px;
  width:360px;
  max-width:calc(100vw - 32px);
  height:520px;
  max-height:calc(100vh - 190px);
  background:#fff;
  border-radius:12px;
  box-shadow:0 20px 50px rgba(0,0,0,.3);
  display:flex;
  flex-direction:column;
  overflow:hidden;
  opacity:0;
  visibility:hidden;
  transform:translateY(16px);
  transition:opacity .2s ease, transform .2s ease, visibility .2s;
  z-index:200;
}
.assistant-panel.open{opacity:1; visibility:visible; transform:translateY(0);}

.assistant-header{
  background:var(--black);
  color:#fff;
  padding:16px 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-shrink:0;
}
.assistant-header-title{font-family:var(--font-display); font-size:1.05rem; font-weight:600; color:var(--gold-light);}
.assistant-header-sub{font-size:.72rem; color:#bbb; margin-top:2px;}
.assistant-close{color:#fff; font-size:1.5rem; line-height:1;}

.assistant-body{
  flex:1;
  overflow-y:auto;
  padding:16px;
  display:flex;
  flex-direction:column;
  gap:12px;
  background:var(--cream);
}

.assistant-msg{
  max-width:85%;
  padding:10px 14px;
  border-radius:12px;
  font-size:.85rem;
  line-height:1.5;
}
.assistant-msg.bot{
  align-self:flex-start;
  background:#fff;
  border:1px solid var(--border);
  border-bottom-left-radius:2px;
}
.assistant-msg.user{
  align-self:flex-end;
  background:var(--black);
  color:#fff;
  border-bottom-right-radius:2px;
}

.assistant-typing{display:flex; gap:4px; align-items:center; padding:14px;}
.assistant-typing span{
  width:6px; height:6px;
  border-radius:50%;
  background:var(--gray);
  animation:assistantBlink 1.2s infinite ease-in-out;
}
.assistant-typing span:nth-child(2){animation-delay:.2s;}
.assistant-typing span:nth-child(3){animation-delay:.4s;}
@keyframes assistantBlink{0%,80%,100%{opacity:.3;} 40%{opacity:1;}}

.assistant-products{
  display:flex;
  flex-direction:column;
  gap:8px;
}
.assistant-product-card{
  display:flex;
  align-items:center;
  gap:10px;
  background:#fff;
  border:1px solid var(--border);
  border-radius:8px;
  padding:8px;
  text-align:left;
  transition:border-color .2s;
}
.assistant-product-card:hover{border-color:var(--gold);}
.assistant-product-card img{width:44px; height:44px; object-fit:cover; border-radius:6px; flex-shrink:0;}
.assistant-product-info{display:flex; flex-direction:column; gap:2px; min-width:0;}
.assistant-product-name{font-size:.8rem; font-weight:600; color:var(--black); overflow:hidden; text-overflow:ellipsis; white-space:nowrap;}
.assistant-product-price{font-size:.78rem; color:var(--gold);}

.assistant-quick-replies{display:flex; flex-wrap:wrap; gap:8px;}
.assistant-chip{
  background:#fff;
  border:1px solid var(--gold);
  color:var(--black);
  font-size:.76rem;
  padding:6px 12px;
  border-radius:999px;
  transition:background .2s, color .2s;
}
.assistant-chip:hover{background:var(--gold); color:#fff;}

.assistant-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  align-self:flex-start;
  background:#25d366;
  color:#fff;
  font-size:.8rem;
  font-weight:600;
  padding:9px 16px;
  border-radius:999px;
  transition:filter .2s;
}
.assistant-cta:hover{filter:brightness(.95);}

.assistant-input-row{
  display:flex;
  align-items:center;
  gap:8px;
  padding:12px;
  border-top:1px solid var(--border);
  background:#fff;
  flex-shrink:0;
}
.assistant-input-row input{
  flex:1;
  border:1px solid var(--border);
  border-radius:999px;
  padding:10px 16px;
  font-size:.85rem;
  font-family:inherit;
  outline:none;
}
.assistant-input-row input:focus{border-color:var(--gold);}
.assistant-input-row button{
  width:38px; height:38px;
  border-radius:50%;
  background:var(--black);
  color:var(--gold-light);
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}
.assistant-input-row button svg{width:18px; height:18px;}

@media (max-width:480px){
  .assistant-panel{
    right:16px;
    left:16px;
    width:auto;
    bottom:150px;
    height:calc(100vh - 220px);
  }
  .assistant-float{right:16px;}
  .whatsapp-float{right:16px;}
}

/* Responsive */
@media (max-width:1100px){
  .product-grid{grid-template-columns:repeat(2, 1fr);}
  .footer-inner{grid-template-columns:1fr 1fr;}
  .video-grid{grid-template-columns:repeat(2, 1fr);}
}

@media (max-width:900px){
  .menu-toggle{display:flex;}
  .main-nav{
    position:fixed;
    top:0; left:-280px;
    width:280px;
    height:100vh;
    background:#151515;
    padding:90px 24px 24px;
    transition:left .3s ease;
    z-index:150;
  }
  .main-nav.open{left:0;}
  .main-nav ul{flex-direction:column; gap:6px;}
  .main-nav a{display:block; padding:12px 0;}
  .dropdown{
    position:static;
    opacity:1; visibility:visible; transform:none;
    max-height:0; overflow:hidden;
    background:transparent;
    box-shadow:none;
    transition:max-height .3s ease;
  }
  .has-dropdown.open .dropdown{max-height:300px;}
  .about-grid{grid-template-columns:1fr; text-align:center;}
  .about-grid.two-col{text-align:left;}
  .values-grid{grid-template-columns:1fr;}
}

@media (max-width:640px){
  .logo img{height:48px;}
  .hero-caption h1{font-size:2.6rem;}
  .product-grid{grid-template-columns:1fr 1fr; gap:14px;}
  .section{padding:44px 16px;}
  .footer-inner{grid-template-columns:1fr;}
  .catalog-toolbar{flex-direction:column; align-items:stretch;}
  .catalog-search input{width:100%;}
  .video-grid{grid-template-columns:1fr; gap:20px;}
  .video-card video{max-height:none;}
  .welcome-content h2{font-size:1.8rem;}
  .welcome-content{padding:44px 6%;}
  .page-banner h1{font-size:1.8rem;}
}
