:root {
  --ink: #16241d;
  --ink-soft: #3d5248;
  --muted: #6b7c73;
  --line: #d9ddd6;
  --paper: #fbf8f2;
  --card: #ffffff;
  --green: #1c5c43;
  --green-dark: #12382a;
  --green-light: #e7f1eb;
  --gold: #b3873c;
  --gold-soft: #f3ead6;
  --amazon: #ff9900;
  --shadow: 0 12px 30px rgba(18, 56, 42, 0.08);
  --radius: 18px;
  --max: 1120px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Outfit", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

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

a { color: var(--green); text-decoration: none; }
a:hover { color: var(--green-dark); }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(251, 248, 242, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
}

.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--green-dark);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.logo-text {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.logo-text em {
  font-style: normal;
  color: var(--gold);
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav a {
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 500;
}

.nav a:hover,
.nav a.active { color: var(--green-dark); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 10px;
  width: 42px;
  height: 42px;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 11px 18px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: inherit;
}

.btn-amazon {
  background: var(--amazon);
  color: #111 !important;
}

.btn-primary {
  background: var(--green-dark);
  color: #fff !important;
}

.btn-ghost {
  border-color: var(--line);
  background: #fff;
  color: var(--ink) !important;
}

.hero {
  padding: 72px 0 36px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  font-weight: 700;
  margin: 0 0 12px;
}

h1, h2, h3 {
  font-family: "Fraunces", Georgia, serif;
  line-height: 1.15;
  margin: 0 0 14px;
}

h1 { font-size: clamp(2.1rem, 4vw, 3.4rem); font-weight: 600; }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: 1.15rem; }

.lede {
  font-size: 1.08rem;
  color: var(--ink-soft);
  max-width: 52ch;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-card {
  background: var(--card);
  border-radius: 28px;
  padding: 18px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.hero-card img {
  width: 100%;
  height: 320px;
  object-fit: contain;
  background: var(--green-light);
  border-radius: 18px;
}

.hero-card figcaption {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
  font-size: 0.95rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 36px 0 8px;
}

.stat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
}

.stat strong { display: block; font-size: 1.3rem; }
.stat span { color: var(--muted); font-size: 0.88rem; }

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

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

.category {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  min-height: 150px;
}

.category span {
  display: inline-block;
  background: var(--gold-soft);
  color: #7a5a1c;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 14px;
}

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

.product-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.product-card img {
  height: 220px;
  width: 100%;
  object-fit: contain;
  background: #f3f6f3;
  padding: 16px;
}

.product-body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.product-body .btn { margin-top: auto; }

.tag {
  font-size: 0.75rem;
  color: var(--green);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.price { font-weight: 700; }
.mrp { color: var(--muted); text-decoration: line-through; font-weight: 500; font-size: 0.9rem; }

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.filter-btn {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 8px 14px;
  cursor: pointer;
  font-family: inherit;
}

.filter-btn.active {
  background: var(--green-dark);
  color: #fff;
  border-color: var(--green-dark);
}

.hidden { display: none !important; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 24px;
}

.page-hero {
  padding: 56px 0 12px;
}

.legal h2 { margin-top: 32px; font-size: 1.35rem; }
.legal p, .legal li { color: var(--ink-soft); }
.legal ul { padding-left: 18px; }

.form {
  display: grid;
  gap: 14px;
}

label { font-weight: 600; font-size: 0.92rem; }

input, textarea, select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
  background: #fff;
}

textarea { min-height: 140px; resize: vertical; }

.notice {
  background: var(--gold-soft);
  border-radius: 14px;
  padding: 14px 16px;
  color: #5d4414;
  font-size: 0.92rem;
}

.site-footer {
  margin-top: 48px;
  background: var(--green-dark);
  color: #e8efe9;
  padding: 48px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 24px;
}

.site-footer a { color: #e8efe9; }
.site-footer h3 { color: #fff; font-family: inherit; font-size: 0.95rem; letter-spacing: 0.08em; text-transform: uppercase; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin: 8px 0; }

.copyright {
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 28px;
  padding-top: 16px;
  font-size: 0.85rem;
  color: #b7c7bc;
}

.amazon-banner {
  background: var(--green);
  color: #fff;
  border-radius: 24px;
  padding: 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

@media (max-width: 900px) {
  .hero, .split, .grid, .categories, .footer-grid, .stats, .amazon-banner {
    grid-template-columns: 1fr;
    display: grid;
  }
  .nav-toggle { display: grid; place-items: center; }
  .nav {
    display: none;
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 16px 20px 22px;
    flex-direction: column;
    align-items: flex-start;
  }
  .nav.open { display: flex; }
  .hero { padding-top: 36px; }
}
