/* ============================================================
   POCHY'S DECANTS — ESTILOS
  Paleta: gris piedra · verde profundo · acentos ciruela
   Tipografía: Cormorant Garamond (display) + Jost (texto)
   ============================================================ */

:root {
  --white: #f7f6f2;
  --off-white: #d8d5cf;
  --stone: #c9c6bf;
  --petrol: #173f40;
  --petrol-soft: #286466;
  --purple: #50465f;
  --purple-soft: #6b607b;
  --ink: #202525;
  --muted: #697474;
  --line: rgba(23, 63, 64, 0.14);
  --glass: rgba(247, 246, 242, 0.52);
  --glass-strong: rgba(247, 246, 242, 0.78);
  --glass-border: rgba(255, 255, 255, 0.66);
  --shadow-soft: 0 18px 55px rgba(26, 55, 55, 0.12);

  --font-display: "Bellavoir Serif Personal Use", "Times New Roman", serif;
  --font-body: "Futurist Fixed-Width", "Courier New", monospace;

  --radius: 14px;
  --container: 1240px;
  --header-h: 76px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

@font-face {
  font-family: "Bellavoir Serif Personal Use";
  src: url("../fonts/Bellavoir-Serif-Personal-Use.otf") format("opentype");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}

@font-face {
  font-family: "Futurist Fixed-Width";
  src: url("../fonts/Futurist-Fixed-Width.otf") format("opentype");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 12%, rgba(185, 205, 196, 0.22), transparent 28rem),
    radial-gradient(circle at 92% 36%, rgba(210, 198, 213, 0.18), transparent 32rem),
    var(--off-white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; margin: 0; padding: 0; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.topbar {
  background: var(--petrol);
  color: rgba(247,246,242,0.92);
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.03em;
  padding: 6px 18px;
}
.topbar span { opacity: 0.5; margin: 0 12px; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--petrol);
  margin: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--purple);
  font-weight: 500;
  margin-bottom: 14px;
}

.section {
  padding: 96px 0;
}
.section--tight { padding: 64px 0; }
.section--petrol {
  background:
    radial-gradient(circle at 88% 20%, rgba(119, 158, 150, 0.3), transparent 24rem),
    linear-gradient(135deg, #173f40, #102f32);
  color: var(--white);
}
.section--petrol h2 { color: var(--white); }
.section--offwhite { background: rgba(201, 198, 191, 0.52); }
.section--offwhite {
  background:
    linear-gradient(135deg, rgba(255,255,255,0.72), rgba(235,237,232,0.72)),
    var(--off-white);
}

.section-head {
  max-width: 620px;
  margin: 0 auto 48px;
  text-align: center;
}
.section-head h2 { font-size: 38px; margin-bottom: 14px; }
.section-head p { color: var(--muted); font-size: 16px; }
.section--petrol .section-head p { color: rgba(255,255,255,0.78); }

.section-head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}
.section-head-row h2 { font-size: 34px; margin-bottom: 10px; }
.section-head-row p { color: var(--muted); margin: 0; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: var(--radius);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(23, 63, 64, 0.08);
  white-space: nowrap;
}
.btn-primary { background: linear-gradient(135deg, var(--petrol), #285e5d); color: var(--white); }
.btn-primary:hover { background: var(--petrol-soft); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(23, 63, 64, 0.2); }
.btn-outline { border-color: var(--line); color: var(--petrol); background: var(--glass); backdrop-filter: blur(12px); }
.btn-outline:hover { background: var(--petrol); color: var(--white); transform: translateY(-2px); }
.btn-white { background: var(--white); color: var(--petrol); }
.btn-white:hover { background: var(--off-white); }
.btn-purple { background: var(--purple); color: var(--white); }
.btn-purple:hover { background: var(--purple-soft); }
.btn-link {
  color: var(--petrol);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--petrol);
  padding-bottom: 3px;
}
.btn-block { width: 100%; justify-content: center; }
.btn[disabled] { opacity: 0.4; pointer-events: none; }

/* ============ HEADER ============ */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(246, 247, 244, 0.72);
  backdrop-filter: blur(22px) saturate(135%);
  -webkit-backdrop-filter: blur(22px) saturate(135%);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 8px 30px rgba(23, 63, 64, 0.06);
  height: var(--header-h);
}
.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--petrol);
  text-shadow: 0 1px 0 rgba(255,255,255,0.8);
  font-weight: 600;
}
.main-nav { display: flex; gap: 34px; }
.main-nav a {
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
}
.main-nav a:hover { color: var(--petrol); }
.header-actions { display: flex; align-items: center; gap: 18px; }
.icon-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  color: var(--petrol);
  background: rgba(255,255,255,0.34);
  border: 1px solid rgba(255,255,255,0.64);
  border-radius: 50%;
  transition: background 0.2s ease, transform 0.2s ease;
}
.icon-btn:hover { background: rgba(255,255,255,0.78); transform: translateY(-1px); }
.icon-btn svg { width: 21px; height: 21px; }
.cart-count {
  position: absolute;
  top: 0; right: 0;
  background: var(--purple);
  color: var(--white);
  font-size: 10px;
  font-weight: 600;
  min-width: 16px; height: 16px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  display: none;
}
.menu-toggle { display: none; }

.search-bar {
  position: absolute;
  left: 0; right: 0; top: var(--header-h);
  background: rgba(246, 247, 244, 0.84);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-bottom: 1px solid var(--glass-border);
  padding: 16px 0;
  display: none;
}
.search-bar.open { display: block; }
.search-bar input {
  width: 100%;
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  background: var(--glass-strong);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 15px;
}
.search-bar input:focus { outline: 1px solid var(--petrol); }

/* Mobile nav drawer */
.mobile-nav {
  position: fixed; inset: 0;
  background: rgba(242, 245, 241, 0.88);
  backdrop-filter: blur(24px) saturate(130%);
  -webkit-backdrop-filter: blur(24px) saturate(130%);
  z-index: 900;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  padding: 24px;
  overflow-y: auto;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; }
.mobile-nav a {
  display: block;
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--petrol);
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 350px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  max-width: 1140px;
  background: #d9d3c9;
  border-radius: 22px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  z-index: 0;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 1;
}
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(217,211,201,0.12) 0%, rgba(217,211,201,0.04) 52%, rgba(217,211,201,0.12) 100%);
}
.hero .container { width: 100%; }
.hero .container { position: relative; z-index: 2; }
.hero-panel { position: relative; min-height: 350px; }
.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 540px;
  padding: 38px 0 38px 46px;
}
.hero-content .eyebrow { color: var(--petrol); }
.hero-content h1 {
  max-width: 470px;
  font-size: clamp(42px, 5vw, 58px);
  line-height: 0.94;
  letter-spacing: -0.01em;
  margin-bottom: 26px;
}
.hero-content p {
  font-size: 16px;
  color: var(--muted);
  max-width: 440px;
  margin-bottom: 34px;
}
.hero-actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.hero-actions .btn-link { color: var(--petrol); }
.hero-signature {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 300px;
  margin-top: 84px;
  padding-top: 14px;
  border-top: 1px solid rgba(23,63,64,0.28);
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero-signature span:first-child { color: var(--petrol); font-weight: 600; }
.hero-benefits {
  position: absolute;
  z-index: 3;
  top: 0;
  right: -28px;
  bottom: 0;
  width: 276px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 22px;
  background: rgba(242, 238, 231, 0.84);
  border-left: 1px solid rgba(255,255,255,0.48);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.hero-benefit { display: flex; align-items: center; gap: 14px; padding: 17px 0; border-bottom: 1px solid rgba(23,63,64,0.15); }
.hero-benefit:last-child { border-bottom: 0; }
.benefit-mark { display: grid; place-items: center; width: 44px; height: 44px; flex: 0 0 44px; border-radius: 50%; background: rgba(247,246,242,0.7); color: var(--petrol); font-size: 24px; }
.hero-benefit strong, .hero-benefit small { display: block; }
.hero-benefit strong { font-family: var(--font-display); font-size: 16px; font-weight: 600; color: var(--ink); }
.hero-benefit small { color: var(--muted); font-size: 11px; margin-top: 2px; }
.trust-strip { background: rgba(247,246,242,0.58); border-bottom: 1px solid rgba(23,63,64,0.12); }
.trust-strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); padding: 12px 24px; }
.trust-strip-grid div { display: flex; align-items: center; justify-content: center; gap: 12px; min-height: 34px; border-right: 1px solid rgba(23,63,64,0.16); font-family: var(--font-display); font-size: 14px; color: var(--ink); }
.trust-strip-grid strong { font-weight: 500; }
.trust-strip-grid small { display: none; }
.trust-strip-grid div:last-child { border-right: 0; }
.trust-strip-grid span { color: var(--petrol); font-size: 20px; }

