:root {
  --bg: #faf9f6;
  --surface: #ffffff;
  --surface-2: #f1ede5;
  --surface-3: #e8e2d8;
  --text: #1a1714;
  --text-soft: #4a4540;
  --muted: rgba(26, 23, 20, .58);
  --line: rgba(26, 23, 20, .09);
  --line-strong: rgba(26, 23, 20, .16);

  --gold: #b8943f;
  --gold-light: #d4b563;
  --gold-glow: rgba(184, 148, 63, .18);
  --gold-surface: rgba(184, 148, 63, .08);

  --shadow-xs: 0 1px 3px rgba(0,0,0,.04);
  --shadow-sm: 0 4px 12px rgba(0,0,0,.06);
  --shadow-md: 0 8px 30px rgba(0,0,0,.08);
  --shadow-lg: 0 20px 50px rgba(0,0,0,.12);
  --shadow-gold: 0 8px 32px rgba(184, 148, 63, .18);

  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --radius-full: 999px;

  --container: 1140px;
  --header-h: 64px;

  --hero-overlay: linear-gradient(
    135deg,
    rgba(250, 249, 246, .92) 0%,
    rgba(250, 249, 246, .75) 35%,
    rgba(250, 249, 246, .45) 100%
  );

  --ease-out-expo: cubic-bezier(.16, 1, .3, 1);
  --ease-spring: cubic-bezier(.34, 1.56, .64, 1);

  color-scheme: light;
}

html[data-theme="dark"] {
  --bg: #0d0c0a;
  --surface: #161412;
  --surface-2: #1e1b17;
  --surface-3: #262219;
  --text: #f0ece4;
  --text-soft: #b5ae9f;
  --muted: rgba(240, 236, 228, .55);
  --line: rgba(255, 255, 255, .07);
  --line-strong: rgba(255, 255, 255, .13);

  --gold: #d4b563;
  --gold-light: #e8cf82;
  --gold-glow: rgba(212, 181, 99, .15);
  --gold-surface: rgba(212, 181, 99, .06);

  --shadow-xs: 0 1px 3px rgba(0,0,0,.15);
  --shadow-sm: 0 4px 12px rgba(0,0,0,.25);
  --shadow-md: 0 8px 30px rgba(0,0,0,.35);
  --shadow-lg: 0 20px 50px rgba(0,0,0,.5);
  --shadow-gold: 0 8px 32px rgba(212, 181, 99, .12);

  --hero-overlay: linear-gradient(
    135deg,
    rgba(13, 12, 10, .92) 0%,
    rgba(13, 12, 10, .78) 35%,
    rgba(13, 12, 10, .50) 100%
  );

  color-scheme: dark;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  margin: 0;
  font-family: "DM Sans", system-ui, -apple-system, sans-serif;
  font-size: 15px;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 900px 600px at 15% -5%, var(--gold-glow), transparent),
    radial-gradient(ellipse 700px 500px at 85% 15%, var(--gold-surface), transparent);
  pointer-events: none;
  z-index: -1;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 12px; top: 12px;
  padding: 10px 16px;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  font-weight: 600;
  transform: translateY(-200%);
  transition: transform .25s var(--ease-out-expo);
  z-index: 9999;
}
.skip-link:focus { transform: translateY(0); }

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.muted { color: var(--muted); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius-full);
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  letter-spacing: .3px;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform .15s var(--ease-spring),
    background .2s ease,
    border-color .2s ease,
    box-shadow .25s ease;
  user-select: none;
  white-space: nowrap;
  text-decoration: none;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: scale(.97); }

.btn-primary {
  background: linear-gradient(160deg, var(--gold-light), var(--gold));
  color: #1a1400;
  box-shadow: var(--shadow-gold);
  border-color: rgba(184, 148, 63, .25);
}
.btn-primary:hover {
  box-shadow: 0 12px 40px rgba(184, 148, 63, .28);
  filter: brightness(1.05);
}

.btn-ghost {
  background: var(--gold-surface);
  border-color: var(--line-strong);
  color: var(--text);
}
.btn-ghost:hover {
  background: var(--gold-glow);
  border-color: var(--gold);
}

.btn-secondary {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--text-soft);
}
.btn-secondary:hover {
  background: var(--gold-surface);
  border-color: var(--gold);
  color: var(--text);
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px; height: 22px;
  padding: 0 7px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
  background: var(--gold-glow);
  border: 1px solid rgba(184, 148, 63, .3);
  color: var(--gold);
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: var(--radius-full);
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text-soft);
  cursor: pointer;
  transition: all .2s ease;
}
.theme-toggle:hover {
  border-color: var(--gold);
  background: var(--gold-surface);
  color: var(--text);
}
.theme-toggle:active { transform: scale(.96); }

