/* ============================================================
   CERBONY S.A.S. — Componentes compartidos
   ============================================================ */

/* ============== TOPBAR ============== */
.topbar {
  background: var(--ink-950);
  color: var(--cream-200);
  font-size: .8rem;
  padding: 9px 0;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.topbar-info { display: flex; gap: 22px; flex-wrap: wrap; align-items: center; }
.topbar-info span { display: inline-flex; align-items: center; gap: 7px; }
.topbar-info svg { width: 14px; height: 14px; color: var(--gold-400); }
.topbar-social { display: flex; gap: 14px; align-items: center; }
.topbar-social a { transition: color var(--t-fast); display: inline-flex; }
.topbar-social a:hover { color: var(--gold-400); }
.topbar-social svg { width: 15px; height: 15px; }
.topbar-divider { color: var(--ink-600); }

/* ============== HEADER ============== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(251, 248, 242, .9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(180, 171, 157, .35);
  transition: box-shadow var(--t-base), background var(--t-base);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: var(--header-h);
}

/* Logo */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: none;
}
.logo-mark {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--grad-wine-deep);
  display: grid;
  place-items: center;
  color: var(--gold-400);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  box-shadow: var(--shadow-wine), inset 0 0 0 2px var(--gold-500);
  position: relative;
}
.logo-mark::after {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(232, 210, 166, .35);
  border-radius: 50%;
}
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-text strong {
  font-family: var(--font-display);
  font-size: 1.32rem;
  color: var(--ink-900);
  letter-spacing: .04em;
}
.logo-text small {
  font-size: .62rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold-700);
  margin-top: 3px;
  font-weight: 600;
}

/* Menu principal */
.main-menu { display: flex; align-items: center; gap: 4px; }
.main-menu > li > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  font-size: .92rem;
  font-weight: 500;
  color: var(--ink-700);
  border-radius: var(--r-sm);
  transition: color var(--t-fast), background var(--t-fast);
  position: relative;
}
.main-menu > li > a::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px;
  bottom: 4px;
  height: 2px;
  background: var(--gold-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-base);
}
.main-menu > li > a:hover,
.main-menu > li > a.active { color: var(--wine-600); }
.main-menu > li > a:hover::after,
.main-menu > li > a.active::after { transform: scaleX(1); }
.main-menu .has-dropdown > a svg { width: 12px; height: 12px; opacity: .6; }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #fff;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  padding: 10px;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--t-base);
  border: 1px solid var(--ink-100);
}
.has-dropdown { position: relative; }
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--r-sm);
  font-size: .9rem;
  color: var(--ink-700);
  transition: background var(--t-fast), color var(--t-fast);
}
.dropdown a:hover { background: var(--cream-100); color: var(--wine-600); }
.dropdown a svg { width: 18px; height: 18px; color: var(--gold-600); }

/* Header actions */
.header-actions { display: flex; align-items: center; gap: 10px; }
.cart-btn {
  position: relative;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--cream-100);
  display: grid; place-items: center;
  color: var(--ink-800);
  transition: background var(--t-fast), color var(--t-fast), transform var(--t-fast);
}
.cart-btn:hover { background: var(--wine-600); color: #fff; transform: translateY(-2px); }
.cart-btn svg { width: 22px; height: 22px; }
.cart-count {
  position: absolute;
  top: -4px; right: -4px;
  min-width: 22px; height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--gold-500);
  color: var(--ink-950);
  font-size: .72rem;
  font-weight: 700;
  display: grid; place-items: center;
  border: 2px solid var(--cream-50);
}
.cart-count.pop { animation: pop .4s ease; }
.cart-count.empty { display: none; }

.header-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--wa-green);
  color: #fff;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: .88rem;
  transition: background var(--t-fast), transform var(--t-fast);
}
.header-whatsapp:hover { background: var(--wa-green-dark); transform: translateY(-2px); }
.header-whatsapp svg { width: 17px; height: 17px; }