/* ============ PRESENTACION ============ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-grid img { border-radius: var(--radius); }
.about-grid h2 { font-size: 34px; margin-bottom: 20px; }
.about-grid p { color: var(--muted); margin-bottom: 16px; font-size: 16px; }

/* ============ BENEFICIOS ============ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.benefit-card { text-align: center; padding: 12px; }
.benefit-icon {
  width: 52px; height: 52px;
  margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--petrol);
  border-radius: 50%;
  color: var(--petrol);
}
.benefit-icon svg { width: 24px; height: 24px; }
.benefit-card h3 { font-size: 19px; color: var(--ink); font-family: var(--font-body); font-weight: 600; margin-bottom: 8px; }
.benefit-card p { color: var(--muted); font-size: 14px; margin: 0; }

/* ============ PRODUCT GRID / CARD ============ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.catalog-brand-group { display: block; margin-bottom: 54px; }
.brand-banner {
  position: relative;
  height: 150px;
  margin-bottom: 20px;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  background-color: var(--stone);
  background-position: center 42%;
  background-size: cover;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(23,63,64,0.08);
}
.brand-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(23,63,64,0.64), rgba(23,63,64,0.08) 70%);
}
.brand-banner-name {
  position: absolute;
  z-index: 1;
  left: 26px;
  bottom: 20px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 34px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.2);
}
.catalog-brand-heading { display: flex; align-items: center; gap: 14px; margin: 0 0 20px; color: var(--petrol); }
.brand-logo {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border: 1px solid rgba(23,63,64,0.32);
  border-radius: 50%;
  background: rgba(247,246,242,0.64);
  color: var(--petrol);
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 0.08em;
}
.brand-heading-name { font-family: var(--font-display); font-size: 28px; }
.catalog-brand-heading::after { content: ""; height: 1px; flex: 1; background: var(--line); }
.catalog-layout #catalogGrid { display: block; }
.catalog-layout #catalogGrid > .catalog-brand-group > .product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.product-card {
  display: flex;
  flex-direction: column;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(23, 63, 64, 0.06);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.product-card:hover { box-shadow: var(--shadow-soft); transform: translateY(-6px); }
.product-card-img {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: rgba(201, 198, 191, 0.58);
}
.product-card-img img { width: 100%; height: 100%; object-fit: cover; }
.product-tag {
  position: absolute; top: 12px; left: 12px;
  background: rgba(80, 70, 95, 0.82);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  color: var(--white);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 10px;
}
.product-card-body { padding: 18px 18px 22px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.product-brand { font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); }
.product-name { font-family: var(--font-display); font-size: 21px; color: var(--ink); }
.product-desc,
.product-ml-list,
.product-price,
.product-options {
  font-family: "Trebuchet MS", Arial, sans-serif;
}
.product-desc { font-size: 13px; color: var(--muted); margin-bottom: 6px; }
.product-ml-list { font-size: 12px; color: var(--muted); margin-bottom: 4px; }
.product-price { font-size: 18px; color: var(--petrol); margin-top: auto; }
.product-price span { font-size: 12px; font-family: "Trebuchet MS", Arial, sans-serif; color: var(--muted); display: block; text-transform: uppercase; letter-spacing: 0.05em; }
.product-options { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.04em; margin-top: -2px; }
.product-card .btn { margin-top: 12px; }

/* ============ CATEGORIAS ============ */
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.category-tile {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  aspect-ratio: 1.6/1;
  background-color: var(--stone);
  background-size: cover;
  background-position: center;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(23, 63, 64, 0.06);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--petrol);
  transition: background 0.25s ease, color 0.25s ease;
}
.category-tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(23,63,64,0.05), rgba(23,63,64,0.62)); transition: background 0.25s ease; }
.category-tile span { position: relative; z-index: 1; color: var(--white); text-shadow: 0 2px 12px rgba(0,0,0,0.35); }
.category-tile:hover { color: var(--white); transform: translateY(-3px); }
.category-tile:hover::after { background: linear-gradient(180deg, rgba(23,63,64,0.18), rgba(23,63,64,0.78)); }

/* ============ COLECCION TEMPORADA ============ */
.season-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
}
.season-banner img { aspect-ratio: 4/3; object-fit: cover; }
.season-banner img { border-radius: var(--radius); box-shadow: var(--shadow-soft); }
.season-copy p { color: rgba(255,255,255,0.78); margin-bottom: 30px; font-size: 16px; max-width: 420px; }

/* ============ MARCAS ============ */
.brand-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.brand-pill {
  border: 1px solid var(--glass-border);
  background: var(--glass);
  border-radius: 999px;
  backdrop-filter: blur(12px);
  padding: 12px 24px;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--petrol);
}
.brand-pill:hover { background: var(--petrol); color: var(--white); border-color: var(--petrol); }

/* ============ CONFIANZA ============ */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.trust-card h3 { font-size: 18px; color: var(--petrol); font-family: var(--font-body); font-weight: 600; margin-bottom: 8px; }
.trust-card p { color: var(--muted); font-size: 14px; margin: 0; }
.trust-card .num { font-family: var(--font-display); font-size: 30px; color: var(--purple); margin-bottom: 10px; display: block; }

/* ============ CTA ARMA TU SELECCION ============ */
.cta-strip {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.cta-strip p { color: var(--muted); font-size: 16px; margin-bottom: 30px; }

/* ============ NEWSLETTER ============ */
.newsletter {
  background: linear-gradient(135deg, rgba(227, 235, 229, 0.9), rgba(241, 235, 239, 0.78));
  text-align: center;
}
.newsletter-form {
  display: flex;
  max-width: 440px;
  margin: 28px auto 0;
  gap: 10px;
}
.newsletter-form input {
  flex: 1;
  padding: 14px 16px;
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  background: var(--glass-strong);
  font-family: var(--font-body);
  font-size: 14px;
}
.newsletter-form input:focus { outline: 1px solid var(--petrol); }

/* ============ FOOTER ============ */
footer.site-footer {
  background: var(--petrol);
  color: rgba(255,255,255,0.85);
  padding: 72px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.footer-logo { font-family: var(--font-display); font-size: 22px; color: var(--white); margin-bottom: 14px; }
.footer-grid p { font-size: 14px; color: rgba(255,255,255,0.7); }
.footer-col h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 18px;
  font-weight: 500;
}
.footer-col a, .footer-col span {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.72);
  margin-bottom: 12px;
}
.footer-col a:hover { color: var(--white); }
.footer-social { display: flex; gap: 14px; margin-top: 4px; }
.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
}

/* ============ WHATSAPP FLOAT ============ */
.wa-float {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #1fae5c;
  color: var(--white);
  padding: 14px 18px;
  border-radius: 40px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.22);
  font-size: 13px;
  font-weight: 500;
}
.wa-float svg { width: 20px; height: 20px; flex-shrink: 0; }
.wa-float span { display: none; }
@media (min-width: 640px) { .wa-float span { display: inline; } }

/* ============ CART DRAWER ============ */
.overlay {
  position: fixed; inset: 0;
  background: rgba(2,62,63,0.35);
  z-index: 800;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.overlay.open { opacity: 1; pointer-events: auto; }

.cart-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 420px;
  max-width: 92vw;
  background: rgba(246, 248, 245, 0.88);
  backdrop-filter: blur(24px) saturate(130%);
  -webkit-backdrop-filter: blur(24px) saturate(130%);
  z-index: 850;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}
