/* ============================================================
   HOGAR CÁLIDO — style_hogarcalido_co_v1.css
   Aurora / Mesh Gradient · Bricolage Grotesque + Hanken Grotesk
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,300;12..96,400;12..96,500;12..96,700;12..96,800&family=Hanken+Grotesk:wght@300;400;500;600&display=swap');

/* ── TOKENS ─────────────────────────────────────────── */
:root {
  --cream:       #F5F0E8;
  --parchment:   #EDE7DA;
  --sand:        #C8A882;
  --sand-deep:   #A8865C;
  --sage:        #7C9A8E;
  --sage-deep:   #5A7A6C;
  --navy:        #1A1F2E;
  --slate:       #2D3A4A;
  --slate-mid:   #4A5568;
  --ink:         #0F1318;

  --color-primary:   var(--sage);
  --color-accent:    var(--sand);
  --color-dark:      var(--navy);
  --color-bg:        var(--cream);
  --color-card:      #FFFFFF;
  --color-border:    rgba(0,0,0,0.08);
  --color-muted:     #8A9BAA;

  --radius-btn:  4px 18px 4px 18px;
  --radius-card: 12px;
  --radius-lg:   20px;

  --shadow-card: 0 4px 24px rgba(26,31,46,0.10);
  --shadow-lift: 0 12px 48px rgba(26,31,46,0.16);

  --font-display: 'Bricolage Grotesque', sans-serif;
  --font-body:    'Hanken Grotesk', sans-serif;

  --section-pad: clamp(64px, 8vw, 120px);
  --container-max: 1200px;
}

