/* =========================================================
   FORESTA PROPERTY LTD — Design system
   Professional / Clean / Modern / Natural
   ========================================================= */

:root {
  /* Brand palette */
  --forest:        #1E3D2F;  /* primary brand green */
  --forest-dark:   #14261C;  /* nav / headings */
  --forest-deep:   #23553B;  /* CTA green */
  --sage:          #7E9B7A;  /* secondary */
  --sage-soft:     #A9BCA3;  /* rules / accents */
  --sage-tint:     #EAF0E6;  /* soft green wash */
  --cream:         #F6F3EC;  /* page background */
  --cream-2:       #FBF9F4;  /* alt background */
  --white:         #FFFFFF;  /* cards */
  --charcoal:      #2A2E2B;  /* body text */
  --muted:         #5D655F;  /* secondary text */
  --line:          #E4DFD3;  /* borders */
  --line-2:        #EFEADF;
  --danger:        #A5442F;
  --gold:          #C9A24B;

  /* Type */
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Metrics */
  --wrap: 1180px;
  --radius: 4px;
  --radius-lg: 10px;
  --shadow-sm: 0 1px 2px rgba(20, 38, 28, .06);
  --shadow: 0 10px 30px rgba(20, 38, 28, .08);
  --shadow-lg: 0 24px 60px rgba(20, 38, 28, .16);
  --ease: cubic-bezier(.2, .7, .2, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--forest-dark);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -.01em;
  margin: 0 0 .5em;
}
h1 { font-size: clamp(2.1rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1rem; color: var(--muted); }

.wrap { width: min(100% - 40px, var(--wrap)); margin-inline: auto; }
.section { padding: 84px 0; }
.section--tight { padding: 56px 0; }
.bg-cream2 { background: var(--cream-2); }
.bg-sage  { background: var(--sage-tint); }
.center { text-align: center; }

/* Eyebrow — signature label motif */
.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--sans);
  font-size: .74rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--sage);
  margin: 0 0 1rem;
}
.eyebrow::before {
  content: ""; width: 22px; height: 1px; background: var(--sage-soft);
}
.center .eyebrow { justify-content: center; }

.lead { font-size: 1.12rem; color: var(--muted); max-width: 60ch; }
.center .lead { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .85rem 1.5rem;
  font-family: var(--sans); font-weight: 600; font-size: .95rem;
  border-radius: var(--radius); border: 1px solid transparent;
  transition: transform .15s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease), color .2s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--forest-deep); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--forest-dark); }
.btn-outline { background: transparent; color: var(--forest-dark); border-color: var(--sage-soft); }
.btn-outline:hover { background: var(--sage-tint); border-color: var(--sage); }
.btn-ghost { background: #fff; color: var(--forest-dark); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--sage); }
.btn-block { width: 100%; }
.btn-lg { padding: 1rem 1.8rem; font-size: 1rem; }
.btn[disabled] { opacity: .55; cursor: not-allowed; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(246,243,236,.88);
  backdrop-filter: saturate(120%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 74px; gap: 1.5rem;
}
.brand { display: inline-flex; align-items: center; gap: .6rem; }
.brand-mark {
  width: 34px; height: 34px; flex: none;
}
.brand-name {
  font-family: var(--serif); font-weight: 600; font-size: 1.35rem;
  color: var(--forest-dark); letter-spacing: .02em; line-height: 1;
}
.brand-name small {
  display: block; font-family: var(--sans); font-size: .55rem; font-weight: 600;
  letter-spacing: .32em; color: var(--sage); margin-top: 3px;
}
.main-nav { display: flex; align-items: center; gap: 1.8rem; }
.main-nav a {
  font-size: .93rem; font-weight: 500; color: var(--charcoal);
  position: relative; padding: 4px 0;
}
.main-nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1.5px; width: 0;
  background: var(--sage); transition: width .22s var(--ease);
}
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }
.main-nav a.active { color: var(--forest-dark); }

.has-drop { position: relative; }
.dropdown {
  position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%) translateY(6px);
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); padding: .5rem; min-width: 240px;
  opacity: 0; visibility: hidden; transition: .18s var(--ease);
}
.has-drop:hover .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown a {
  display: block; padding: .6rem .8rem; border-radius: 6px; font-size: .9rem; font-weight: 500;
}
.dropdown a::after { display: none; }
.dropdown a:hover { background: var(--sage-tint); }