.cart-drawer.open { transform: translateX(0); }
.cart-drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
}
.cart-drawer-head h3 { font-size: 20px; color: var(--petrol); }
.cart-drawer-close { background: none; border: none; font-size: 22px; color: var(--petrol); line-height: 1; }
.cart-drawer-summary {
  padding: 14px 24px;
  background: rgba(201, 198, 191, 0.58);
  font-size: 13px;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
}
.cart-drawer-items { flex: 1; overflow-y: auto; padding: 8px 24px; }
.cart-empty { text-align: center; padding: 60px 20px; color: var(--muted); font-size: 14px; }
.cart-item {
  display: flex; gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.cart-item img { width: 64px; height: 64px; object-fit: cover; border-radius: var(--radius); background: var(--off-white); }
.cart-item-info { flex: 1; }
.cart-item-info .name { font-family: var(--font-display); font-size: 16px; color: var(--ink); }
.cart-item-info .meta { font-size: 12px; color: var(--muted); margin: 2px 0 8px; }
.cart-item-qty { display: flex; align-items: center; gap: 10px; }
.qty-btn {
  width: 24px; height: 24px;
  border: 1px solid var(--line);
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--petrol);
}
.cart-item-price { font-size: 13px; color: var(--petrol); font-weight: 500; white-space: nowrap; }
.cart-item-remove { font-size: 11px; color: var(--muted); text-decoration: underline; margin-top: 8px; display: inline-block; }

.cart-drawer-footer {
  border-top: 1px solid var(--line);
  padding: 20px 24px 24px;
}
.cart-total-row {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 4px;
}
.cart-total-row.grand { margin: 10px 0 18px; }
.cart-total-row .label { font-size: 13px; color: var(--muted); }
.cart-total-row.grand .label { font-size: 15px; color: var(--ink); }
.cart-total-row .value { font-family: var(--font-display); font-size: 17px; color: var(--petrol); }
.cart-total-row.grand .value { font-size: 24px; }
.cart-disclaimer { font-size: 11px; color: var(--muted); margin-bottom: 14px; line-height: 1.5; }
.cart-drawer,
.cart-drawer-summary,
.cart-drawer-items,
.cart-item-price,
.cart-item-qty,
.cart-total-row,
.cart-disclaimer {
  font-family: "Trebuchet MS", Arial, sans-serif;
  letter-spacing: 0;
}
.cart-total-row .value,
.cart-total-row.grand .value {
  font-family: "Trebuchet MS", Arial, sans-serif;
  letter-spacing: 0;
}

/* ============ AVISO DE POLITICA DE ENVIO ============ */
.shipping-notice {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(52,66,58,0.42);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.shipping-notice.open { opacity: 1; pointer-events: auto; }
.shipping-notice-card {
  position: relative;
  width: min(560px, 100%);
  padding: 42px 42px 38px;
  background: #efede8;
  border: 1px solid rgba(255,255,255,0.78);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(35,46,38,0.2);
  transform: translateY(12px);
  transition: transform 0.3s ease;
}
.shipping-notice.open .shipping-notice-card { transform: translateY(0); }
.shipping-notice-card .eyebrow { color: #687660; letter-spacing: 0; }
.shipping-notice-card h2 {
  max-width: 420px;
  margin: 10px 0 18px;
  color: #34423a;
  font-family: var(--font-body);
  font-size: clamp(30px, 5vw, 46px);
  line-height: 1.02;
  letter-spacing: -0.07em;
  word-spacing: -0.08em;
}
.shipping-notice-card p {
  margin: 0 0 14px;
  color: #686762;
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.6;
}
.shipping-notice-close {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(82,98,79,0.22);
  border-radius: 50%;
  background: transparent;
  color: #52624f;
  font-size: 22px;
  line-height: 1;
}
.shipping-notice-accept {
  margin-top: 14px;
  background: #87917b;
  box-shadow: none;
  letter-spacing: 0;
}
@media (max-width: 600px) {
  .shipping-notice-card { padding: 38px 24px 28px; }
  .shipping-notice-card h2 { font-size: 34px; }
}

/* ============ PAGE HEADER (catalogo / producto) ============ */
.page-head {
  background: var(--off-white);
  padding: 56px 0 40px;
  text-align: center;
}
.page-head h1 { font-size: 40px; margin-bottom: 10px; }
.page-head p { color: var(--muted); }

/* ============ CATALOGO ============ */
.catalog-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 44px;
  align-items: flex-start;
}
.filters {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  max-height: calc(100vh - var(--header-h) - 54px);
  overflow-y: auto;
  padding-right: 8px;
}
.filters::-webkit-scrollbar {
  width: 8px;
}
.filters::-webkit-scrollbar-thumb {
  background: rgba(23, 63, 64, 0.2);
  border-radius: 999px;
}
.filter-group { margin-bottom: 28px; }
.filter-group h4 {
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--petrol); margin-bottom: 14px;
}
.filter-option { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; font-size: 14px; color: var(--muted); }
.filter-option input { accent-color: var(--petrol); }
.clear-filters { font-size: 12px; color: var(--purple); text-decoration: underline; }

.catalog-toolbar {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 26px; gap: 16px; flex-wrap: wrap;
}
.catalog-toolbar-tools {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.catalog-search { display: flex; align-items: center; gap: 8px; border: 1px solid var(--glass-border); background: var(--glass); backdrop-filter: blur(12px); padding: 10px 14px; flex: 1; max-width: 340px; border-radius: 999px; }
.catalog-search input { border: none; outline: none; font-family: var(--font-body); font-size: 14px; width: 100%; }
.sort-select,
.brand-select {
  border: 1px solid var(--line);
  padding: 10px 14px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--ink);
  background: var(--glass-strong);
  border-radius: 999px;
}
.mobile-only { display: none; }
.no-results { text-align: center; padding: 60px 0; color: var(--muted); }

/* ============ PRODUCTO INDIVIDUAL ============ */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.product-gallery-main { aspect-ratio: 4/5; overflow: hidden; margin-bottom: 12px; background: var(--off-white); border-radius: var(--radius); box-shadow: var(--shadow-soft); }
.product-gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.product-gallery-thumbs { display: flex; gap: 10px; }
.product-gallery-thumbs img { width: 76px; height: 76px; object-fit: cover; cursor: pointer; border: 1px solid var(--line); opacity: 0.7; }
.product-gallery-thumbs img.active { opacity: 1; border-color: var(--petrol); }

.product-info .product-brand { font-size: 13px; }
.product-info h1 { font-size: 38px; margin: 6px 0 14px; }
.product-info .desc { color: var(--muted); margin-bottom: 22px; }
.notes-list { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 30px; }
.note-pill { border: 1px solid var(--glass-border); background: var(--glass); border-radius: 999px; padding: 6px 14px; font-size: 12px; color: var(--petrol); }

.ml-select h4, .qty-select h4 {
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--petrol); margin-bottom: 12px;
}
.ml-options { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 26px; }
.ml-option {
  border: 1px solid var(--line);
  padding: 10px 16px;
  font-size: 13px;
  color: var(--ink);
  background: var(--glass);
  border-radius: 10px;
}
.ml-option .p { display: block; font-size: 11px; color: var(--muted); }
.ml-option.selected { border-color: var(--petrol); background: var(--petrol); color: var(--white); }
.ml-option.selected .p { color: rgba(255,255,255,0.75); }

.qty-select { margin-bottom: 30px; }
.qty-stepper { display: flex; align-items: center; gap: 16px; }
.qty-stepper .qty-btn { width: 38px; height: 38px; font-size: 16px; }
.qty-stepper .qty-value { font-family: var(--font-display); font-size: 20px; min-width: 24px; text-align: center; }

.product-detail-footer { display: flex; align-items: center; gap: 20px; }
.selected-total { font-size: 13px; color: var(--muted); }
.selected-total strong { color: var(--petrol); font-family: var(--font-display); font-size: 17px; }