.theme-toggle .dot {
  width: 8px; height: 8px;
  border-radius: var(--radius-full);
  background: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
  transition: background .2s ease;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s ease;
}
.site-header.is-scrolled {
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
}

.logo {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: .5px;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 5px;
  flex-shrink: 0;
}
.logo span { color: var(--gold); font-weight: 600; }
.logo:hover { text-decoration: none; }

.site-nav {
  display: flex;
  gap: 4px;
  align-items: center;
}
.site-nav a {
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all .15s ease;
}
.site-nav a:hover {
  background: var(--gold-surface);
  color: var(--text);
  text-decoration: none;
}

.header-ctas {
  display: flex;
  gap: 8px;
  align-items: center;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius-sm);
  padding: 8px 10px;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  color: var(--text);
  font-family: inherit;
  transition: all .15s ease;
}
.nav-toggle:hover {
  background: var(--gold-surface);
  border-color: var(--gold);
}

.hero {
  position: relative;
  min-height: calc(75vh - var(--header-h));
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hero-media { position: absolute; inset: 0; }

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.2s ease, transform 6s var(--ease-out-expo);
  will-change: opacity, transform;
}
.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--hero-overlay);
}

.hero-content {
  position: relative;
  padding: 80px 0;
  max-width: 720px;
}

.eyebrow {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--gold);
  margin: 0 0 20px;
}
.eyebrow::before {
  content: "";
  width: 24px; height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(40px, 7vw, 72px);
  font-weight: 600;
  line-height: 1.05;
  margin: 0 0 16px;
  letter-spacing: -.5px;
}

.hero-sub {
  margin: 0 0 32px;
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.7;
  max-width: 52ch;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-bullets {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding: 0; margin: 0;
  list-style: none;
}
.hero-bullets li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-soft);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  background: var(--gold-surface);
  border: 1px solid var(--line);
}
.hero-bullets li::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.section { padding: 80px 0; }

.section-alt {
  background: var(--gold-surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
}

.section-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  margin: 0 0 6px;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -.2px;
}

.section-sub {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  max-width: 55ch;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 12px;
}

.product-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition:
    transform .25s var(--ease-out-expo),
    border-color .25s ease,
    box-shadow .3s ease;
}
.product-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: var(--shadow-md), 0 0 0 1px var(--gold-glow);
}

.product-media {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.product-media img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 24px;
  transition: transform .4s var(--ease-out-expo);
}
.product-card:hover .product-media img {
  transform: scale(1.05);
}

.badge {
  position: absolute;
  left: 12px; top: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  background: var(--gold);
  color: #1a1400;
}
.badge-alt {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--line);
}

.product-info {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-title {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
}

.desc {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}

.price-wrap { display: grid; gap: 2px; }
.price { font-weight: 700; letter-spacing: .2px; }
.price-note { font-size: 11px; color: var(--muted); }

.trust {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.trust-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color .2s ease;
}
.trust-card:hover { border-color: var(--gold); }

.trust-icon {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--gold-glow);
  color: var(--gold);
  margin-bottom: 14px;
}
.trust-icon svg { width: 20px; height: 20px; }

.trust-card h3 {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 600;
}
.trust-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .45);
  backdrop-filter: blur(4px);
  z-index: 80;
}

.cart-drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(420px, 90vw);
  height: 100dvh;
  background: var(--surface);
  border-left: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  z-index: 90;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.cart-drawer-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 20px 14px;
  border-bottom: 1px solid var(--line);
}
.cart-drawer-head h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 22px;
  font-weight: 600;
}

.icon-btn {
  width: 36px; height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: var(--surface-2);
  border-radius: var(--radius-xs);
  cursor: pointer;
  font-size: 14px;
  color: var(--text-soft);
  font-family: inherit;
  transition: all .15s ease;
}
.icon-btn:hover {
  background: var(--gold-surface);
  border-color: var(--gold);
  color: var(--text);
}

.cart-drawer-body {
  padding: 16px 20px;
  overflow-y: auto;
  overflow-x: hidden;
}