/* ── RESET ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--slate);
  background: var(--color-bg);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button, input, select, textarea { font-family: inherit; }
h1, h2, h3, h4, h5 { font-family: var(--font-display); line-height: 1.15; color: var(--navy); }

/* ── CONTAINER ──────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
}
.container--narrow { max-width: 800px; }
.container--wide   { max-width: 1400px; }

/* ── ON-DARK SCOPING ────────────────────────────────── */
.on-dark { color: rgba(255,255,255,0.82); }
.on-dark h1, .on-dark h2, .on-dark h3, .on-dark h4 { color: #fff; }
.on-dark p { color: rgba(255,255,255,0.68); }
.on-dark a:not(.btn) { color: inherit; }

/* ── BUTTONS ────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-btn);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  overflow: hidden;
  position: relative;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--sage);
  color: #fff;
}
.btn--primary:hover { background: var(--sage-deep); }

.btn--accent {
  background: var(--sand);
  color: var(--navy);
}
.btn--accent:hover { background: var(--sand-deep); color: #fff; }

.btn--ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn--ghost:hover { background: rgba(255,255,255,0.12); border-color: #fff; }

.btn--dark {
  background: var(--navy);
  color: #fff;
}
.btn--dark:hover { background: var(--slate); }

.btn--lg { padding: 18px 44px; font-size: 15px; }
.btn--full { width: 100%; }

.btn.is-loading { pointer-events: none; opacity: 0.8; }
.spinner {
  width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: #fff;
  border-radius: 50%;
  display: inline-block;
  animation: spin 0.8s linear infinite;
  flex-shrink: 0;
}

/* ── PHOTO PLACEHOLDER ──────────────────────────────── */
.photo-placeholder {
  background: linear-gradient(135deg, #ff6eb4, #ff3d9a);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 100%;
  min-height: 200px;
  border-radius: inherit;
}
.photo-placeholder__icon { font-size: 32px; }
.photo-placeholder__label {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  font-family: sans-serif;
  text-align: center;
  padding: 0 16px;
}

/* ── NAV ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: var(--navy);
  padding: 0 clamp(20px,5vw,48px);
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: box-shadow 0.3s ease;
}
.nav--scrolled { box-shadow: 0 4px 32px rgba(0,0,0,0.28); }

.nav__logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}
.nav__logo span { color: var(--sand); font-style: italic; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__links a {
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.72);
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.nav__links a:hover { color: #fff; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: transform 0.3s, opacity 0.3s;
}

@media (max-width: 768px) {
  .nav__burger { display: flex; }
  .nav__links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 12px 0 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .nav__links a {
    padding: 12px clamp(20px,5vw,48px);
    width: 100%;
    font-size: 15px;
  }
  .nav__links--open { display: flex; }
}

/* ── ADVERTORIAL BANNER ─────────────────────────────── */
.adv-bar {
  background: var(--navy);
  border-bottom: 1px solid rgba(124,154,142,0.3);
  padding: 8px clamp(20px,5vw,48px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 68px;
}
.adv-bar__text {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  font-family: var(--font-body);
  text-align: center;
  line-height: 1.4;
}
.adv-bar__text strong { color: var(--sand); font-weight: 600; }

/* ── HERO ────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

.hero__aurora {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero__aurora::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  top: -200px;
  right: -100px;
  background: radial-gradient(circle, rgba(124,154,142,0.28) 0%, transparent 70%);
  animation: aurora-move 8s ease-in-out infinite alternate;
}
.hero__aurora::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  bottom: -100px;
  left: -80px;
  background: radial-gradient(circle, rgba(200,168,130,0.22) 0%, transparent 70%);
  animation: aurora-move 11s ease-in-out infinite alternate-reverse;
}
.hero__aurora-blob {
  position: absolute;
  width: 400px;
  height: 400px;
  top: 30%;
  left: 40%;
  background: radial-gradient(circle, rgba(124,154,142,0.12) 0%, transparent 65%);
  animation: blob-morph 12s ease-in-out infinite, aurora-move 14s ease-in-out infinite alternate;
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding: clamp(80px,10vw,140px) clamp(20px,5vw,48px) clamp(60px,8vw,100px);
}

.hero__content { max-width: 580px; }

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  opacity: 0;
  animation: fade-up 0.8s ease 0.1s forwards;
}
.hero__eyebrow-line {
  width: 32px;
  height: 2px;
  background: var(--sage);
}
.hero__eyebrow-text {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
}

.hero__title {
  font-size: clamp(44px, 6.5vw, 88px);
  font-weight: 800;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  opacity: 0;
  animation: fade-up 0.8s ease 0.25s forwards;
}
.hero__title em {
  font-style: italic;
  color: var(--sand);
}

.hero__subtitle {
  font-size: clamp(15px,1.6vw,18px);
  font-weight: 300;
  color: rgba(255,255,255,0.66);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fade-up 0.8s ease 0.4s forwards;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fade-up 0.8s ease 0.55s forwards;
}

.hero__image-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: fade-up 0.9s ease 0.35s forwards;
}

.hero__product-img {
  width: 100%;
  max-width: 480px;
  height: 520px;
  object-fit: contain;
  filter: drop-shadow(0 24px 64px rgba(0,0,0,0.5));
  position: relative;
  z-index: 1;
  animation: float 5s ease-in-out infinite;
}

.hero__product-img--photo {
  object-fit: cover;
  border-radius: 4px;
  filter: none;
  box-shadow: 0 24px 64px rgba(0,0,0,0.55);
}

.hero__glow {
  position: absolute;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(124,154,142,0.35) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  animation: pulse-ring 3s ease-out infinite;
}

.hero__stats {
  position: absolute;
  bottom: clamp(32px,5vw,60px);
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(32px,5vw,80px);
  padding-inline: clamp(20px,5vw,48px);
  opacity: 0;
  animation: fade-up 0.8s ease 0.7s forwards;
}
.hero__stat-item { text-align: center; }
.hero__stat-num {
  font-family: var(--font-display);
  font-size: clamp(28px,3.5vw,44px);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  display: block;
}
.hero__stat-label {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
  display: block;
}
.hero__stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.15);
}

@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero__content { max-width: 100%; }
  .hero__subtitle { max-width: 100%; }
  .hero__actions { justify-content: center; }
  .hero__product-img { max-width: 300px; height: 320px; }
  .hero__eyebrow { justify-content: center; }
}

/* ── MARQUEE ─────────────────────────────────────────── */
.marquee-strip {
  background: var(--sage);
  padding: 14px 0;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.marquee-strip__track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee-strip__item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-right: 48px;
  white-space: nowrap;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
}
.marquee-strip__dot {
  width: 5px;
  height: 5px;
  background: rgba(255,255,255,0.55);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── SECTION SHARED ──────────────────────────────────── */
.section {
  padding-block: var(--section-pad);
  position: relative;
}
.section--cream  { background: var(--cream); }
.section--parch  { background: var(--parchment); }
.section--navy   { background: var(--navy); }
.section--slate  { background: var(--slate); }
.section--white  { background: #fff; }

.section--diag-bottom {
  clip-path: polygon(0 0, 100% 0, 100% 93%, 0 100%);
  padding-bottom: calc(var(--section-pad) + 60px);
}
.section--diag-top {
  clip-path: polygon(0 4%, 100% 0, 100% 100%, 0 100%);
  padding-top: calc(var(--section-pad) + 50px);
  margin-top: -40px;
}
.section--diag-both {
  clip-path: polygon(0 4%, 100% 0, 100% 96%, 0 100%);
  padding-block: calc(var(--section-pad) + 60px);
  margin-top: -40px;
}

.section__header { margin-bottom: clamp(40px,6vw,72px); }
.section__header--center { text-align: center; }

.section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.section__eyebrow-line {
  width: 28px;
  height: 2px;
  background: var(--sage);
  flex-shrink: 0;
}
.section__eyebrow-text {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
}
.section__eyebrow--center {
  justify-content: center;
}

.section__title {
  font-size: clamp(32px, 4.5vw, 60px);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--navy);
  margin-bottom: 16px;
}
.section__title em { font-style: italic; color: var(--sage); }
.section__title--light { color: #fff; }
.section__title em.sand { color: var(--sand); }

.section__desc {
  font-size: clamp(15px,1.5vw,17px);
  font-weight: 300;
  color: var(--slate-mid);
  max-width: 560px;
  line-height: 1.7;
}
.section__desc--center { margin-inline: auto; text-align: center; }

/* ── PRODUCT GRID ────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

.product-card {
  background: var(--color-card);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
}

.product-card__img-wrap {
  position: relative;
  background: var(--parchment);
  aspect-ratio: 4/3;
  overflow: hidden;
}
.product-card__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 20px;
  transition: transform 0.4s ease;
}
.product-card:hover .product-card__img { transform: scale(1.04); }

.product-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 12px;
}
.product-card__name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
}
.product-card__desc {
  font-size: 13.5px;
  color: var(--slate-mid);
  line-height: 1.6;
  flex: 1;
}
.product-card__price {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--sage-deep);
  letter-spacing: -0.02em;
}
.product-card__footer { margin-top: auto; }

/* ── LIFESTYLE SECTION ───────────────────────────────── */
.lifestyle-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.lifestyle-grid--reverse { direction: rtl; }
.lifestyle-grid--reverse > * { direction: ltr; }

.lifestyle-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.lifestyle-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.lifestyle-item__icon {
  width: 48px;
  height: 48px;
  background: rgba(124,154,142,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.lifestyle-item__icon svg { width: 22px; height: 22px; stroke: var(--sage-deep); fill: none; stroke-width: 1.8; }
.lifestyle-item__title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.lifestyle-item__text {
  font-size: 14px;
  color: var(--slate-mid);
  line-height: 1.65;
}

.lifestyle-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 420px;
  background: var(--parchment);
}
.lifestyle-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  min-height: 420px;
}

@media (max-width: 840px) {
  .lifestyle-grid, .lifestyle-grid--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .lifestyle-image { min-height: 280px; }
  .lifestyle-image img { min-height: 280px; }
}

/* ── STATS ROW ───────────────────────────────────────── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2px;
}
.stat-card {
  background: rgba(255,255,255,0.06);
  padding: 36px 28px;
  text-align: center;
  border-radius: 8px;
}
.stat-card__num {
  font-family: var(--font-display);
  font-size: clamp(36px,4vw,56px);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  display: block;
}
.stat-card__suffix {
  color: var(--sand);
  font-style: italic;
}
.stat-card__label {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 8px;
  display: block;
}

/* ── WHY SECTION ─────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.why-card {
  background: var(--color-card);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 32px 28px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}
.why-card__icon {
  width: 52px;
  height: 52px;
  background: rgba(124,154,142,0.10);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.why-card__icon svg { width: 24px; height: 24px; stroke: var(--sage-deep); fill: none; stroke-width: 1.8; }
.why-card__title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.why-card__text {
  font-size: 14px;
  color: var(--slate-mid);
  line-height: 1.65;
}

/* ── FAQ ─────────────────────────────────────────────── */
.faq-list { max-width: 760px; margin-inline: auto; }
.faq-item {
  border-bottom: 1px solid var(--color-border);
}
.faq-item:first-child { border-top: 1px solid var(--color-border); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 4px;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--sage-deep); }
.faq-question__icon {
  width: 28px;
  height: 28px;
  background: rgba(124,154,142,0.10);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s, background 0.3s;
}
.faq-question__icon svg { width: 14px; height: 14px; stroke: var(--sage-deep); fill: none; stroke-width: 2.5; transition: transform 0.3s; }
.faq-item.faq--open .faq-question__icon { background: var(--sage); transform: rotate(45deg); }
.faq-item.faq--open .faq-question__icon svg { stroke: #fff; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item.faq--open .faq-answer { max-height: 300px; }
.faq-answer__inner {
  padding: 0 4px 24px;
  font-size: 15px;
  font-weight: 300;
  color: var(--slate-mid);
  line-height: 1.75;
}

/* ── DELIVERY SECTION ────────────────────────────────── */
.delivery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}
.delivery-card {
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius-card);
  padding: 28px 24px;
  text-align: center;
}
.delivery-card__icon {
  width: 52px;
  height: 52px;
  background: rgba(124,154,142,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.delivery-card__icon svg { width: 24px; height: 24px; stroke: #fff; fill: none; stroke-width: 1.8; }
.delivery-card__title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.delivery-card__text {
  font-size: 13.5px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

/* ── TRUST BADGES ────────────────────────────────────── */
.trust-badges {
  background: var(--cream);
  padding: 28px 0;
  border-bottom: 1px solid var(--color-border);
}
.trust-badges__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
}
.trust-badge__icon {
  width: 40px;
  height: 40px;
  background: rgba(124,154,142,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-badge__icon svg { width: 20px; height: 20px; stroke: var(--sage-deep); fill: none; stroke-width: 1.8; }
.trust-badge__text {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.35;
}
.trust-badge__sub {
  font-size: 11px;
  font-weight: 400;
  color: var(--slate-mid);
}

/* ── DISCLAIMER ──────────────────────────────────────── */
.disclaimer-bar {
  background: rgba(124,154,142,0.08);
  border: 1px solid rgba(124,154,142,0.2);
  border-radius: 8px;
  padding: 12px 20px;
  font-size: 12px;
  color: var(--slate-mid);
  line-height: 1.55;
  text-align: center;
  margin: 28px auto 0;
  max-width: 760px;
}

/* ── FOOTER ──────────────────────────────────────────── */
.footer {
  background: var(--ink);
  padding-block: 64px 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__brand-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.footer__brand-name span { color: var(--sand); font-style: italic; }
.footer__brand-desc {
  font-size: 13.5px;
  color: rgba(255,255,255,0.42);
  line-height: 1.7;
  max-width: 260px;
  margin-bottom: 24px;
}
.footer__contact-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer__contact-info a,
.footer__contact-info span {
  font-size: 12.5px;
  color: rgba(255,255,255,0.42);
  transition: color 0.2s;
}
.footer__contact-info a:hover { color: var(--sand); }

.footer__col-title {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}
.footer__col-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__col-links a {
  font-size: 13.5px;
  color: rgba(255,255,255,0.52);
  transition: color 0.2s;
}
.footer__col-links a:hover { color: #fff; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__copy {
  font-size: 12px;
  color: rgba(255,255,255,0.28);
}
.footer__legal {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer__legal a {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
}
.footer__legal a:hover { color: rgba(255,255,255,0.7); }

@media (max-width: 900px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 540px) {
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

/* ── CATALOG PAGE ────────────────────────────────────── */
.catalog-hero {
  background: var(--navy);
  padding: calc(68px + clamp(48px,6vw,80px)) clamp(20px,5vw,48px) clamp(40px,5vw,64px);
  position: relative;
  overflow: hidden;
}
.catalog-hero__aurora {
  position: absolute; inset: 0; z-index: 0; overflow: hidden;
}
.catalog-hero__aurora::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  top: -150px; right: -80px;
  background: radial-gradient(circle, rgba(124,154,142,0.22) 0%, transparent 70%);
  animation: aurora-move 9s ease-in-out infinite alternate;
}
.catalog-hero__inner {
  position: relative; z-index: 2;
  max-width: var(--container-max);
  margin-inline: auto;
}
.catalog-hero__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 16px;
  display: block;
}
.catalog-hero__title {
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: 16px;
}
.catalog-hero__title em { color: var(--sand); font-style: italic; }
.catalog-hero__sub {
  font-size: clamp(14px,1.5vw,17px);
  color: rgba(255,255,255,0.56);
  max-width: 480px;
  line-height: 1.7;
}

.catalog-filter {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 9px 22px;
  border-radius: var(--radius-btn);
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: 1.5px solid var(--color-border);
  background: transparent;
  color: var(--slate-mid);
  transition: all 0.22s;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--sage);
  border-color: var(--sage);
  color: #fff;
}

/* ── CHECKOUT ────────────────────────────────────────── */
.checkout-page {
  padding-top: 68px;
  min-height: 100vh;
  background: var(--cream);
}
.checkout-adv {
  background: var(--navy);
  padding: 8px clamp(20px,5vw,48px);
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}
.checkout-adv strong { color: var(--sand); }

.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  padding: 48px clamp(20px,5vw,48px);
  max-width: 1100px;
  margin-inline: auto;
  align-items: start;
}

.checkout-form-panel { order: 1; }
.checkout-summary-panel { order: 2; }

.checkout-section-title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate-mid);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color-border);
}

.checkout-card {
  background: var(--color-card);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 28px;
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--slate);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 7px;
}
.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: 8px;
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--navy);
  background: #fff;
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus {
  border-color: var(--sage);
}
.form-group input.error,
.form-group select.error {
  border-color: #e53e3e;
}
.form-error {
  font-size: 11.5px;
  color: #e53e3e;
  margin-top: 4px;
  display: none;
}
.form-error.visible { display: block; }

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 12px;
}
.form-check input[type="checkbox"] {
  width: 16px; height: 16px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--sage-deep);
}
.form-check label {
  font-size: 12.5px;
  color: var(--slate-mid);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  cursor: pointer;
  line-height: 1.5;
}
.form-check label a { color: var(--sage-deep); text-decoration: underline; }