.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: var(--r-sm);
  background: var(--cream-100);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.menu-toggle span {
  width: 22px; height: 2px;
  background: var(--ink-800);
  border-radius: 2px;
  transition: transform var(--t-base), opacity var(--t-base);
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============== OFF-CANVAS MOBILE ============== */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: none;
}
.mobile-nav.open { display: block; }
.mobile-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20,17,15,.5);
  backdrop-filter: blur(2px);
  animation: fadeUp .25s ease;
}
.mobile-panel {
  position: absolute;
  right: 0; top: 0;
  width: min(380px, 85vw);
  height: 100%;
  background: var(--cream-50);
  padding: 24px;
  overflow-y: auto;
  animation: slideRight .35s cubic-bezier(.22,1,.36,1);
  display: flex;
  flex-direction: column;
}
@keyframes slideRight { from { transform: translateX(100%); } to { transform: translateX(0); } }
.mobile-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.mobile-close {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--cream-100);
  display: grid; place-items: center;
  font-size: 1.4rem;
  color: var(--ink-700);
}
.mobile-menu { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu a {
  padding: 14px 12px;
  border-radius: var(--r-sm);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink-800);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background var(--t-fast);
}
.mobile-menu a:hover, .mobile-menu a.active { background: var(--cream-100); color: var(--wine-600); }
.mobile-cta { margin-top: auto; display: flex; flex-direction: column; gap: 12px; padding-top: 24px; }

/* ============== FOOTER ============== */
.site-footer {
  background: var(--grad-wine-deep);
  color: var(--cream-200);
  padding-top: clamp(56px, 7vw, 90px);
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--grad-gold);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(232,210,166,.15);
}
.footer-brand .logo-text strong { color: #fff; }
.footer-brand p {
  color: var(--cream-200);
  opacity: .8;
  font-size: .92rem;
  margin: 18px 0 22px;
  max-width: 320px;
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: grid; place-items: center;
  color: var(--gold-400);
  transition: background var(--t-fast), transform var(--t-fast);
}
.footer-social a:hover { background: var(--gold-500); color: var(--ink-950); transform: translateY(-3px); }
.footer-social svg { width: 17px; height: 17px; }

.footer-col h5 {
  font-family: var(--font-body);
  font-size: .82rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 20px;
  font-weight: 600;
}
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a {
  font-size: .92rem;
  color: var(--cream-200);
  opacity: .82;
  transition: color var(--t-fast), padding-left var(--t-fast), opacity var(--t-fast);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer-col a:hover { color: var(--gold-400); opacity: 1; padding-left: 4px; }

.footer-contact li {
  font-size: .92rem;
  opacity: .85;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 13px;
}
.footer-contact svg { width: 17px; height: 17px; color: var(--gold-400); flex: none; margin-top: 2px; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 24px 0 34px;
  font-size: .82rem;
  opacity: .75;
  flex-wrap: wrap;
}
.footer-bottom-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-bottom-links a:hover { color: var(--gold-400); }

/* ============== BOTÓN FLOTANTE WHATSAPP ============== */
.fab-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--wa-green);
  color: #fff;
  display: grid;
  place-items: center;
  z-index: 800;
  box-shadow: 0 10px 26px rgba(37,211,102,.45);
  animation: pulseRing 2.4s infinite;
  transition: transform var(--t-base);
}
.fab-whatsapp:hover { transform: scale(1.08) rotate(6deg); }
.fab-whatsapp svg { width: 30px; height: 30px; }