.header-actions { display: flex; align-items: center; gap: .75rem; }
.cart-btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: var(--radius); border: 1px solid var(--line);
  background: #fff; color: var(--forest-dark);
}
.cart-btn:hover { border-color: var(--sage); }
.cart-count {
  position: absolute; top: -7px; right: -7px; min-width: 20px; height: 20px; padding: 0 5px;
  background: var(--forest-deep); color: #fff; border-radius: 999px;
  font-size: .7rem; font-weight: 700; display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--cream); transform: scale(0); transition: transform .2s var(--ease);
}
.cart-count.show { transform: scale(1); }
.nav-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); background: #fff; border-radius: var(--radius); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 76px 0 64px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero h1 { margin-bottom: 1rem; }
.hero .lead { margin-bottom: 1.8rem; }
.hero-cta { display: flex; gap: .8rem; flex-wrap: wrap; }
.hero-media { position: relative; }
.hero-media .frame {
  border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line);
  box-shadow: var(--shadow-lg); aspect-ratio: 4/3; background: var(--sage-tint);
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute; left: -18px; bottom: -18px; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: .9rem 1.1rem; box-shadow: var(--shadow);
  display: flex; align-items: center; gap: .7rem;
}
.hero-badge .b-mark { color: var(--forest-deep); }
.hero-badge strong { font-family: var(--serif); color: var(--forest-dark); font-size: 1.15rem; }
.hero-badge span { font-size: .78rem; color: var(--muted); display: block; }

/* Trust strip */
.trust { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--cream-2); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item {
  display: flex; align-items: center; gap: .8rem; padding: 22px 20px;
  border-right: 1px solid var(--line);
}
.trust-item:last-child { border-right: 0; }
.trust-item svg { color: var(--forest-deep); flex: none; }
.trust-item b { display: block; font-size: .92rem; color: var(--forest-dark); font-weight: 600; }
.trust-item span { font-size: .8rem; color: var(--muted); }

/* Section head */
.section-head { max-width: 62ch; margin-bottom: 44px; }
.section-head.center { margin-inline: auto; }
.section-head .head-row { display: flex; justify-content: space-between; align-items: flex-end; gap: 1.5rem; }