.cod-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(124,154,142,0.10);
  border: 1px solid rgba(124,154,142,0.25);
  border-radius: 10px;
  padding: 16px 20px;
  margin-bottom: 20px;
}
.cod-badge__icon { width: 36px; height: 36px; flex-shrink: 0; }
.cod-badge__icon svg { width: 100%; height: 100%; stroke: var(--sage-deep); fill: none; stroke-width: 1.6; }
.cod-badge__text { font-size: 13.5px; font-weight: 600; color: var(--navy); line-height: 1.4; }
.cod-badge__sub { font-size: 12px; font-weight: 400; color: var(--slate-mid); }

.order-terms {
  font-size: 12px;
  color: var(--slate-mid);
  line-height: 1.65;
  padding: 14px 0;
  border-top: 1px solid var(--color-border);
  margin-top: 8px;
}

.seller-block {
  background: var(--parchment);
  border-radius: 10px;
  padding: 18px 20px;
  margin-bottom: 20px;
}
.seller-block__title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate-mid);
  margin-bottom: 10px;
}
.seller-block__info {
  font-size: 13px;
  color: var(--slate);
  line-height: 1.75;
}
.seller-block__info a { color: var(--sage-deep); }

/* Checkout summary */
.summary-product {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 20px;
}
.summary-product__img {
  width: 72px;
  height: 72px;
  background: var(--parchment);
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}
.summary-product__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
}
.summary-product__name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.summary-product__qty {
  font-size: 12.5px;
  color: var(--slate-mid);
}
.summary-product__price {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  color: var(--navy);
  margin-left: auto;
  white-space: nowrap;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13.5px;
  color: var(--slate-mid);
  padding: 5px 0;
}
.summary-line--total {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  color: var(--navy);
  padding-top: 14px;
  border-top: 1.5px solid var(--color-border);
  margin-top: 8px;
}