/* ============== BREADCRUMBS ============== */
.breadcrumbs {
  padding: 22px 0;
  font-size: .85rem;
  color: var(--ink-500);
}
.breadcrumbs ol { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.breadcrumbs a:hover { color: var(--wine-600); }
.breadcrumbs li { display: inline-flex; align-items: center; gap: 8px; }
.breadcrumbs svg { width: 12px; height: 12px; opacity: .6; }
.breadcrumbs li:last-child { color: var(--ink-800); font-weight: 500; }

/* ============== PAGE HEADER (interior) ============== */
.page-hero {
  background: var(--grad-wine-deep);
  color: #fff;
  padding: clamp(50px, 7vw, 90px) 0;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(200,155,77,.22), transparent 50%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; max-width: 820px; }
.page-hero .eyebrow { color: var(--gold-400); }
.page-hero .eyebrow::before { background: var(--gold-400); }
.page-hero h1 { color: #fff; margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,.85); font-size: 1.08rem; max-width: 620px; }
.page-hero .breadcrumbs { color: rgba(255,255,255,.7); padding: 0 0 18px; }
.page-hero .breadcrumbs a:hover { color: var(--gold-400); }
.page-hero .breadcrumbs li:last-child { color: #fff; }

/* ============== HERO INICIO ============== */
.hero {
  position: relative;
  min-height: clamp(620px, 92vh, 920px);
  display: flex;
  align-items: center;
  background: var(--grad-wine-deep);
  color: #fff;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .35;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(20,17,15,.92) 0%, rgba(58,10,18,.75) 45%, rgba(20,17,15,.4) 100%);
}
.hero .container { position: relative; z-index: 2; }
.hero-content { max-width: 680px; }
.hero .eyebrow { color: var(--gold-400); }
.hero .eyebrow::before { background: var(--gold-400); }
.hero h1 {
  color: #fff;
  margin-bottom: 22px;
  font-weight: 600;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-400);
  font-weight: 500;
}
.hero-lead {
  font-size: 1.15rem;
  color: rgba(255,255,255,.88);
  margin-bottom: 34px;
  max-width: 560px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 50px; }

.hero-value-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding-top: 34px;
  border-top: 1px solid rgba(232,210,166,.25);
}
.hero-value {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hero-value svg { width: 26px; height: 26px; color: var(--gold-400); }
.hero-value strong { font-size: .95rem; font-weight: 600; color: #fff; }
.hero-value span { font-size: .82rem; color: rgba(255,255,255,.7); }

/* Sello */
.hero-seal {
  position: absolute;
  right: 6%;
  top: 18%;
  width: 150px; height: 150px;
  z-index: 3;
  animation: floaty 6s ease-in-out infinite;
}
.hero-seal-text {
  width: 100%; height: 100%;
  animation: spin 22s linear infinite;
}
.hero-seal-center {
  position: absolute;
  inset: 0;
  display: grid; place-items: center;
  color: var(--gold-400);
}
.hero-seal-center svg { width: 36px; height: 36px; }

/* ============== CATEGORÍAS ============== */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.cat-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  display: flex;
  align-items: flex-end;
  color: #fff;
  isolation: isolate;
  box-shadow: var(--shadow-md);
}
.cat-card img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform .8s cubic-bezier(.22,1,.36,1);
}
.cat-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, transparent 35%, rgba(20,17,15,.85) 100%);
}
.cat-card:hover img { transform: scale(1.08); }
.cat-card:hover .cat-arrow { transform: translate(4px, -4px); background: var(--gold-500); color: var(--ink-950); }
.cat-body { padding: 26px 24px; width: 100%; }
.cat-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 11px;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(8px);
  font-size: .72rem;
  font-weight: 600;
  color: var(--gold-400);
  margin-bottom: 12px;
  border: 1px solid rgba(232,210,166,.3);
}
.cat-body h3 { color: #fff; font-size: 1.7rem; margin-bottom: 8px; }
.cat-body p { color: rgba(255,255,255,.82); font-size: .88rem; margin-bottom: 16px; }
.cat-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: .85rem;
  color: #fff;
  transition: transform var(--t-base), background var(--t-base), color var(--t-base);
}
.cat-arrow svg { width: 16px; height: 16px; }

/* ============== TARJETAS DE PRODUCTO ============== */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.product-card {
  background: #fff;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--cream-200);
  transition: transform var(--t-base), box-shadow var(--t-base);
  display: flex;
  flex-direction: column;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-card:hover .product-img img { transform: scale(1.07); }
.product-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--cream-100);
}
.product-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.22,1,.36,1);
}
.product-img .badges {
  position: absolute;
  top: 12px; left: 12px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.product-fav {
  position: absolute;
  top: 12px; right: 12px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  display: grid; place-items: center;
  color: var(--ink-500);
  transition: color var(--t-fast), transform var(--t-fast);
  backdrop-filter: blur(6px);
}
.product-fav:hover, .product-fav.active { color: var(--wine-600); transform: scale(1.1); }
.product-fav svg { width: 18px; height: 18px; }
.product-body { padding: 18px 18px 20px; display: flex; flex-direction: column; flex: 1; }
.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .74rem;
  color: var(--ink-400);
  margin-bottom: 6px;
}
.product-meta .cat { color: var(--gold-700); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.product-name {
  font-family: var(--font-display);
  font-size: 1.18rem;
  color: var(--ink-900);
  margin-bottom: 6px;
}
.product-desc { font-size: .85rem; color: var(--ink-500); margin-bottom: 14px; flex: 1; }
.product-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  padding-top: 14px;
  border-top: 1px dashed var(--ink-100);
}
.product-price {
  font-size: .82rem;
  color: var(--ink-500);
  font-weight: 500;
}
.product-price strong { display: block; font-family: var(--font-display); font-size: 1.05rem; color: var(--wine-600); }
.product-actions { display: flex; gap: 8px; }
.product-actions .btn { flex: 1; padding: 11px 14px; font-size: .84rem; }