/* ---------- Feature cards ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.feature-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 28px 24px; transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feature-ico {
  width: 46px; height: 46px; border-radius: 10px; background: var(--sage-tint);
  display: flex; align-items: center; justify-content: center; color: var(--forest-deep);
  margin-bottom: 16px;
}
.feature-card h3 { font-size: 1.1rem; margin-bottom: .35rem; }
.feature-card p { font-size: .9rem; margin: 0; }

/* ---------- Product grid ---------- */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.product-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.product-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--sage-soft); }
.product-thumb {
  position: relative; aspect-ratio: 1/1; background: var(--sage-tint);
  border-bottom: 1px solid var(--line-2); overflow: hidden;
}
.product-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.product-card:hover .product-thumb img { transform: scale(1.04); }
.product-thumb .ph {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  color: var(--sage); opacity: .5;
}
.product-cat {
  position: absolute; top: 12px; left: 12px; background: rgba(255,255,255,.92);
  border: 1px solid var(--line); border-radius: 999px; padding: 4px 11px;
  font-size: .68rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--forest);
}
.product-body { padding: 18px 18px 20px; display: flex; flex-direction: column; flex: 1; }
.product-body h3 { font-size: 1.02rem; font-family: var(--sans); font-weight: 600; color: var(--forest-dark); margin-bottom: 6px; letter-spacing: 0; }
.product-desc { font-size: .85rem; color: var(--muted); margin-bottom: 14px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.product-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.price { font-family: var(--serif); font-size: 1.3rem; color: var(--forest-dark); font-weight: 600; }
.price small { font-family: var(--sans); font-size: .72rem; color: var(--muted); font-weight: 500; }
.add-mini {
  display: inline-flex; align-items: center; gap: .4rem; padding: .55rem .9rem;
  background: var(--forest-deep); color: #fff; border: 0; border-radius: var(--radius);
  font-weight: 600; font-size: .85rem; transition: background .2s;
}
.add-mini:hover { background: var(--forest-dark); }
.add-mini.added { background: var(--sage); }

/* Skeleton loader */
.skeleton { pointer-events: none; }
.skeleton .product-thumb, .skeleton .sk-line {
  background: linear-gradient(90deg, #ece7dc 25%, #f4f0e7 37%, #ece7dc 63%);
  background-size: 400% 100%; animation: shimmer 1.4s ease infinite;
}
.sk-line { height: 12px; border-radius: 4px; margin-bottom: 10px; }
.sk-line.w-60 { width: 60%; } .sk-line.w-40 { width: 40%; } .sk-line.w-80 { width: 80%; }
@keyframes shimmer { 0% { background-position: 100% 0; } 100% { background-position: -100% 0; } }

/* Filters */
.filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.filter-chip {
  padding: .5rem 1.1rem; border-radius: 999px; border: 1px solid var(--line);
  background: #fff; color: var(--muted); font-size: .88rem; font-weight: 500; transition: .18s var(--ease);
}
.filter-chip:hover { border-color: var(--sage); color: var(--forest-dark); }
.filter-chip.active { background: var(--forest-deep); color: #fff; border-color: var(--forest-deep); }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.step { position: relative; padding-top: 8px; }
.step-num {
  font-family: var(--serif); font-size: 2.4rem; color: var(--sage-soft); line-height: 1; margin-bottom: 12px;
}
.step h3 { font-size: 1.08rem; margin-bottom: .3rem; }
.step p { font-size: .9rem; margin: 0; }
.step::before { content: ""; }

/* ---------- Reviews ---------- */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px;
  display: flex; flex-direction: column;
}
.stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 14px; font-size: .95rem; }
.review p { color: var(--charcoal); font-size: .98rem; font-style: italic; margin-bottom: 20px; }
.review-by { margin-top: auto; display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 42px; height: 42px; border-radius: 50%; background: var(--forest); color: #fff;
  display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-weight: 600;
}
.review-by b { display: block; font-size: .92rem; color: var(--forest-dark); }
.review-by span { font-size: .8rem; color: var(--muted); }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--forest-dark); color: #fff; border-radius: var(--radius-lg);
  padding: 56px; text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(600px 200px at 20% 0%, rgba(126,155,122,.28), transparent 60%);
}
.cta-banner > * { position: relative; }
.cta-banner h2 { color: #fff; }
.cta-banner p { color: rgba(255,255,255,.78); max-width: 54ch; margin: 0 auto 1.8rem; }
.cta-banner .btn-primary { background: #fff; color: var(--forest-dark); }
.cta-banner .btn-primary:hover { background: var(--sage-tint); }
.cta-banner .btn-outline { color: #fff; border-color: rgba(255,255,255,.4); }
.cta-banner .btn-outline:hover { background: rgba(255,255,255,.1); }

/* ---------- Cart drawer ---------- */
.drawer-overlay {
  position: fixed; inset: 0; background: rgba(20,38,28,.42); backdrop-filter: blur(2px);
  opacity: 0; visibility: hidden; transition: .25s var(--ease); z-index: 90;
}
.drawer-overlay.open { opacity: 1; visibility: visible; }
.cart-drawer {
  position: fixed; top: 0; right: 0; height: 100%; width: min(420px, 100%);
  background: var(--cream); box-shadow: var(--shadow-lg); z-index: 100;
  transform: translateX(100%); transition: transform .3s var(--ease);
  display: flex; flex-direction: column;
}
.cart-drawer.open { transform: translateX(0); }
.drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 24px; border-bottom: 1px solid var(--line);
}
.drawer-head h3 { margin: 0; font-size: 1.2rem; }
.drawer-close { width: 38px; height: 38px; border: 1px solid var(--line); background: #fff; border-radius: var(--radius); color: var(--muted); }
.drawer-close:hover { color: var(--forest-dark); border-color: var(--sage); }
.drawer-body { flex: 1; overflow-y: auto; padding: 12px 24px; }
.cart-line { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line-2); }
.cart-line-img { width: 68px; height: 68px; border-radius: 8px; background: var(--sage-tint); object-fit: cover; border: 1px solid var(--line-2); flex: none; }
.cart-line-info { flex: 1; min-width: 0; }
.cart-line-info h4 { font-family: var(--sans); font-size: .92rem; font-weight: 600; color: var(--forest-dark); margin: 0 0 4px; }
.cart-line-price { font-size: .85rem; color: var(--muted); }
.qty { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; margin-top: 8px; background: #fff; }
.qty button { width: 30px; height: 30px; border: 0; background: #fff; color: var(--forest-dark); font-size: 1.05rem; line-height: 1; }
.qty button:hover { background: var(--sage-tint); }
.qty span { min-width: 34px; text-align: center; font-size: .9rem; font-weight: 600; }
.line-remove { background: none; border: 0; color: var(--muted); font-size: .78rem; margin-top: 8px; padding: 0; text-decoration: underline; }
.line-remove:hover { color: var(--danger); }
.cart-empty { text-align: center; padding: 60px 20px; color: var(--muted); }
.cart-empty svg { color: var(--sage-soft); margin-bottom: 16px; }
.drawer-foot { border-top: 1px solid var(--line); padding: 20px 24px; background: var(--cream-2); }
.drawer-total { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 14px; }
.drawer-total span { color: var(--muted); font-size: .95rem; }
.drawer-total b { font-family: var(--serif); font-size: 1.5rem; color: var(--forest-dark); }
.drawer-note { font-size: .76rem; color: var(--muted); text-align: center; margin: 12px 0 0; }

/* ---------- Product detail ---------- */
.pd-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.pd-media { position: sticky; top: 100px; }
.pd-main-img {
  border-radius: var(--radius-lg); border: 1px solid var(--line); overflow: hidden;
  aspect-ratio: 1/1; background: var(--sage-tint); box-shadow: var(--shadow-sm);
}
.pd-main-img img { width: 100%; height: 100%; object-fit: cover; }
.pd-thumbs { display: flex; gap: 12px; margin-top: 14px; }
.pd-thumbs img { width: 78px; height: 78px; border-radius: 8px; border: 1px solid var(--line); object-fit: cover; cursor: pointer; opacity: .7; transition: .18s; }
.pd-thumbs img:hover, .pd-thumbs img.active { opacity: 1; border-color: var(--sage); }
.pd-cat { color: var(--sage); font-weight: 600; font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; }
.pd-info h1 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin: 10px 0 14px; }
.pd-price { font-family: var(--serif); font-size: 2rem; color: var(--forest-dark); margin-bottom: 20px; }
.pd-desc { color: var(--muted); font-size: 1.02rem; margin-bottom: 26px; }
.pd-buy { display: flex; gap: 14px; align-items: center; margin-bottom: 26px; }
.pd-features { list-style: none; padding: 0; margin: 26px 0; border-top: 1px solid var(--line); }
.pd-features li { display: flex; gap: 12px; align-items: center; padding: 14px 0; border-bottom: 1px solid var(--line-2); font-size: .95rem; color: var(--charcoal); }
.pd-features svg { color: var(--forest-deep); flex: none; }

/* ---------- Content / legal pages ---------- */
.page-hero { background: var(--forest-dark); color: #fff; padding: 64px 0; }
.page-hero .eyebrow { color: var(--sage-soft); }
.page-hero h1 { color: #fff; margin: 0; }
.page-hero p { color: rgba(255,255,255,.8); margin: 12px 0 0; max-width: 60ch; }
.prose { max-width: 760px; }
.prose h2 { font-size: 1.5rem; margin: 40px 0 12px; }
.prose h3 { margin: 28px 0 8px; color: var(--forest); }
.prose p, .prose li { color: var(--charcoal); }
.prose ul { padding-left: 20px; margin: 0 0 1rem; }
.prose li { margin-bottom: 8px; }
.prose a { color: var(--forest-deep); text-decoration: underline; }
.prose .updated { font-size: .85rem; color: var(--muted); margin-bottom: 30px; }

/* FAQ accordion */
.faq-list { max-width: 820px; margin-inline: auto; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; margin-bottom: 12px; overflow: hidden; }
.faq-q { width: 100%; text-align: left; background: none; border: 0; padding: 20px 24px; display: flex; justify-content: space-between; align-items: center; gap: 16px; font-size: 1.02rem; font-weight: 600; color: var(--forest-dark); }
.faq-q .chev { transition: transform .2s var(--ease); color: var(--sage); flex: none; }
.faq-item.open .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .28s var(--ease); }
.faq-a-inner { padding: 0 24px 22px; color: var(--muted); }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-card { display: flex; gap: 16px; padding: 22px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); }
.contact-card .ci { width: 44px; height: 44px; border-radius: 10px; background: var(--sage-tint); color: var(--forest-deep); display: flex; align-items: center; justify-content: center; flex: none; }
.contact-card b { color: var(--forest-dark); display: block; margin-bottom: 3px; }
.contact-card a, .contact-card span { color: var(--muted); font-size: .95rem; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: .85rem; font-weight: 600; color: var(--forest-dark); margin-bottom: 6px; }
.field input, .field textarea, .field select {
  width: 100%; padding: .8rem 1rem; border: 1px solid var(--line); border-radius: var(--radius);
  font-family: inherit; font-size: .95rem; background: #fff; color: var(--charcoal); transition: border-color .18s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--sage); box-shadow: 0 0 0 3px rgba(126,155,122,.15); }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px; }

/* Status pages (success / cancel) */
.status-wrap { min-height: 66vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 60px 0; }
.status-card { max-width: 560px; }
.status-ico { width: 84px; height: 84px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; }
.status-ico.ok { background: var(--sage-tint); color: var(--forest-deep); }
.status-ico.warn { background: #f6ede6; color: var(--danger); }

/* Notice / toast */
.toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--forest-dark); color: #fff; padding: 14px 22px; border-radius: var(--radius);
  box-shadow: var(--shadow-lg); font-size: .92rem; z-index: 200; opacity: 0; transition: .25s var(--ease);
  display: flex; align-items: center; gap: 10px;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

.empty-state { text-align: center; padding: 70px 20px; grid-column: 1 / -1; color: var(--muted); }
.empty-state svg { color: var(--sage-soft); margin-bottom: 16px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--forest-dark); color: rgba(255,255,255,.72); padding: 66px 0 0; margin-top: 20px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.footer-brand .brand-name { color: #fff; }
.footer-brand p { color: rgba(255,255,255,.6); font-size: .92rem; margin: 16px 0 0; max-width: 34ch; }
.footer-col h4 { color: #fff; font-family: var(--sans); font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col a { display: block; color: rgba(255,255,255,.66); font-size: .92rem; padding: 6px 0; transition: color .16s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 22px 0; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; font-size: .82rem; color: rgba(255,255,255,.5); }
.footer-pay { display: flex; align-items: center; gap: 8px; }
.footer-pay span { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-media { order: -1; }
  .feature-grid, .steps { grid-template-columns: repeat(2, 1fr); }
  .product-grid, .product-grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
  .review-grid { grid-template-columns: 1fr; }
  .pd-grid, .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .pd-media { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(2) { border-right: 0; }
}
@media (max-width: 680px) {
  .section { padding: 60px 0; }
  .main-nav { display: none; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .main-nav.mobile-open {
    display: flex; position: absolute; top: 74px; left: 0; right: 0; flex-direction: column;
    align-items: stretch; gap: 0; background: var(--cream); border-bottom: 1px solid var(--line);
    padding: 12px 20px 20px; box-shadow: var(--shadow);
  }
  .main-nav.mobile-open a { padding: 12px 0; border-bottom: 1px solid var(--line-2); }
  .main-nav.mobile-open .has-drop .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; padding: 0 0 8px 14px; min-width: 0; }
  .feature-grid, .steps, .footer-grid, .trust-grid { grid-template-columns: 1fr; }
  .product-grid, .product-grid.cols-3 { grid-template-columns: 1fr 1fr; gap: 14px; }
  .cta-banner { padding: 40px 24px; }
  .section-head .head-row { flex-direction: column; align-items: flex-start; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