.related-heading { margin: 100px 0 30px; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .catalog-layout #catalogGrid > .catalog-brand-group > .product-grid { grid-template-columns: repeat(3, 1fr); }
  .catalog-layout { grid-template-columns: 1fr; }
  .filters { position: static; display: none; }
  .filters.open { display: block; }
  .benefits-grid, .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .category-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 780px) {
  :root { --header-h: 64px; }
  body { overflow-x: hidden; }
  .container { padding-left: 18px; padding-right: 18px; }
  header.site-header { height: var(--header-h); }
  .header-inner { height: var(--header-h); gap: 10px; }
  .logo { font-size: 18px; white-space: nowrap; }
  .header-actions { gap: 8px; }
  .icon-btn { width: 40px; height: 40px; }
  .menu-toggle { order: -1; }
  .main-nav, .header-actions .icon-btn.search-desktop { display: none; }
  .menu-toggle { display: flex; }
  .about-grid, .season-banner, .product-detail { grid-template-columns: 1fr; gap: 30px; }
  .about-grid .img-col { order: -1; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .catalog-layout #catalogGrid > .catalog-brand-group > .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .catalog-brand-group { margin-bottom: 36px; }
  .brand-banner { height: 118px; margin-bottom: 16px; }
  .brand-banner-name { left: 18px; bottom: 14px; font-size: 28px; }
  .catalog-brand-heading { gap: 10px; margin-bottom: 14px; }
  .brand-logo { width: 42px; height: 42px; flex-basis: 42px; font-size: 13px; }
  .brand-heading-name { font-size: 25px; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 58px 0; }
  .section-head { margin-bottom: 32px; }
  .section-head h2 { font-size: 34px; }
  .section-head-row { align-items: flex-start; flex-direction: column; gap: 14px; margin-bottom: 28px; }
  .section-head-row h2 { font-size: 32px; }
  .section-head-row p { font-size: 14px; }
  .btn { min-height: 46px; padding: 13px 18px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .hero {
    min-height: 0;
    margin: 0 12px;
    border-radius: 16px;
    align-items: flex-start;
  }
  .hero-bg {
    left: 0;
    top: 0;
    bottom: 0;
    background-position: 72% center;
    background-size: cover;
    opacity: 0.9;
  }
  .hero-bg::after {
    background: linear-gradient(180deg, rgba(217,211,201,0.94) 0%, rgba(217,211,201,0.72) 38%, rgba(217,211,201,0.08) 78%);
  }
  .hero .container { width: 100%; padding: 0; }
  .hero-panel { display: block; min-height: 540px; }
  .hero-content {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 30px 22px 22px;
    background: rgba(231, 226, 216, 0.46);
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(50,55,50,0.08);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  }
  .hero-content h1 { max-width: 360px; font-size: clamp(39px, 10vw, 50px); line-height: 0.96; margin-bottom: 20px; }
  .hero-content p { max-width: 340px; font-size: 14px; line-height: 1.45; margin-bottom: 22px; }
  .hero-actions { gap: 16px; }
  .hero-actions .btn-link { font-size: 12px; }
  .hero-signature { margin-top: 40px; }
  .hero-benefits {
    display: none;
  }
  .hero-benefit { padding: 9px 0; }
  .hero-benefit strong { font-size: 14px; }
  .hero-benefit small { font-size: 10px; }
  .trust-strip-grid { grid-template-columns: repeat(2, 1fr); padding: 8px 18px; }
  .trust-strip-grid div { justify-content: flex-start; padding: 8px 4px; font-size: 12px; }
  .trust-strip-grid div:nth-child(2) { border-right: 0; }
  .about-grid { gap: 24px; }
  .about-grid h2 { font-size: 32px; }
  .benefits-grid, .trust-grid { gap: 18px 12px; }
  .benefit-card { padding: 8px 2px; }
  .benefit-icon { width: 46px; height: 46px; margin-bottom: 12px; }
  .benefit-card h3 { font-size: 16px; line-height: 1.25; }
  .benefit-card p { font-size: 12px; line-height: 1.45; }
  .product-card-body { padding: 14px 12px 16px; }
  .product-name { font-size: 19px; line-height: 1.08; }
  .product-desc { font-size: 12px; line-height: 1.4; }
  .product-card .btn { font-size: 11px; padding: 11px 8px; }
  .product-tag { top: 8px; left: 8px; font-size: 9px; padding: 4px 8px; }
  .catalog-toolbar { align-items: stretch; flex-direction: column; gap: 10px; }
  .catalog-toolbar-tools { width: 100%; display: flex; gap: 8px; }
  .catalog-search { max-width: none; min-height: 46px; }
  .sort-select,
  .brand-select { width: 100%; min-height: 44px; }
  .mobile-only { display: block; }
  .filters { padding: 20px; border: 1px solid var(--glass-border); border-radius: var(--radius); background: var(--glass); }
  .page-head { padding: 40px 0 30px; }
  .page-head h1 { font-size: 36px; }
  .page-head p { font-size: 14px; margin-bottom: 0; }
  .product-info h1 { font-size: 36px; }
  .product-gallery-main { margin-bottom: 10px; }
  .product-gallery-thumbs img { width: 64px; height: 64px; }
  .product-detail-footer { align-items: stretch; flex-direction: column; gap: 14px; }
  .product-detail-footer .btn { width: 100%; justify-content: center; }
  .cart-drawer-head, .cart-drawer-footer { padding-left: 18px; padding-right: 18px; }
  .cart-drawer-items { padding-left: 18px; padding-right: 18px; }
  .wa-float { right: 14px; bottom: calc(14px + env(safe-area-inset-bottom)); padding: 14px; }
  .cart-drawer { width: 100%; max-width: 100%; }
  .newsletter-form { flex-direction: column; }
}

/* ============ MOTION SYSTEM ============ */
@keyframes pageRise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes softReveal {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes imageSettle {
  from { opacity: 0.72; transform: scale(1.025); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes headerReveal {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes wordmarkReveal {
  from { opacity: 0; transform: translateX(-50%) translateY(14px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

body > .page-head,
body > .section:first-of-type {
  animation: pageRise 0.7s ease both;
}
body > header.site-header { animation: headerReveal 0.7s ease both; }

.hero-wordmark { animation: wordmarkReveal 1s 0.12s ease both; }
.editorial-hero .hero-content { animation: softReveal 0.75s 0.22s ease both; }
.editorial-hero .hero-bg { animation: imageSettle 1.1s ease both; }

.home-page .trust-strip--hero,
.home-page .about-grid,
.home-page .benefits-grid,
.home-page .section-head,
.home-page .section-head-row,
.home-page .season-banner,
.home-page .cta-strip,
.home-page .trust-grid,
.home-page .newsletter {
  animation: softReveal 0.7s 0.08s ease both;
}

.product-grid .product-card,
.category-grid .category-tile,
.brand-row .brand-pill,
.catalog-brand-group {
  animation: softReveal 0.6s ease both;
}

.product-grid .product-card:nth-child(2),
.category-grid .category-tile:nth-child(2),
.brand-row .brand-pill:nth-child(2) { animation-delay: 0.06s; }
.product-grid .product-card:nth-child(3),
.category-grid .category-tile:nth-child(3),
.brand-row .brand-pill:nth-child(3) { animation-delay: 0.12s; }
.product-grid .product-card:nth-child(4),
.category-grid .category-tile:nth-child(4),
.brand-row .brand-pill:nth-child(4) { animation-delay: 0.18s; }

.product-card,
.category-tile,
.brand-pill,
.btn,
.icon-btn,
.ml-option,
.qty-btn,
.note-pill {
  transition: transform 0.28s ease, box-shadow 0.28s ease, background-color 0.28s ease, border-color 0.28s ease, color 0.28s ease;
}

.product-card:hover { transform: translateY(-5px); }
.category-tile:hover { transform: translateY(-4px); }
.brand-pill:hover,
.note-pill:hover,
.ml-option:hover { transform: translateY(-2px); }
.btn:hover { transform: translateY(-2px); }

.product-card-img,
.product-gallery-main,
.hero-decant-showcase {
  overflow: hidden;
}
.product-card-img img,
.product-gallery-main img,
.hero-decant-showcase img {
  transition: transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1), filter 0.35s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.035); }
.product-gallery-main:hover img { transform: scale(1.025); }
.hero-decant-showcase:hover img { transform: scale(1.205); }

.catalog-page .brand-banner,
.catalog-page .filters,
.catalog-page .catalog-toolbar {
  animation: softReveal 0.7s ease both;
}
.catalog-page .brand-banner { transition: box-shadow 0.3s ease, transform 0.3s ease; }
.catalog-page .brand-banner:hover { transform: translateY(-3px); box-shadow: 0 18px 34px rgba(72,60,50,0.16); }

.product-page .product-gallery-main,
.product-page .product-info,
.product-page .related-heading {
  animation: softReveal 0.75s ease both;
}
.product-page .product-info { animation-delay: 0.08s; }
.product-page .product-gallery-thumbs { animation: pageRise 0.6s 0.16s ease both; }

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============ INICIO: SECCIONES INFERIORES ============ */
.home-page .section {
  padding: 104px 0;
}
.home-page .section--offwhite {
  background: #e9e6e0;
}
.home-page .section-head,
.home-page .section-head-row {
  margin-bottom: 42px;
}
.home-page .section-head h2,
.home-page .section-head-row h2,
.home-page .about-grid h2,
.home-page .cta-strip h2 {
  color: #34423a;
  font-family: var(--font-body);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.07em;
  word-spacing: -0.08em;
}
.home-page .section-head p,
.home-page .section-head-row p,
.home-page .about-grid p,
.home-page .cta-strip p {
  color: #686762;
  font-family: "Trebuchet MS", Arial, sans-serif;
  line-height: 1.55;
}
.home-page .about-grid {
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(42px, 8vw, 110px);
  align-items: center;
}
.home-page .about-grid .img-col { order: 2; }
.home-page .about-grid img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  mix-blend-mode: multiply;
}
.home-page .about-grid h2 { font-size: clamp(34px, 4vw, 54px); margin-bottom: 22px; }
.home-page .about-grid p { font-size: 14px; margin-bottom: 14px; }
.home-page .about-grid .btn-link,
.home-page .section-head-row .btn-link { color: #62705d; border-color: #87917b; letter-spacing: 0; }
.home-page .benefits-grid { gap: 0; border-top: 1px solid rgba(82,98,79,0.2); border-bottom: 1px solid rgba(82,98,79,0.2); }
.home-page .benefit-card {
  min-height: 210px;
  padding: 34px 26px;
  border-right: 1px solid rgba(82,98,79,0.2);
}
.home-page .benefit-card:last-child { border-right: 0; }
.home-page .benefit-icon {
  width: 46px;
  height: 46px;
  margin: 0 0 24px;
  border-color: #87917b;
  color: #687660;
}
.home-page .benefit-card h3 {
  color: #34423a;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.04em;
  margin-bottom: 10px;
}
.home-page .benefit-card p { color: #77766f; font-family: "Trebuchet MS", Arial, sans-serif; font-size: 13px; }
.home-page .product-grid { gap: 20px; }
.home-page .product-card {
  background: rgba(239,237,232,0.84);
  border-color: rgba(255,255,255,0.7);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(72,60,50,0.08);
}
.home-page .product-card:hover { box-shadow: 0 18px 34px rgba(72,60,50,0.14); }
.home-page .product-card-img { background: #cbc6bd; }
.home-page .product-name { color: #34423a; }
.home-page .product-card .btn { letter-spacing: 0; color: #52624f; border-color: rgba(135,145,123,0.38); box-shadow: none; }
.home-page .product-card .btn:hover { background: #87917b; color: #fff; }
.home-page .category-grid { gap: 14px; }
.home-page .category-tile {
  border-radius: 4px;
  border-color: rgba(255,255,255,0.7);
  box-shadow: 0 12px 26px rgba(72,60,50,0.1);
}
.home-page .section--petrol {
  background: #788475;
}
.home-page .season-banner { gap: clamp(34px, 7vw, 92px); }
.home-page .season-copy h2 { font-family: var(--font-body); letter-spacing: -0.07em; word-spacing: -0.08em; }
.home-page .season-copy p { font-family: "Trebuchet MS", Arial, sans-serif; }
.home-page .season-banner img { border-radius: 4px; box-shadow: 0 18px 40px rgba(35,46,38,0.2); }
.home-page .btn-white { color: #52624f; box-shadow: none; letter-spacing: 0; }
.home-page .cta-strip {
  max-width: 780px;
  padding: 48px 34px;
  border-top: 1px solid rgba(82,98,79,0.22);
  border-bottom: 1px solid rgba(82,98,79,0.22);
}
.home-page .cta-strip h2 { font-size: clamp(34px, 4vw, 54px); }
.home-page .brand-row { gap: 10px; }
.home-page .brand-pill {
  border-color: rgba(135,145,123,0.4);
  border-radius: 4px;
  background: rgba(239,237,232,0.6);
  color: #52624f;
  font-family: "Trebuchet MS", Arial, sans-serif;
  letter-spacing: 0;
}
.home-page .brand-pill:hover { background: #87917b; color: #fff; border-color: #87917b; }
.home-page .trust-grid { gap: 0; border-top: 1px solid rgba(82,98,79,0.2); }
.home-page .trust-card { padding: 32px 26px; border-right: 1px solid rgba(82,98,79,0.2); }
.home-page .trust-card:last-child { border-right: 0; }
.home-page .trust-card .num {
  color: #87917b;
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0;
}
.home-page .trust-card h3 { color: #34423a; letter-spacing: -0.03em; }
.home-page .trust-card p { color: #77766f; font-family: "Trebuchet MS", Arial, sans-serif; }
.home-page .newsletter {
  background: #c9c4bb;
  text-align: left;
}
.home-page .newsletter h2 { color: #34423a; font-family: var(--font-body); letter-spacing: -0.07em; word-spacing: -0.08em; }
.home-page .newsletter > .container { max-width: 780px; margin: 0; }
.home-page .newsletter-form { margin-left: 0; }
.home-page .newsletter-form input { border-color: rgba(255,255,255,0.72); border-radius: 4px; }
.home-page footer.site-footer { background: #59645b; }

@media (max-width: 780px) {
  .home-page .section { padding: 68px 0; }
  .home-page .about-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: 16px;
    align-items: center;
  }
  .home-page .about-grid .img-col { order: 2; }
  .home-page .about-grid img {
    aspect-ratio: auto;
    height: auto;
    max-height: 270px;
    object-fit: contain;
  }
  .home-page .about-grid h2 {
    font-size: 27px;
    line-height: 0.98;
    margin-bottom: 12px;
  }
  .home-page .about-grid p {
    font-size: 10px;
    line-height: 1.4;
    margin-bottom: 8px;
  }
  .home-page .about-grid .eyebrow { font-size: 9px; margin-bottom: 8px; }
  .home-page .about-grid .btn-link { font-size: 10px; }
  .home-page .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .home-page .benefit-card { min-height: 190px; padding: 24px 16px; border-bottom: 1px solid rgba(82,98,79,0.2); }
  .home-page .benefit-card:nth-child(2) { border-right: 0; }
  .home-page .benefit-card:nth-child(3), .home-page .benefit-card:nth-child(4) { border-bottom: 0; }
  .home-page .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .home-page .trust-card { padding: 24px 16px; border-bottom: 1px solid rgba(82,98,79,0.2); }
  .home-page .trust-card:nth-child(2), .home-page .trust-card:nth-child(4) { border-right: 0; }
  .home-page .trust-card:nth-child(3), .home-page .trust-card:nth-child(4) { border-bottom: 0; }
  .home-page .cta-strip { padding: 34px 18px; }
  .home-page .newsletter > .container { margin: 0 auto; }
}

@media (max-width: 390px) {
  .home-page .about-grid { grid-template-columns: 1fr; gap: 18px; }
  .home-page .about-grid .img-col { order: -1; }
  .home-page .about-grid img { height: auto; max-height: 210px; aspect-ratio: auto; }
}

/* ============ PRODUCTO EDITORIAL ============ */
.product-page {
  background:
    linear-gradient(120deg, rgba(255,255,255,0.22), transparent 42%),
    #d8d5cf;
}
.product-page header.site-header {
  top: 18px;
  height: 58px;
  margin: 0 auto;
  width: min(1080px, calc(100% - 48px));
  background: rgba(112, 96, 84, 0.58);
  border: 1px solid rgba(255,255,255,0.42);
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(72, 60, 50, 0.12);
  backdrop-filter: blur(18px) saturate(120%);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
}
.product-page .header-inner { height: 58px; }
.product-page .logo,
.product-page .main-nav a,
.product-page .icon-btn { color: #fff; }
.product-page .logo { text-shadow: 0 1px 10px rgba(0,0,0,0.18); }
.product-page .main-nav a { font-size: 11px; text-transform: none; letter-spacing: 0; }
.product-page .icon-btn { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.32); }
.product-page > .section:first-of-type { padding: 146px 0 76px; }
.product-page .product-detail {
  gap: clamp(36px, 6vw, 92px);
  align-items: start;
}
.product-page .product-gallery-main {
  aspect-ratio: 1 / 1;
  margin-bottom: 14px;
  border-radius: 10px;
  background: #c9c4bb;
  border: 1px solid rgba(255,255,255,0.72);
  box-shadow: 0 18px 42px rgba(72, 60, 50, 0.14);
}
.product-page .product-gallery-main img { object-fit: contain; mix-blend-mode: multiply; }
.product-page .product-gallery-thumbs { gap: 12px; }
.product-page .product-gallery-thumbs img {
  width: 82px;
  height: 82px;
  padding: 4px;
  border: 1px solid rgba(255,255,255,0.78);
  border-radius: 8px;
  background: rgba(239,237,232,0.7);
  opacity: 0.62;
}
.product-page .product-gallery-thumbs img.active { opacity: 1; border-color: #87917b; }
.product-page .product-info {
  padding: 16px 0 0;
  max-width: 520px;
}
.product-page .product-info .product-brand {
  color: #69756c;
  letter-spacing: 0;
}
.product-page .product-info h1 {
  color: #34423a;
  font-family: var(--font-body);
  font-size: clamp(42px, 5vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.075em;
  word-spacing: -0.08em;
  margin: 18px 0 20px;
}
.product-page .product-info .desc {
  color: #686762;
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  max-width: 470px;
}
.product-page .notes-list { gap: 8px; margin: 26px 0 34px; }
.product-page .note-pill {
  border-color: rgba(135,145,123,0.36);
  background: rgba(239,237,232,0.66);
  border-radius: 999px;
  color: #63705f;
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 12px;
}
.product-page .ml-select h4,
.product-page .qty-select h4 {
  color: #52624f;
  letter-spacing: 0;
}
.product-page .ml-options { gap: 10px; }
.product-page .ml-option {
  min-width: 86px;
  border-color: rgba(135,145,123,0.34);
  border-radius: 8px;
  background: rgba(239,237,232,0.7);
  font-family: "Trebuchet MS", Arial, sans-serif;
}
.product-page .ml-option .p { font-family: "Trebuchet MS", Arial, sans-serif; }
.product-page .ml-option.selected { border-color: #87917b; background: #87917b; }
.product-page .qty-stepper { gap: 12px; }
.product-page .qty-stepper .qty-btn {
  border-color: rgba(135,145,123,0.42);
  border-radius: 50%;
  background: rgba(239,237,232,0.72);
  color: #52624f;
}
.product-page .qty-stepper .qty-value { font-family: "Trebuchet MS", Arial, sans-serif; color: #34423a; }
.product-page .product-detail-footer { align-items: end; gap: 24px; margin-top: 34px; }
.product-page .product-detail-footer .btn-primary {
  background: #87917b;
  box-shadow: none;
  letter-spacing: 0;
}
.product-page .selected-total {
  color: #77766f;
  font-family: "Trebuchet MS", Arial, sans-serif;
}
.product-page .selected-total strong { color: #52624f; font-family: "Trebuchet MS", Arial, sans-serif; font-size: 20px; }
.product-page #relatedSection { background: rgba(239,237,232,0.58); }
.product-page .related-heading {
  margin: 0 0 30px;
  color: #34423a;
  font-family: var(--font-body);
  font-size: clamp(30px, 4vw, 48px);
  letter-spacing: -0.07em;
  word-spacing: -0.08em;
}
.product-page #relatedGrid .product-card { background: rgba(239,237,232,0.86); }
.product-page footer.site-footer { background: #59645b; }

@media (max-width: 780px) {
  .product-page header.site-header { top: 12px; width: calc(100% - 24px); }
  .product-page .main-nav { display: none; }
  .product-page > .section:first-of-type { padding: 112px 0 54px; }
  .product-page .product-info { padding-top: 8px; }
  .product-page .product-info h1 { font-size: 42px; }
  .product-page .product-detail-footer { align-items: stretch; }
  .product-page .product-detail-footer .btn { width: 100%; justify-content: center; }
  .product-page .selected-total { text-align: center; }
  .product-page .related-heading { font-size: 34px; }
}

@media (max-width: 390px) {
  .container { padding-left: 15px; padding-right: 15px; }
  .logo { font-size: 16px; }
  #nosotros { display: block; }
  .hero, .hero-panel { min-height: 720px; }
  .hero-content { padding: 28px 20px 20px; }
  .hero-content h1 { font-size: 40px; }
    .hero-benefits {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      position: absolute;
      top: auto;
      right: 18px;
      bottom: 18px;
      left: 18px;
      width: auto;
      padding: 12px 0 4px;
      background: rgba(242, 238, 231, 0.68);
      border: 1px solid rgba(255,255,255,0.52);
      border-radius: 14px;
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
    }
    .hero-benefit { display: flex; flex-direction: column; justify-content: center; gap: 5px; padding: 7px 5px; text-align: center; border-bottom: 0; border-right: 1px solid rgba(23,63,64,0.12); }
    .hero-benefit:last-child { border-right: 0; }
    .benefit-mark { width: 34px; height: 34px; flex-basis: 34px; font-size: 18px; }
    .hero-benefit strong { font-size: 11px; line-height: 1.15; }
    .hero-benefit small { font-size: 9px; line-height: 1.2; }
    .trust-strip { margin: 0 22px; border: 1px solid rgba(23,63,64,0.1); border-radius: 18px; box-shadow: 0 12px 30px rgba(23,63,64,0.08); }
    .trust-strip-grid { grid-template-columns: repeat(4, 1fr); padding: 18px 10px; }
    .trust-strip-grid div { flex-direction: column; gap: 7px; padding: 5px 4px; font-size: 12px; line-height: 1.15; text-align: center; }
    .trust-strip-grid div:nth-child(2) { border-right: 1px solid rgba(23,63,64,0.16); }
    .trust-strip-grid span { font-size: 24px; }
    .trust-strip-grid small { display: block; color: var(--muted); font-family: var(--font-body); font-size: 9px; line-height: 1.3; }
    .hero, .hero-panel { min-height: 700px; }
  .hero-content { padding: 28px 20px 20px; }
  .hero-content h1 { font-size: 40px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 14px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-signature { margin-top: 30px; }
  .product-grid { grid-template-columns: 1fr; }
  .catalog-layout #catalogGrid > .catalog-brand-group > .product-grid { grid-template-columns: 1fr; }
  .product-card-img { aspect-ratio: 1.15 / 1; }
  .category-grid { gap: 10px; }
  .category-tile { font-size: 19px; }
}

/* ============ CATALOGO EDITORIAL ============ */
.catalog-page {
  background:
    linear-gradient(120deg, rgba(255,255,255,0.22), transparent 42%),
    #d8d5cf;
}
.catalog-page header.site-header {
  top: 18px;
  height: 58px;
  margin: 0 auto;
  width: min(1080px, calc(100% - 48px));
  background: rgba(112, 96, 84, 0.58);
  border: 1px solid rgba(255,255,255,0.42);
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(72, 60, 50, 0.12);
  backdrop-filter: blur(18px) saturate(120%);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
}
.catalog-page .header-inner { height: 58px; }
.catalog-page .logo,
.catalog-page .main-nav a,
.catalog-page .icon-btn { color: #fff; }
.catalog-page .logo { text-shadow: 0 1px 10px rgba(0,0,0,0.18); }
.catalog-page .main-nav a { font-size: 11px; text-transform: none; letter-spacing: 0; }
.catalog-page .icon-btn { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.32); }
.catalog-page .page-head {
  padding: 146px 0 72px;
  text-align: left;
  background:
    linear-gradient(180deg, rgba(88, 69, 57, 0.24), rgba(88, 69, 57, 0.05)),
    #b8aa9d;
  color: #fff;
}
.catalog-page .page-head h1 {
  max-width: 680px;
  color: #fff;
  font-family: var(--font-body);
  font-size: clamp(42px, 6vw, 74px);
  line-height: 0.98;
  letter-spacing: -0.075em;
  word-spacing: -0.08em;
  margin-bottom: 18px;
}
.catalog-page .page-head p {
  max-width: 500px;
  margin: 0;
  color: rgba(255,255,255,0.82);
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.5;
}
.catalog-page > .section { padding-top: 58px !important; }
.catalog-page .catalog-layout { gap: 34px; }
.catalog-page .filters {
  top: 100px;
  padding: 24px 22px;
  background: rgba(239,237,232,0.72);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(72, 60, 50, 0.07);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.catalog-page .filter-group { margin-bottom: 24px; }
.catalog-page .filter-group h4 {
  color: #5e6c5a;
  letter-spacing: 0;
  font-size: 12px;
}
.catalog-page .filter-option {
  color: #686762;
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 13px;
}
.catalog-page .filter-option input { accent-color: #87917b; }
.catalog-page .clear-filters { color: #6d7965; letter-spacing: 0; }
.catalog-page .catalog-toolbar { margin-bottom: 28px; }
.catalog-page .catalog-search {
  max-width: none;
  min-height: 48px;
  border-color: rgba(255,255,255,0.7);
  background: rgba(239,237,232,0.78);
  box-shadow: 0 8px 20px rgba(72, 60, 50, 0.06);
}
.catalog-page .catalog-search input,
.catalog-page .sort-select,
.catalog-page .brand-select {
  font-family: "Trebuchet MS", Arial, sans-serif;
  letter-spacing: 0;
}
.catalog-page .sort-select,
.catalog-page .brand-select {
  min-height: 48px;
  border-color: rgba(255,255,255,0.7);
  background: rgba(239,237,232,0.78);
}
.catalog-page .product-grid { gap: 20px; }
.catalog-page .product-card {
  background: rgba(239,237,232,0.86);
  border-color: rgba(255,255,255,0.72);
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(72, 60, 50, 0.09);
}
.catalog-page .product-card:hover { box-shadow: 0 18px 36px rgba(72, 60, 50, 0.16); }
.catalog-page .product-card-img { background: #cbc6bd; }
.catalog-page .product-card-body { padding: 18px 17px 20px; }
.catalog-page .product-brand { color: #778177; letter-spacing: 0; }
.catalog-page .product-name { color: #39433d; font-family: var(--font-display); }
.catalog-page .product-desc,
.catalog-page .product-ml-list,
.catalog-page .product-options { color: #71736d; }
.catalog-page .product-price { color: #5d7059; }
.catalog-page .product-card .btn {
  border-color: rgba(135,145,123,0.38);
  background: rgba(255,255,255,0.55);
  color: #52624f;
  box-shadow: none;
  letter-spacing: 0;
}
.catalog-page .product-card .btn:hover { background: #87917b; color: #fff; }
.catalog-page .brand-banner {
  border-color: rgba(255,255,255,0.72);
  box-shadow: 0 14px 30px rgba(72,60,50,0.1);
}
.catalog-page .brand-banner::after {
  background: linear-gradient(90deg, rgba(82,96,77,0.7), rgba(137,145,123,0.18) 72%, rgba(239,237,232,0.04));
}
.catalog-page .brand-banner-name {
  color: #fffaf2;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  text-shadow: 0 2px 12px rgba(53,62,49,0.34);
  letter-spacing: -0.04em;
}
.catalog-page .catalog-brand-heading { color: #52624f; }
.catalog-page .brand-logo {
  border-color: rgba(135,145,123,0.5);
  background: rgba(239,237,232,0.76);
  color: #62705d;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  letter-spacing: 0;
}
.catalog-page .brand-heading-name {
  color: #34423a;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  letter-spacing: -0.04em;
}
.catalog-page .catalog-brand-heading::after { background: rgba(82,98,79,0.22); }
.catalog-page footer.site-footer { background: #59645b; }

@media (max-width: 780px) {
  .catalog-page header.site-header { top: 12px; width: calc(100% - 24px); }
  .catalog-page .main-nav { display: none; }
  .catalog-page .page-head { padding: 112px 0 48px; }
  .catalog-page .page-head h1 { font-size: 44px; max-width: 340px; }
  .catalog-page .page-head p { font-size: 13px; max-width: 330px; }
  .catalog-page > .section { padding-top: 34px !important; }
  .catalog-page .filters { padding: 18px; }
}

/* ============ PORTADA EDITORIAL ============ */
.home-page .topbar { display: none; }
.home-page header.site-header {
  position: absolute;
  top: 18px;
  left: 50%;
  width: min(930px, calc(100% - 48px));
  height: 56px;
  transform: translateX(-50%);
  background: rgba(86, 67, 56, 0.34);
  border: 1px solid rgba(255,255,255,0.34);
  border-radius: 16px;
  box-shadow: none;
  backdrop-filter: blur(18px) saturate(120%);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
}
.home-page header.site-header .header-inner { height: 56px; }
.home-page header.site-header .logo,
.home-page header.site-header .main-nav a,
.home-page header.site-header .icon-btn { color: #fff; }
.home-page header.site-header .logo { text-shadow: 0 1px 10px rgba(0,0,0,0.18); }
.home-page header.site-header .icon-btn { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.32); }
.home-page header.site-header .main-nav a { font-size: 11px; text-transform: none; }
.home-page .editorial-hero {
  width: 100%;
  max-width: none;
  min-height: 920px;
  margin: 0 auto;
  display: block;
  border-radius: 0 0 4px 4px;
  background: #b8aa9d;
  overflow: hidden;
}
.home-page .hero-wordmark { max-width: 100%; white-space: nowrap; }
.home-page .editorial-hero .hero-bg {
  height: 570px;
  inset: 0 0 auto;
  background-position: 62% center;
  background-size: cover;
}
.home-page .editorial-hero .hero-bg::after {
  background: linear-gradient(180deg, rgba(57,40,31,0.18), rgba(57,40,31,0) 46%, rgba(57,40,31,0.08));
}
.home-page .editorial-hero .container { width: 100%; max-width: none; height: 100%; padding: 0; }
.home-page .editorial-hero .hero-panel { min-height: 920px; }
.home-page .hero-wordmark {
  position: absolute;
  z-index: 1;
  top: 230px;
  left: 50%;
  width: 100%;
  transform: translateX(-50%);
  color: rgba(255,250,245,0.96);
  font-family: "Bellavoir Serif Personal Use", "Times New Roman", serif;
  font-size: clamp(150px, 24vw, 300px);
  line-height: 0.72;
  letter-spacing: -0.08em;
  text-align: center;
  pointer-events: none;
}
.home-page .editorial-hero .hero-content {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(260px, 0.7fr);
  grid-template-rows: auto auto auto 1fr;
  column-gap: 72px;
  align-items: center;
  height: 350px;
  min-height: 350px;
  max-width: none;
  padding: 48px clamp(42px, calc((100vw - 1080px) / 2), 180px);
  background: #efede8;
}
.home-page .editorial-hero .hero-content::after {
  display: none;
}
.home-page .editorial-hero .hero-content > *:not(.hero-decant-showcase) { grid-column: 1; }
.home-page .hero-decant-showcase {
  position: relative;
  grid-column: 2;
  grid-row: 1 / -1;
  align-self: stretch;
  min-height: 250px;
  overflow: hidden;
  background: rgba(210, 199, 186, 0.42);
  border-radius: 2px;
}
.home-page .hero-decant-showcase::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(239,237,232,0.2), transparent 45%, rgba(239,237,232,0.16));
  pointer-events: none;
}
.home-page .hero-decant-showcase img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 88% center;
  filter: saturate(0.78) contrast(0.96);
  transform: scale(1.18);
}
.home-page .editorial-hero .hero-content .eyebrow { color: var(--purple); }
.home-page .editorial-hero .eyebrow,
.home-page header.site-header .main-nav a,
.home-page .btn,
.home-page .trust-strip--hero .trust-strip-grid div,
.home-page .trust-strip--hero .trust-strip-grid small {
  letter-spacing: 0;
}
.home-page header.site-header .main-nav a { font-size: 11px; }
.home-page .editorial-hero .hero-content h1 {
  max-width: 470px;
  font-family: var(--font-body);
  font-size: clamp(30px, 3.7vw, 44px);
  font-weight: 500;
  line-height: 1.03;
  letter-spacing: -0.075em;
  word-spacing: -0.08em;
  color: var(--ink);
  margin-bottom: 16px;
}
.home-page .editorial-hero .hero-content p {
  max-width: 430px;
  margin: 0 0 24px;
  color: #686762;
  font-size: 13px;
  letter-spacing: -0.025em;
  word-spacing: -0.04em;
}
.home-page .editorial-hero .hero-actions { gap: 0; }
.home-page .editorial-hero .btn-primary { background: #87917b; box-shadow: none; text-transform: none; letter-spacing: 0; padding: 11px 20px; }
.home-page .trust-strip--hero {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  background: #efede8;
  border: 0;
}
.home-page .trust-strip--hero .trust-strip-grid { padding: 28px 48px; }
.home-page .trust-strip--hero .trust-strip-grid div { font-family: var(--font-body); font-size: 13px; line-height: 1.15; }
.home-page .trust-strip--hero .trust-strip-grid strong { font-weight: 500; }
.home-page .trust-strip--hero .trust-strip-grid span { color: #87917b; }
.home-page .trust-strip--hero .trust-strip-grid small { display: block; margin-top: 4px; color: #77766f; font-family: var(--font-body); font-size: 10px; }

@media (max-width: 780px) {
  .home-page header.site-header { top: 12px; width: calc(100% - 24px); }
  .home-page header.site-header .main-nav { display: none; }
  .home-page .editorial-hero { min-height: 800px; margin: 0; border-radius: 0; }
  .home-page .editorial-hero .hero-bg {
    height: 520px;
    background-image: url('../img/home/hero-mobile.jpg'), url('../img/portada.jpg') !important;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }
  .home-page .editorial-hero .container { padding: 0; }
  .home-page .editorial-hero .hero-panel { min-height: 890px; }
  .home-page .hero-wordmark { top: 175px; font-size: clamp(112px, 31vw, 190px); }
  .home-page .editorial-hero .hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    height: 470px;
    min-height: 470px;
    gap: 0;
    padding: 34px 24px 38px;
  }
  .home-page .editorial-hero .hero-content::after { display: none; }
  .home-page .editorial-hero .hero-content > * { grid-column: auto; }
  .home-page .hero-decant-showcase {
    width: min(100%, 300px);
    height: 130px;
    min-height: 130px;
    margin-top: 22px;
    align-self: flex-end;
  }
  .home-page .editorial-hero .hero-content h1 { font-size: 34px; max-width: 350px; letter-spacing: -0.07em; word-spacing: -0.06em; }
  .home-page .editorial-hero .hero-content p { max-width: 320px; letter-spacing: -0.02em; }
  .home-page .trust-strip--hero { margin: 0; }
  .home-page .trust-strip--hero .trust-strip-grid { padding: 20px 10px; }
  .home-page .trust-strip--hero .trust-strip-grid div { padding: 4px 2px; font-size: 11px; }
  .home-page .trust-strip--hero .trust-strip-grid small { font-size: 9px; }
}

.home-page .hero-decant-showcase img {
  object-fit: contain;
  object-position: center;
  filter: saturate(0.88) contrast(0.98);
  transform: scale(1.02);
}
.home-page .hero-decant-showcase:hover img { transform: scale(1.045); }

.home-page .hero-decant-showcase {
  background: transparent;
}
.home-page .hero-decant-showcase::after {
  display: none;
}
.home-page .hero-decant-showcase img {
  filter: none;
}

@media (max-width: 780px) {
  .home-page .editorial-hero {
    min-height: 830px;
    overflow: visible;
    background: #efede8;
  }
  .home-page .editorial-hero .hero-bg {
    height: 500px;
    border-radius: 0;
  }
  .home-page .editorial-hero .hero-panel {
    min-height: 830px;
  }
  .home-page .editorial-hero .hero-content {
    bottom: 0;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    grid-template-rows: auto auto auto auto;
    column-gap: 16px;
    align-items: center;
    height: 430px;
    min-height: 430px;
    padding: 30px 20px 28px;
    border-radius: 28px 28px 0 0;
    background: #efede8;
    box-shadow: 0 -12px 30px rgba(72,60,50,0.08);
  }
  .home-page .editorial-hero .hero-content .eyebrow { grid-column: 1; margin-bottom: 12px; }
  .home-page .editorial-hero .hero-content h1 {
    grid-column: 1;
    max-width: 350px;
    margin-bottom: 12px;
    font-size: clamp(27px, 7.7vw, 36px);
    line-height: 1.04;
  }
  .home-page .editorial-hero .hero-content p {
    grid-column: 1;
    max-width: 340px;
    margin-bottom: 14px;
    font-family: "Trebuchet MS", Arial, sans-serif;
    font-size: 12px;
    line-height: 1.45;
  }
  .home-page .editorial-hero .hero-actions { grid-column: 1; }
  .home-page .editorial-hero .hero-actions .btn { min-height: 42px; padding: 10px 14px; font-size: 11px; }
  .home-page .hero-decant-showcase {
    grid-column: 2;
    grid-row: 1 / -1;
    width: 100%;
    height: 210px;
    min-height: 210px;
    margin-top: 0;
    align-self: center;
    border-radius: 3px;
  }
  .home-page .editorial-hero .hero-content > .hero-decant-showcase {
    grid-column: 2;
    grid-row: 1 / -1;
  }
  .home-page .hero-decant-showcase img { transform: scale(1.02); }
  .home-page .trust-strip--hero {
    position: relative;
    z-index: 2;
    margin: 0;
    border-top: 1px solid rgba(82,98,79,0.14);
    background: #efede8;
  }
  .home-page .trust-strip--hero .trust-strip-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    padding: 18px 18px 20px;
  }
  .home-page .trust-strip--hero .trust-strip-grid div {
    min-height: 58px;
    justify-content: flex-start;
    padding: 10px 12px;
    text-align: left;
    border-right: 1px solid rgba(82,98,79,0.18);
    border-bottom: 1px solid rgba(82,98,79,0.18);
  }
  .home-page .trust-strip--hero .trust-strip-grid div:nth-child(2n) { border-right: 0; }
  .home-page .trust-strip--hero .trust-strip-grid div:nth-child(n+3) { border-bottom: 0; }
  .home-page .trust-strip--hero .trust-strip-grid span { font-size: 19px; }
  .home-page .trust-strip--hero .trust-strip-grid small { font-size: 9px; }
}