/* Vista lista del catálogo */
.catalog.list-view .product-grid { grid-template-columns: 1fr; }
.catalog.list-view .product-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  overflow: hidden;
}
.catalog.list-view .product-img { aspect-ratio: auto; height: 100%; }
.catalog.list-view .product-body { padding: 22px 26px; }
.catalog.list-view .product-desc { margin-bottom: 18px; }

/* ============== FORMULARIOS ============== */
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--ink-700);
  margin-bottom: 7px;
}
.field label .req { color: var(--wine-600); }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--ink-200);
  border-radius: var(--r-sm);
  background: #fff;
  font-size: .95rem;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--wine-500);
  box-shadow: 0 0 0 4px rgba(168,35,58,.1);
}
.field input.error,
.field select.error,
.field textarea.error {
  border-color: var(--red-600);
  background: var(--red-100);
}
.field-error {
  font-size: .78rem;
  color: var(--red-600);
  margin-top: 5px;
  display: none;
  align-items: center;
  gap: 5px;
}
.field.error-input .field-error { display: flex; }
.field.error-input input,
.field.error-input select,
.field.error-input textarea { border-color: var(--red-600); background: var(--red-100); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field-hint { font-size: .78rem; color: var(--ink-400); margin-top: 5px; }
.check-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .88rem;
  color: var(--ink-600);
  padding: 8px 0;
  cursor: pointer;
}
.check-line input { width: 18px; height: 18px; accent-color: var(--wine-600); flex: none; margin-top: 2px; }

.form-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--cream-200);
}

/* ============== STEPPER CANTIDAD ============== */
.stepper {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--ink-200);
  border-radius: var(--r-pill);
  overflow: hidden;
  background: #fff;
}
.stepper button {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  color: var(--ink-700);
  font-size: 1.2rem;
  transition: background var(--t-fast), color var(--t-fast);
}
.stepper button:hover { background: var(--wine-600); color: #fff; }
.stepper input {
  width: 60px;
  text-align: center;
  border: none;
  font-weight: 600;
  font-size: 1rem;
  background: transparent;
}
.stepper input:focus { outline: none; }

/* Pills de presentación / peso */
.pill-group { display: flex; flex-wrap: wrap; gap: 8px; }
.pill {
  padding: 9px 16px;
  border: 1.5px solid var(--ink-200);
  border-radius: var(--r-pill);
  font-size: .85rem;
  font-weight: 500;
  color: var(--ink-700);
  background: #fff;
  transition: all var(--t-fast);
  cursor: pointer;
}
.pill:hover { border-color: var(--wine-500); color: var(--wine-600); }
.pill.active {
  background: var(--wine-600);
  border-color: var(--wine-600);
  color: #fff;
  box-shadow: var(--shadow-wine);
}

/* ============== ACORDEÓN FAQ ============== */
.accordion { max-width: 820px; margin: 0 auto; }
.accordion-item {
  background: #fff;
  border-radius: var(--r-md);
  margin-bottom: 14px;
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--cream-200);
  overflow: hidden;
}
.accordion-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--ink-900);
  text-align: left;
  font-weight: 500;
}
.accordion-q .acc-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--cream-100);
  display: grid; place-items: center;
  flex: none;
  transition: background var(--t-base), transform var(--t-base), color var(--t-base);
}
.accordion-item.open .acc-icon { background: var(--wine-600); color: #fff; transform: rotate(45deg); }
.accordion-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-slow);
}
.accordion-a p { padding: 0 24px 22px; color: var(--ink-500); font-size: .96rem; }

/* ============== SECCIÓN PROCESO ============== */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; position: relative; }
.process-step {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 32px 26px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--cream-200);
  position: relative;
}
.process-step::before {
  content: attr(data-step);
  position: absolute;
  top: -18px; left: 50%;
  transform: translateX(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--grad-gold);
  color: var(--ink-950);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  display: grid; place-items: center;
  box-shadow: var(--shadow-gold);
  border: 3px solid var(--cream-50);
}
.process-step .icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--cream-100);
  display: grid; place-items: center;
  margin: 14px auto 18px;
  color: var(--wine-600);
}
.process-step .icon svg { width: 28px; height: 28px; }
.process-step h4 { margin-bottom: 8px; }
.process-step p { font-size: .88rem; }