.cart-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 14px;
  padding: 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--surface-2);
  margin-bottom: 10px;
  transition: border-color .15s ease;
}
.cart-item:hover { border-color: var(--line-strong); }
.cart-item img {
  width: 64px; height: 64px;
  object-fit: contain;
  background: var(--surface);
  border-radius: var(--radius-xs);
  padding: 6px;
}
.cart-item h4 {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 600;
}
.cart-item .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.qty {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius-full);
  padding: 4px 6px;
}
.qty button {
  width: 26px; height: 26px;
  border-radius: var(--radius-full);
  border: 1px solid var(--line);
  background: var(--surface-2);
  cursor: pointer;
  font-size: 14px;
  font-family: inherit;
  color: var(--text);
  display: grid;
  place-items: center;
  transition: all .12s ease;
}
.qty button:hover {
  background: var(--gold-surface);
  border-color: var(--gold);
}
.qty span {
  min-width: 20px;
  text-align: center;
  font-weight: 700;
  font-size: 13px;
}

.remove {
  border: none;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  text-decoration: underline;
  font-size: 12px;
  font-family: inherit;
  padding: 4px 0;
  transition: color .15s ease;
}
.remove:hover { color: #c0392b; }

.cart-empty {
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  color: var(--muted);
}

.cart-drawer-foot {
  padding: 16px 20px 20px;
  border-top: 1px solid var(--line);
  background: var(--surface-2);
}

.cart-summary { display: grid; gap: 6px; margin-bottom: 14px; }
.cart-summary-row {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 14px;
}
.cart-summary-row.total {
  color: var(--text);
  font-weight: 700;
  font-size: 16px;
}

.cart-actions { display: grid; gap: 8px; }

.drawer-backdrop[hidden],
.cart-drawer[hidden] { display: none !important; }

.drawer-backdrop {
  opacity: 0;
  transition: opacity .25s var(--ease-out-expo);
}
.cart-drawer {
  transform: translateX(16px);
  opacity: 0;
  transition: transform .3s var(--ease-out-expo), opacity .25s ease;
  will-change: transform, opacity;
}
.drawer-backdrop.is-open { display: block !important; opacity: 1; }
.cart-drawer.is-open {
  display: grid !important;
  transform: translateX(0);
  opacity: 1;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: center;
}

.about-text h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  margin: 0 0 16px;
  font-size: 32px;
  font-weight: 600;
}
.about-text p {
  margin: 0 0 12px;
  color: var(--text-soft);
  line-height: 1.7;
}

.about-image img {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.about-highlights {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.mini {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius-sm);
  padding: 16px;
  transition: border-color .2s ease;
}
.mini:hover { border-color: var(--gold); }
.mini strong {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
  color: var(--gold);
}
.mini span {
  color: var(--muted);
  font-size: 13px;
}

.section-contact { border-top: 1px solid var(--line); }

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  align-items: start;
}

.contact-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}
.contact-form h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  margin: 0 0 6px;
  font-size: 28px;
  font-weight: 600;
}

.field { display: grid; gap: 6px; margin-top: 16px; }

label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: .5px;
}

input,
textarea,
select {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--text);
  font: inherit;
  font-size: 15px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
}

input::placeholder,
textarea::placeholder { color: var(--muted); }

.error { color: #c0392b; font-weight: 600; font-size: 13px; }

.form-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.fineprint { margin-top: 12px; font-size: 12px; color: var(--muted); }

.contact-info {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 28px;
}
.contact-info h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  margin-top: 0;
  font-size: 22px;
  font-weight: 600;
}
.contact-info p { color: var(--text-soft); line-height: 1.65; }
.contact-info a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-cta { margin-top: 20px; }
.contact-cta .btn { color: #1a1400; }

.whatsapp-float {
  position: fixed;
  right: 20px; bottom: 20px;
  width: 56px; height: 56px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-full);
  background: #25D366;
  color: #fff;
  box-shadow: 0 6px 24px rgba(37, 211, 102, .35);
  border: none;
  z-index: 95;
  transition: transform .2s var(--ease-spring), box-shadow .25s ease;
}
.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 32px rgba(37, 211, 102, .4);
  text-decoration: none;
}
.whatsapp-float:active { transform: translateY(-1px) scale(1); }

.wa-icon { width: 28px; height: 28px; display: block; }

.whatsapp-float:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px var(--gold), 0 10px 32px rgba(37, 211, 102, .4);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 48px 0 24px;
  background: var(--surface-2);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .6fr .6fr;
  gap: 28px;
  align-items: start;
}

.footer-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 600;
}

.footer-subtitle {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
}