@media (max-width: 860px) {
  .checkout-grid {
    grid-template-columns: 1fr;
  }
  .checkout-summary-panel { order: 1; }
  .checkout-form-panel { order: 2; }
}
@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; }
}

/* ── MODAL ───────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15,19,24,0.72);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  backdrop-filter: blur(4px);
}
.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.modal {
  background: var(--color-card);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  box-shadow: 0 32px 80px rgba(0,0,0,0.28);
  transform: translateY(20px);
  transition: transform 0.3s;
}
.modal-overlay.active .modal { transform: translateY(0); }
.modal__icon {
  width: 64px; height: 64px;
  background: rgba(124,154,142,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.modal__icon svg { width: 30px; height: 30px; stroke: var(--sage-deep); fill: none; stroke-width: 2; }
.modal__title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}
.modal__text {
  font-size: 15px;
  color: var(--slate-mid);
  line-height: 1.7;
  margin-bottom: 32px;
}
.modal__close {
  background: var(--navy);
  color: #fff;
  border: none;
  padding: 14px 40px;
  border-radius: var(--radius-btn);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s;
}
.modal__close:hover { background: var(--slate); }

/* ── COOKIE BANNER ───────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 680px;
  background: var(--navy);
  border-radius: 16px;
  padding: 24px 28px;
  z-index: 9999;
  box-shadow: 0 16px 64px rgba(0,0,0,0.38);
  display: none;
  border: 1px solid rgba(124,154,142,0.2);
}
.cookie-banner.visible { display: block; }
.cookie-banner__text {
  font-size: 13px;
  color: rgba(255,255,255,0.68);
  line-height: 1.65;
  margin-bottom: 20px;
}
.cookie-banner__text a { color: var(--sand); text-decoration: underline; }
.cookie-banner__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-btn {
  padding: 10px 22px;
  border-radius: var(--radius-btn);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.22s;
}
.cookie-btn--accept { background: var(--sage); color: #fff; }
.cookie-btn--accept:hover { background: var(--sage-deep); }
.cookie-btn--reject { background: transparent; color: rgba(255,255,255,0.6); border: 1px solid rgba(255,255,255,0.2); }
.cookie-btn--reject:hover { background: rgba(255,255,255,0.08); color: #fff; }
.cookie-btn--config { background: transparent; color: rgba(255,255,255,0.6); border: 1px solid rgba(255,255,255,0.2); }
.cookie-btn--config:hover { background: rgba(255,255,255,0.08); color: #fff; }
.cookie-btn--save { background: var(--sand); color: var(--navy); }
.cookie-btn--save:hover { background: var(--sand-deep); color: #fff; }

.cookie-config-panel {
  display: none;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.cookie-config-panel.open { display: block; }
.cookie-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.cookie-toggle-row:last-of-type { border-bottom: none; }
.cookie-toggle-label {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
}
.cookie-toggle-label span {
  display: block;
  font-size: 11.5px;
  color: rgba(255,255,255,0.4);
  font-weight: 400;
  margin-top: 2px;
}
.cookie-toggle {
  appearance: none;
  -webkit-appearance: none;
  width: 40px;
  height: 22px;
  background: rgba(255,255,255,0.15);
  border-radius: 11px;
  cursor: pointer;
  position: relative;
  transition: background 0.2s;
  flex-shrink: 0;
}
.cookie-toggle:checked { background: var(--sage); }
.cookie-toggle::before {
  content: '';
  position: absolute;
  width: 16px; height: 16px;
  background: #fff;
  border-radius: 50%;
  top: 3px; left: 3px;
  transition: left 0.2s;
}
.cookie-toggle:checked::before { left: 21px; }
.cookie-toggle:disabled { opacity: 0.5; cursor: not-allowed; }

/* ── ANIMATIONS ──────────────────────────────────────── */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}
@keyframes pulse-ring {
  0%   { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.5); opacity: 0; }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes aurora-move {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, 30px) scale(1.1); }
}
@keyframes blob-morph {
  0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
  50%       { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
@keyframes slide-in-left {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes draw-line {
  from { stroke-dashoffset: 300; }
  to   { stroke-dashoffset: 0; }
}

/* scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-left.revealed { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-right.revealed { opacity: 1; transform: translateX(0); }

.stagger-child {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.stagger-visible .stagger-child { opacity: 1; transform: translateY(0); }
.stagger-child:nth-child(1) { transition-delay: 0.05s; }
.stagger-child:nth-child(2) { transition-delay: 0.15s; }
.stagger-child:nth-child(3) { transition-delay: 0.25s; }
.stagger-child:nth-child(4) { transition-delay: 0.35s; }
.stagger-child:nth-child(5) { transition-delay: 0.45s; }
.stagger-child:nth-child(6) { transition-delay: 0.55s; }

/* ── STICKY CTA ──────────────────────────────────────── */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 800;
  background: var(--navy);
  border-top: 1px solid rgba(124,154,142,0.25);
  padding: 14px clamp(20px,5vw,48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  box-shadow: 0 -8px 40px rgba(0,0,0,0.3);
}
.sticky-cta--visible { transform: translateY(0); }
.sticky-cta__text {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
}
.sticky-cta__text strong { color: #fff; }

/* ── UTILITY ─────────────────────────────────────────── */
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.text-sage { color: var(--sage); }
.text-sand { color: var(--sand); }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-0  { margin-bottom: 0 !important; }
.gap-16 { gap: 16px !important; }

/* ── FEATURED HIGHLIGHT ──────────────────────────────── */
.featured-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.featured-section--reverse { }
.featured-img-wrap {
  position: relative;
  background: var(--parchment);
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.featured-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 24px;
}
.featured-content .price-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--sage-deep);
  margin: 12px 0 20px;
}

@media (max-width: 840px) {
  .featured-section { grid-template-columns: 1fr; gap: 40px; }
}

/* ── LEGAL PAGE CONTENT ──────────────────────────────── */
.legal-hero {
  background: var(--navy);
  padding: calc(68px + 56px) clamp(20px,5vw,48px) 56px;
  position: relative;
  overflow: hidden;
}
.legal-hero::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  top: -150px; right: -80px;
  background: radial-gradient(circle, rgba(124,154,142,0.18) 0%, transparent 70%);
}
.legal-hero__inner { position: relative; z-index: 2; max-width: var(--container-max); margin-inline: auto; }
.legal-hero__title {
  font-size: clamp(32px,4vw,56px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}
.legal-hero__sub {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  margin-top: 12px;
}
.legal-content {
  padding-block: 64px;
}
.legal-content h2 {
  font-size: clamp(20px,2.5vw,28px);
  font-weight: 700;
  color: var(--navy);
  margin: 40px 0 14px;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--slate);
  margin: 28px 0 10px;
}
.legal-content p {
  font-size: 15px;
  color: var(--slate-mid);
  line-height: 1.8;
  margin-bottom: 16px;
}
.legal-content ul, .legal-content ol {
  margin: 0 0 20px 0;
  padding-left: 24px;
}
.legal-content li {
  font-size: 15px;
  color: var(--slate-mid);
  line-height: 1.75;
  margin-bottom: 8px;
  list-style: disc;
}
.legal-content ol li { list-style: decimal; }
.legal-content strong { color: var(--navy); }
.legal-content a { color: var(--sage-deep); text-decoration: underline; }

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 640px) {
  .hero__stats { gap: 20px; }
  .hero__stat-divider { display: none; }
  .products-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .delivery-grid { grid-template-columns: 1fr 1fr; }
  .trust-badges__grid { grid-template-columns: 1fr 1fr; }
}

/* Progressive-enhancement safety (injected by builder): scroll-reveal blocks stay VISIBLE
   unless JS confirms it can animate them by adding .js-anim to <html>. Guarantees a
   truncated page or a failed script can never leave content permanently hidden. */
html:not(.js-anim) .reveal,
html:not(.js-anim) .reveal-left,
html:not(.js-anim) .reveal-right,
html:not(.js-anim) .reveal-scale,
html:not(.js-anim) .stagger-child {
  opacity: 1 !important;
  transform: none !important;
}