/* ============== STATS ============== */
.stats-strip {
  background: var(--ink-950);
  color: #fff;
  border-radius: var(--r-xl);
  padding: clamp(36px, 5vw, 56px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  overflow: hidden;
}
.stats-strip::before {
  content: "";
  position: absolute;
  top: -50%; right: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(200,155,77,.18), transparent 60%);
}
.stat { position: relative; z-index: 1; text-align: center; }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  color: var(--gold-400);
  line-height: 1;
  margin-bottom: 6px;
  font-weight: 600;
}
.stat-label {
  font-size: .86rem;
  color: rgba(255,255,255,.78);
  letter-spacing: .04em;
}

/* ============== TESTIMONIOS ============== */
.testimonial-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--cream-200);
  position: relative;
}
.testimonial-card .quote-mark {
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: .6;
  color: var(--gold-300);
  position: absolute;
  top: 26px; right: 26px;
}
.stars { display: flex; gap: 3px; color: var(--gold-500); margin-bottom: 16px; }
.stars svg { width: 18px; height: 18px; }
.testimonial-card blockquote {
  font-size: 1rem;
  color: var(--ink-700);
  font-style: italic;
  margin-bottom: 22px;
  line-height: 1.7;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-author img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
.testimonial-author strong { display: block; font-size: .95rem; color: var(--ink-900); }
.testimonial-author span { font-size: .82rem; color: var(--ink-500); }

/* ============== MARCAS ============== */
.brands-strip { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 50px; padding: 20px 0; }
.brand-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--ink-300);
  font-weight: 600;
  letter-spacing: .03em;
  transition: color var(--t-base), transform var(--t-base);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  opacity: .8;
}
.brand-logo:hover { color: var(--wine-600); transform: translateY(-3px); opacity: 1; }
.brand-logo svg { width: 22px; height: 22px; }

/* ============== BENEFICIOS ============== */
.benefit-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--cream-200);
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.benefit-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.benefit-icon {
  width: 58px; height: 58px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--wine-600), var(--wine-800));
  color: var(--gold-400);
  display: grid; place-items: center;
  margin-bottom: 20px;
}
.benefit-icon svg { width: 26px; height: 26px; }
.benefit-card h4 { margin-bottom: 10px; font-size: 1.15rem; }
.benefit-card p { font-size: .9rem; }

/* ============== NEWSLETTER ============== */
.newsletter {
  background: var(--grad-gold);
  border-radius: var(--r-xl);
  padding: clamp(36px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.newsletter::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 90% 10%, rgba(255,255,255,.25), transparent 50%);
}
.newsletter > * { position: relative; z-index: 1; }
.newsletter h3 { color: var(--ink-950); margin-bottom: 10px; font-size: 2rem; }
.newsletter p { color: var(--ink-800); margin-bottom: 0; }
.newsletter-form { display: flex; gap: 10px; background: rgba(255,255,255,.85); padding: 8px; border-radius: var(--r-pill); }
.newsletter-form input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 10px 18px;
  font-size: .95rem;
}
.newsletter-form input:focus { outline: none; }

/* ============== UTILIDADES EXTRA ============== */
.empty-state {
  text-align: center;
  padding: 60px 24px;
  background: #fff;
  border-radius: var(--r-lg);
  border: 2px dashed var(--ink-200);
}
.empty-state .icon {
  width: 90px; height: 90px;
  border-radius: 50%;
  background: var(--cream-100);
  color: var(--ink-400);
  display: grid; place-items: center;
  margin: 0 auto 22px;
}
.empty-state .icon svg { width: 40px; height: 40px; }
.empty-state h4 { margin-bottom: 10px; }
.empty-state p { margin-bottom: 22px; }

.divider-gold {
  width: 80px; height: 3px;
  background: var(--grad-gold);
  border-radius: 999px;
  margin: 14px 0 22px;
}
.divider-gold.center { margin-inline: auto; }

/* Tag de categoría en filtros */
.filter-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: var(--wine-100, #f7e0e4);
  color: var(--wine-700);
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 500;
}
.filter-tag button { color: inherit; opacity: .7; display: inline-flex; }
.filter-tag button:hover { opacity: 1; }
.filter-tag svg { width: 12px; height: 12px; }

/* Avatar */
.avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--grad-wine);
  color: var(--gold-400);
  display: grid; place-items: center;
  font-weight: 700;
  font-family: var(--font-display);
}

/* Icono genérico inline */
.icon-sm { width: 18px; height: 18px; }
.icon-md { width: 24px; height: 24px; }
.icon-lg { width: 36px; height: 36px; }