.footer-links {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  gap: 8px;
}
.footer-links a {
  font-size: 14px;
  color: var(--text-soft);
  transition: color .15s ease;
}
.footer-links a:hover { color: var(--gold); text-decoration: none; }

.socials { display: flex; gap: 12px; }
.socials a {
  font-size: 14px;
  color: var(--text-soft);
  transition: color .15s ease;
}
.socials a:hover { color: var(--gold); text-decoration: none; }

.copyright {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  text-align: center;
  color: var(--muted);
  font-size: 12px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s var(--ease-out-expo), transform .6s var(--ease-out-expo);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .5s var(--ease-out-expo), transform .5s var(--ease-out-expo);
}
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: .05s; opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: .10s; opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: .15s; opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: .20s; opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: .25s; opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: .30s; opacity: 1; transform: translateY(0); }

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

.product-card {
  animation: cardIn .4s var(--ease-out-expo) both;
}

.results-count {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 16px;
  font-weight: 500;
}

.btn-added {
  background: #27ae60 !important;
  color: #fff !important;
  border-color: #27ae60 !important;
  pointer-events: none;
}

@media (max-width: 980px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .trust { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-highlights { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .site-nav {
    position: absolute;
    top: calc(var(--header-h) - 2px);
    left: 12px; right: 12px;
    display: none;
    flex-direction: column;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 8px;
    box-shadow: var(--shadow-md);
  }
  .site-nav.is-open { display: flex; }
  .nav-toggle { display: inline-flex; }
  .header-ctas > a.btn { display: none; }
  .products-grid { grid-template-columns: 1fr; }
  .trust { grid-template-columns: 1fr; }
  .about-highlights { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-content { padding: 48px 0; }
  .section { padding: 56px 0; }
}

@media (max-width: 480px) {
  .about-grid { gap: 24px; }
  .contact-form, .contact-info { padding: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-slide, .drawer-backdrop, .cart-drawer,
  .reveal, .reveal-stagger > * {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
  .btn, .product-card, .trust-card, .mini { transition: none; }
  .product-card { animation: none; }
}

.filter-bar { margin-bottom: 20px; }

.filter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 16px;
}

.filter-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.btn-clear-filters { flex-shrink: 0; }

.active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  flex: 1;
  min-width: 0;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  border: 1px solid var(--line-strong);
  background: var(--gold-surface);
  color: var(--text);
  font: inherit;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, transform .12s ease;
}
.chip:hover {
  background: var(--gold-glow);
  border-color: var(--gold);
}
.chip:active { transform: scale(.97); }
.chip:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px var(--gold-glow);
}
.chip .chip-x {
  font-size: 11px;
  color: var(--gold);
  font-weight: 700;
}

.no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 48px 20px;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--muted);
}
.no-results p { margin: 0 0 6px; }
.no-results strong { color: var(--text); }
.no-results .btn { margin-top: 14px; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 860px) {
  .filter-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .filter-grid { grid-template-columns: 1fr; }
  .filter-foot { flex-direction: column; align-items: stretch; }
  .btn-clear-filters { width: 100%; }
}

.legal {
  max-width: 760px;
  margin: 0 auto;
}
.legal h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(30px, 5vw, 42px);
  font-weight: 600;
  margin: 0 0 6px;
}
.legal .legal-updated {
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 28px;
}
.legal h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 24px;
  font-weight: 600;
  margin: 32px 0 10px;
}
.legal p,
.legal li {
  color: var(--text-soft);
  line-height: 1.7;
}
.legal ul {
  margin: 10px 0;
  padding-left: 22px;
}
.legal li { margin: 6px 0; }
.legal a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal a:hover { color: var(--gold-light); }

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translate(-50%, 16px);
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
  background: var(--text);
  color: var(--bg);
  border-radius: var(--radius-full, 999px);
  box-shadow: var(--shadow-md, 0 8px 30px rgba(0,0,0,.25));
  font-size: 14px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
  z-index: 999;
  max-width: min(92vw, 480px);
}
.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
  pointer-events: auto;
}
.toast-msg {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.toast-action {
  background: none;
  border: none;
  color: var(--gold);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  padding: 4px 2px;
  white-space: nowrap;
}
.toast-action:hover { text-decoration: underline; }

@media (prefers-reduced-motion: reduce) {
  .toast { transition: opacity .01s linear; transform: translate(-50%, 0); }
}

.load-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.copyright p { margin: 0; }
.credits { margin-top: 6px; }
.credits a { color: var(--text-soft); }
.credits a:hover { color: var(--gold); }
