/* === Design Tokens === */
:root {
  --ink: #253611;
  --forest: #5c8f18;
  --pine: #9be931;
  --sage: #baf06f;
  --moss: #7ba62d;
  --leaf: #e2f8bb;
  --cream: #f6f4ee;
  --parchment: #edeae3;
  --gold: #7fb324;
  --amber: #b7eb69;
  --stone: #809065;
}

* { box-sizing: border-box; margin: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Inter", system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* Subtle paper grain texture */
.grain {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px 180px;
}

/* === Typography === */
.section-label {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 1.2rem;
}
.section-label.light { color: rgba(246, 244, 238, 0.6); }

.section-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--forest);
}
.section-title em {
  font-style: italic;
  color: var(--pine);
}
.section-title.light { color: var(--cream); }

/* === Header === */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(26, 60, 43, 0.06);
  background: rgba(246, 244, 238, 0.88);
  backdrop-filter: blur(16px) saturate(1.2);
  transition: box-shadow 300ms ease;
}
.site-header.scrolled {
  box-shadow: 0 10px 40px rgba(15, 31, 23, 0.06);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--forest);
}
.logo svg { width: 36px; height: 36px; }
.logo-title {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.01em;
}
.logo-sub {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--moss);
  margin-top: 2px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.nav-cart-wrap {
  display: flex;
  align-items: center;
}
.nav-cart-btn {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(26, 60, 43, 0.12);
  background: rgba(255, 255, 255, 0.78);
  color: var(--forest);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}
.nav-cart-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(26, 60, 43, 0.22);
  box-shadow: 0 10px 24px rgba(15, 31, 23, 0.08);
}
.nav-cart-btn svg {
  width: 18px;
  height: 18px;
}
.nav-cart-count {
  position: absolute;
  top: -0.15rem;
  right: -0.15rem;
  min-width: 1.2rem;
  height: 1.2rem;
  padding: 0 0.2rem;
  border-radius: 999px;
  background: var(--forest);
  color: var(--cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.62rem;
  font-weight: 700;
  line-height: 1;
}
.nav-auth {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 120px;
}
.nav-quick-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.nav-login-btn,
.nav-profile-trigger {
  font-family: "Inter", sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease, border-color 200ms ease;
}
.nav-login-btn {
  border: 1px solid rgba(26, 60, 43, 0.12);
  background: rgba(255, 255, 255, 0.72);
  color: var(--forest);
  padding: 0.72rem 1.15rem;
  text-decoration: none;
  cursor: pointer;
}
.nav-login-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(26, 60, 43, 0.22);
  box-shadow: 0 10px 24px rgba(15, 31, 23, 0.08);
}
.nav-track-mobile {
  display: none;
}
.nav-save-later-btn {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(26, 60, 43, 0.12);
  background: rgba(255, 255, 255, 0.78);
  color: var(--forest);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}
.nav-save-later-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(26, 60, 43, 0.22);
  box-shadow: 0 10px 24px rgba(15, 31, 23, 0.08);
}
.nav-save-later-btn svg {
  width: 18px;
  height: 18px;
}
.nav-save-later-count {
  position: absolute;
  top: -0.15rem;
  right: -0.15rem;
  min-width: 1.2rem;
  height: 1.2rem;
  padding: 0 0.2rem;
  border-radius: 999px;
  background: var(--forest);
  color: var(--cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.62rem;
  font-weight: 700;
  line-height: 1;
}
.nav-profile-wrap {
  position: relative;
}
.nav-profile-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  border: 1px solid rgba(26, 60, 43, 0.08);
  background: rgba(255, 255, 255, 0.86);
  padding: 0.35rem 0.5rem 0.35rem 0.4rem;
  cursor: pointer;
  color: var(--forest);
}
.nav-profile-trigger:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 25px rgba(15, 31, 23, 0.08);
}
.nav-profile-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--forest), var(--sage));
  color: var(--cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}
.nav-profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.nav-profile-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}
.nav-profile-meta strong,
.nav-profile-meta span {
  max-width: 112px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.nav-profile-meta strong {
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}
.nav-profile-meta span {
  font-size: 0.65rem;
  color: var(--stone);
  text-transform: none;
  letter-spacing: 0.02em;
}
.nav-profile-dropdown {
  position: absolute;
  top: calc(100% + 0.7rem);
  right: 0;
  min-width: 220px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(26, 60, 43, 0.08);
  box-shadow: 0 22px 42px rgba(15, 31, 23, 0.12);
  border-radius: 20px;
  padding: 0.55rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 180ms ease, transform 180ms ease;
}
.nav-profile-wrap.open .nav-profile-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.nav-profile-dropdown a,
.nav-profile-dropdown button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.55rem;
  border: none;
  background: transparent;
  color: var(--forest);
  text-decoration: none;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
}
.nav-profile-dropdown a:hover,
.nav-profile-dropdown button:hover {
  background: rgba(26, 60, 43, 0.06);
}
.nav-link {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: var(--ink);
  position: relative;
  padding-bottom: 4px;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 1.5px;
  background: var(--forest);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
}
.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav-cta {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: #1b2a08;
  background: linear-gradient(135deg, #b8f36c 0%, var(--pine) 52%, #85d41f 100%);
  padding: 0.72rem 1.45rem;
  border-radius: 999px;
  border: 1px solid rgba(91, 143, 24, 0.22);
  box-shadow: 0 14px 28px rgba(155, 233, 49, 0.34);
  transition: transform 220ms ease, box-shadow 220ms ease, filter 220ms ease;
}
.nav-cta:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 18px 34px rgba(155, 233, 49, 0.42);
  filter: saturate(1.06);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--forest);
  transition: 260ms ease;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* === Hero === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-image {
  position: absolute;
  inset: 0;
}
.hero-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.95) brightness(1.04) contrast(0.98);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(246, 244, 238, 0.92) 0%, rgba(226, 248, 187, 0.68) 46%, rgba(186, 240, 111, 0.28) 100%),
    radial-gradient(circle at 78% 16%, rgba(155, 233, 49, 0.34), transparent 18rem);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 9rem 2rem 6rem;
  width: 100%;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 1.8rem;
}
.hero-tag .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--sage);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--ink);
  max-width: 800px;
}
.hero-title em {
  font-style: italic;
  color: var(--forest);
}

.hero-desc {
  max-width: 460px;
  margin-top: 2rem;
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(37, 54, 17, 0.8);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2.6rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: "Inter", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: #1b2a08;
  background: linear-gradient(135deg, #c4f67f 0%, var(--pine) 50%, #88d91d 100%);
  padding: 1rem 2rem;
  border-radius: 999px;
  border: 1px solid rgba(91, 143, 24, 0.18);
  cursor: pointer;
  box-shadow: 0 16px 34px rgba(155, 233, 49, 0.32);
  transition: transform 220ms ease, box-shadow 220ms ease, filter 220ms ease;
}
.btn-primary svg { width: 18px; height: 18px; }
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 38px rgba(155, 233, 49, 0.42);
  filter: saturate(1.05);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  font-family: "Inter", sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-decoration: none;
  color: rgba(37, 54, 17, 0.86);
  padding: 1rem 1.8rem;
  border: 1px solid rgba(91, 143, 24, 0.2);
  border-radius: 2px;
  transition: all 220ms ease;
}
.btn-ghost:hover {
  background: rgba(155, 233, 49, 0.12);
  border-color: rgba(91, 143, 24, 0.34);
}

/* Floating stats on hero */
.hero-stat {
  position: absolute;
  z-index: 3;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0.14));
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  padding: 1.2rem 1.6rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  box-shadow:
    0 18px 50px rgba(37, 54, 17, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
}
.hero-stat strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: rgb(62 95 20);
  line-height: 1;
}
.hero-stat span {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  color: rgba(37, 54, 17, 0.76);
  margin-top: 0.35rem;
  letter-spacing: 0.03em;
}
.stat-rating {
  right: 4vw;
  top: 28vh;
  animation: float 5s ease-in-out infinite;
}
.stat-natural {
  right: 12vw;
  bottom: 16vh;
  animation: float 5s ease-in-out infinite 1.5s;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* === Marquee === */
.marquee-bar {
  background: linear-gradient(90deg, #82c71d 0%, var(--pine) 52%, #74bb15 100%);
  overflow: hidden;
  padding: 0.85rem 0;
}
.marquee-track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee-track span {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(27, 42, 8, 0.86);
  white-space: nowrap;
}
.marquee-track .sep {
  color: var(--gold);
  font-size: 0.5rem;
  display: flex;
  align-items: center;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* === Featured products === */
.featured-products {
  max-width: 1280px;
  margin: 0 auto;
  padding: 6rem 2rem 5rem;
}
.featured-products-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.8rem;
}
.featured-products-head .section-title {
  max-width: 640px;
}
.featured-products-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.3rem;
  border: 1px solid rgba(26, 60, 43, 0.12);
  text-decoration: none;
  color: var(--forest);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.74);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}
.featured-products-link:hover {
  transform: translateY(-2px);
  border-color: rgba(26, 60, 43, 0.22);
  box-shadow: 0 16px 30px rgba(15, 31, 23, 0.08);
}
.featured-products-status {
  display: none;
  margin-bottom: 1rem;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(26, 60, 43, 0.08);
  background: rgba(255, 255, 255, 0.8);
  color: var(--stone);
  font-size: 0.84rem;
}
.featured-products-status.visible {
  display: block;
}
.featured-products-grid {
  display: flex;
  gap: 1.2rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  padding-bottom: 0.5rem;
  -webkit-overflow-scrolling: touch;
}
.featured-products-grid::-webkit-scrollbar {
  height: 6px;
}
.featured-products-grid::-webkit-scrollbar-track {
  background: rgba(26, 60, 43, 0.08);
  border-radius: 3px;
}
.featured-products-grid::-webkit-scrollbar-thumb {
  background: rgba(26, 60, 43, 0.24);
  border-radius: 3px;
}
.featured-products-grid::-webkit-scrollbar-thumb:hover {
  background: rgba(26, 60, 43, 0.35);
}

.featured-products-grid .product-item {
  flex: 0 0 calc(25% - 0.9rem);
  min-width: 240px;
  max-width: 280px;
}

.featured-products-grid .product-item-body {
  padding: 1rem;
}

.featured-products-grid .product-item-copy {
  min-height: 2.8rem;
  font-size: 0.78rem;
}

.featured-products-grid .product-price strong {
  font-size: 1rem;
}

.featured-products-grid .product-add {
  padding: 0.6rem 0.9rem;
  font-size: 0.68rem;
}
.product-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.product-item {
  position: relative;
  background: #fff;
  border: 1px solid rgba(26, 60, 43, 0.08);
  border-radius: 2px;
  overflow: hidden;
  transition: box-shadow 300ms ease, transform 300ms ease, border-color 300ms ease;
  box-shadow: 0 12px 35px rgba(15, 31, 23, 0.04);
}
.product-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--forest), var(--leaf));
}
.product-item:hover {
  box-shadow: 0 20px 50px rgba(15, 31, 23, 0.08);
  transform: translateY(-4px);
  border-color: rgba(26, 60, 43, 0.14);
}
.product-item-image {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  padding: 1rem;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0) 45%),
    linear-gradient(180deg, rgba(26, 60, 43, 0.04), rgba(26, 60, 43, 0.12));
}
.product-item-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 400ms ease;
}
.product-item:hover .product-item-image img {
  transform: scale(1.04);
}
.product-item-tag,
.product-stock {
  position: absolute;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.42rem 0.7rem;
  border-radius: 2px;
  backdrop-filter: blur(10px);
}
.product-item-tag {
  top: 1rem;
  left: 1rem;
  background: rgba(255, 255, 255, 0.94);
  color: var(--forest);
}
.product-stock {
  right: 1rem;
  bottom: 1rem;
  background: rgba(26, 60, 43, 0.9);
  color: var(--cream);
}
.product-wishlist-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 999px;
  border: 1px solid rgba(26, 60, 43, 0.12);
  background: rgba(255, 255, 255, 0.92);
  color: var(--forest);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  cursor: pointer;
  transition: transform 200ms ease, background 200ms ease, color 200ms ease;
}
.product-wishlist-btn:hover {
  transform: translateY(-2px);
}
.product-wishlist-btn.active {
  background: var(--forest);
  color: var(--cream);
}
.product-wishlist-btn svg {
  width: 16px;
  height: 16px;
}
.product-item-body {
  padding: 1.45rem;
}
.product-item-label {
  display: inline-block;
  margin-bottom: 0.65rem;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone);
  text-decoration: none;
}
.product-item-label:hover {
  color: var(--forest);
}
.product-item-body h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.48rem;
  font-weight: 600;
  color: var(--forest);
  line-height: 1.08;
}
.product-item-form {
  margin-top: 0.35rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--moss);
  text-transform: uppercase;
}
.product-item-title {
  color: var(--forest);
  text-decoration: none;
  transition: color 200ms ease;
}
.product-item-title:hover {
  color: var(--pine);
}
.product-item-copy {
  font-size: 0.82rem;
  line-height: 1.72;
  color: rgba(15, 31, 23, 0.58);
  margin-top: 0.55rem;
  min-height: 3.55rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-item-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.3rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(26, 60, 43, 0.08);
}
.product-price {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.product-price strong {
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--forest);
}
.product-price span {
  font-size: 0.78rem;
  color: var(--stone);
  text-decoration: line-through;
}
.product-add,
.product-card-qty-btn {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.7rem 1.05rem;
  background: var(--forest);
  color: var(--cream);
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background 200ms ease, transform 200ms ease;
}
.product-add:hover,
.product-card-qty-btn:hover {
  background: var(--pine);
  transform: translateY(-1px);
}

.featured-product-card {
  background: #fff;
  border: 1px solid rgba(26, 60, 43, 0.08);
  box-shadow: 0 16px 40px rgba(15, 31, 23, 0.05);
  overflow: hidden;
  transition: transform 280ms ease, box-shadow 280ms ease, border-color 280ms ease;
}
.featured-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(15, 31, 23, 0.09);
  border-color: rgba(26, 60, 43, 0.15);
}
.featured-product-media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  padding: 1rem;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0) 45%),
    linear-gradient(180deg, rgba(26, 60, 43, 0.04), rgba(26, 60, 43, 0.12));
}
.featured-product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 400ms ease;
}
.featured-product-card:hover .featured-product-media img {
  transform: scale(1.04);
}
.featured-product-tag,
.featured-product-stock {
  position: absolute;
  padding: 0.4rem 0.7rem;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.featured-product-tag {
  top: 0.9rem;
  left: 0.9rem;
  background: rgba(255, 255, 255, 0.94);
  color: var(--forest);
}
.featured-product-stock {
  right: 0.9rem;
  bottom: 0.9rem;
  background: rgba(26, 60, 43, 0.9);
  color: var(--cream);
}
.featured-product-body {
  padding: 1.2rem;
}
.featured-product-label {
  display: inline-block;
  margin-bottom: 0.55rem;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone);
  text-decoration: none;
}
.featured-product-label:hover {
  color: var(--forest);
}
.featured-product-title,
.product-item-title {
  color: rgb(62 95 20);
  text-decoration: none;
}
.featured-product-title {
  display: inline-block;
  font-family: "Fraunces", "Cormorant Garamond", serif;
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.04;
}
.featured-product-form {
  margin-top: 0.35rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--moss);
  text-transform: uppercase;
}
.product-item-title {
  font-family: "Fraunces", "Cormorant Garamond", serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  transition: color 200ms ease;
}
.product-item-body h3 {
  font-family: "Fraunces", "Cormorant Garamond", serif;
  font-size: 1.42rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: rgb(62 95 20);
  line-height: 1.08;
}
.featured-product-copy {
  margin-top: 0.55rem;
  min-height: 3.55rem;
  font-size: 0.82rem;
  line-height: 1.72;
  color: rgba(15, 31, 23, 0.58);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.featured-product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(26, 60, 43, 0.08);
}
.featured-product-price {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
}
.featured-product-price strong {
  font-size: 1rem;
  color: var(--forest);
}
.featured-product-price span {
  font-size: 0.76rem;
  color: var(--stone);
  text-decoration: line-through;
}
.featured-product-add {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.7rem 0.95rem;
  border: none;
  background: var(--forest);
  color: var(--cream);
  cursor: pointer;
  transition: background 220ms ease, transform 220ms ease;
}
.featured-product-add:hover {
  background: var(--pine);
  transform: translateY(-1px);
}
.featured-product-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(26, 60, 43, 0.12);
  background: rgba(26, 60, 43, 0.03);
}
.featured-product-qty-btn {
  width: 2.2rem;
  height: 2.5rem;
  border: none;
  background: transparent;
  color: var(--forest);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
}
.featured-product-qty span {
  min-width: 2rem;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--forest);
}

/* === Shared cart drawer === */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 31, 23, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease;
  z-index: 90;
}
.cart-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: min(420px, 100%);
  height: 100vh;
  background: #fff;
  border-left: 1px solid rgba(26, 60, 43, 0.08);
  box-shadow: -24px 0 70px rgba(15, 31, 23, 0.12);
  transform: translateX(100%);
  transition: transform 320ms ease;
  z-index: 100;
  display: flex;
  flex-direction: column;
}
.cart-sidebar.open {
  transform: translateX(0);
}
.cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 1.4rem 1.1rem;
  border-bottom: 1px solid rgba(26, 60, 43, 0.08);
}
.cart-head h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  color: var(--forest);
  line-height: 1;
}
.cart-close {
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(26, 60, 43, 0.12);
  background: transparent;
  color: var(--forest);
  font-size: 1.4rem;
  cursor: pointer;
}
.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.15rem 1.4rem;
}
.cart-empty {
  padding: 2rem 0;
  color: var(--stone);
  font-size: 0.88rem;
  line-height: 1.8;
}
.cart-item {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 0.95rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(26, 60, 43, 0.08);
}
.cart-item img {
  width: 84px;
  height: 84px;
  object-fit: cover;
  border-radius: 2px;
}
.cart-item h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  color: var(--forest);
  line-height: 1.1;
}
.cart-item-meta {
  margin-top: 0.4rem;
  font-size: 0.74rem;
  color: var(--stone);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.cart-item-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.85rem;
  gap: 0.8rem;
}
.cart-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(26, 60, 43, 0.12);
}
.cart-qty button {
  width: 2rem;
  height: 2rem;
  border: none;
  background: transparent;
  color: var(--forest);
  cursor: pointer;
}
.cart-qty span {
  min-width: 2rem;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--forest);
}
.cart-remove {
  border: none;
  background: transparent;
  color: var(--stone);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0;
}
.cart-foot {
  position: sticky;
  bottom: 0;
  z-index: 2;
  padding: 1.2rem 1.4rem 1.4rem;
  padding-bottom: calc(1.4rem + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid rgba(26, 60, 43, 0.08);
  background: #fff;
  box-shadow: 0 -10px 24px rgba(15, 31, 23, 0.06);
}
.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  color: var(--stone);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.cart-total strong {
  font-size: 1.2rem;
  color: var(--forest);
}
.cart-checkout {
  width: 100%;
  border: none;
  background: var(--forest);
  color: var(--cream);
  padding: 0.95rem 1rem;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  cursor: pointer;
}
.cart-checkout:hover {
  background: var(--pine);
}

/* === About === */
.about {
  max-width: 1280px;
  margin: 0 auto;
  padding: 8rem 2rem;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 4rem;
  align-items: center;
}

.about-visual {
  position: relative;
}
.about-visual img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 2px;
  filter: saturate(0.9) contrast(1.02);
}
.about-visual-caption {
  position: absolute;
  bottom: -1.2rem;
  right: -1.2rem;
  background: var(--forest);
  color: var(--cream);
  padding: 1rem 1.4rem;
  border-radius: 2px;
}
.about-visual-caption span {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.6;
}

.about-copy p {
  font-size: 0.95rem;
  line-height: 1.85;
  color: rgba(15, 31, 23, 0.72);
  margin-top: 1.4rem;
}
.about-metrics {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(26, 60, 43, 0.08);
}
.about-metrics strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--forest);
  line-height: 1;
}
.about-metrics span {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--stone);
  margin-top: 0.4rem;
  letter-spacing: 0.04em;
}

/* === Principles === */
.principles {
  background: linear-gradient(135deg, rgba(226, 248, 187, 0.9), rgba(186, 240, 111, 0.92));
  padding: 7rem 2rem;
}
.principles .section-label.light,
.principles .section-title.light {
  color: rgb(62 95 20);
}
.principles-header {
  max-width: 1280px;
  margin: 0 auto 4rem;
}
.principles-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.principle-card {
  background: rgba(255,255,255,0.42);
  border: 1px solid rgba(91, 143, 24, 0.12);
  padding: 2.2rem;
  border-radius: 2px;
  transition: transform 300ms ease, background 300ms ease;
}
.principle-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.56);
}
.principle-card.featured {
  background: rgba(255,255,255,0.68);
  border-color: rgba(91, 143, 24, 0.18);
  margin-top: -1.5rem;
}
.principle-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.6rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1.2rem;
}
.principle-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 0.8rem;
}
.principle-card p {
  font-size: 0.85rem;
  line-height: 1.75;
  color: rgba(37, 54, 17, 0.72);
}

/* === Contact === */
.contact {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem 8rem;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 0;
  align-items: stretch;
}
.contact-visual {
  position: relative;
  overflow: hidden;
}
.contact-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.85);
}
.contact-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 60%, var(--cream) 100%);
}
.contact-form-wrap {
  background: #fff;
  padding: 3.5rem;
  border: 1px solid rgba(26, 60, 43, 0.06);
  border-left: none;
  margin-left: -3rem;
  position: relative;
  z-index: 2;
}
.contact-lead {
  font-size: 0.9rem;
  line-height: 1.75;
  color: rgba(15, 31, 23, 0.6);
  margin: 1.2rem 0 2rem;
  max-width: 400px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  font-family: "Inter", sans-serif;
  font-size: 0.88rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(26, 60, 43, 0.1);
  border-radius: 2px;
  background: var(--cream);
  color: var(--ink);
  outline: none;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(106, 170, 130, 0.12);
}
.contact-form textarea { resize: vertical; min-height: 100px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
}
.contact-form > input,
.contact-form > textarea { margin-bottom: 0.8rem; }
.contact-form .btn-primary { margin-top: 0.4rem; }

.contact-direct {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(26, 60, 43, 0.06);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.contact-direct a,
.contact-direct span {
  font-size: 0.82rem;
  color: var(--stone);
  text-decoration: none;
  transition: color 200ms ease;
}
.contact-direct a:hover { color: var(--forest); }

/* === Footer === */
.site-footer {
  background: var(--forest);
  color: var(--cream);
  padding: 5rem 2rem 2rem;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 4rem;
  align-items: start;
}
.footer-brand .logo { color: var(--cream); }
.footer-brand .logo-sub { color: var(--leaf); }
.footer-brand p {
  max-width: 280px;
  margin-top: 1.2rem;
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(246, 244, 238, 0.55);
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.footer-links strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(246, 244, 238, 0.5);
  margin-bottom: 1.2rem;
}
.footer-links a {
  display: block;
  font-size: 0.85rem;
  color: rgba(246, 244, 238, 0.7);
  text-decoration: none;
  padding: 0.25rem 0;
  transition: color 200ms ease;
}
.footer-links a:hover { color: var(--cream); }

.footer-bottom {
  max-width: 1280px;
  margin: 4rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: rgba(246, 244, 238, 0.35);
  letter-spacing: 0.04em;
}

/* === Policy Pages === */
.policy-page {
  padding: 8.5rem 2rem 5rem;
}
.policy-shell {
  max-width: 980px;
  margin: 0 auto;
}
.policy-hero {
  padding: 2.5rem;
  border: 1px solid rgba(26, 60, 43, 0.08);
  background:
    radial-gradient(circle at top right, rgba(106, 170, 130, 0.16), transparent 18rem),
    linear-gradient(180deg, rgba(246, 244, 238, 0.94), rgba(255, 255, 255, 0.98));
  box-shadow: 0 18px 50px rgba(15, 31, 23, 0.05);
}
.policy-meta {
  margin-top: 1rem;
  font-size: 0.82rem;
  color: var(--stone);
  line-height: 1.8;
}
.policy-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.policy-card {
  padding: 1.65rem;
  border: 1px solid rgba(26, 60, 43, 0.08);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 12px 34px rgba(15, 31, 23, 0.04);
}
.policy-card h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  color: var(--forest);
  line-height: 1.02;
}
.policy-card p,
.policy-card li {
  margin-top: 0.85rem;
  font-size: 0.94rem;
  line-height: 1.85;
  color: rgba(15, 31, 23, 0.78);
}
.policy-card ul {
  margin: 0.35rem 0 0;
  padding-left: 1.15rem;
}
.policy-card a {
  color: var(--forest);
}
.policy-highlight {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.7rem 0.95rem;
  border: 1px solid rgba(26, 60, 43, 0.08);
  background: rgba(184, 212, 160, 0.14);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--forest);
}

/* === Floating actions === */
.floating-actions {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.fab {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(15, 31, 23, 0.18);
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.fab:hover { transform: translateY(-3px) scale(1.05); }
.fab svg { width: 20px; height: 20px; }
.fab-call { background: #3b6ec9; }
.fab-wa { background: #1faa5c; }

/* === Responsive === */
@media (max-width: 1024px) {
  .about,
  .contact {
    grid-template-columns: 1fr;
  }
  .featured-products-grid .product-item {
    flex: 0 0 calc(33.33% - 0.8rem);
    min-width: 220px;
    max-width: 260px;
  }
  .product-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-visual-caption { right: 1rem; }
  .contact-visual { min-height: 320px; }
  .contact-visual::after { background: linear-gradient(0deg, var(--cream) 0%, transparent 60%); }
  .contact-form-wrap { margin-left: 0; border-left: 1px solid rgba(26, 60, 43, 0.06); margin-top: -3rem; }
  .principles-grid { grid-template-columns: 1fr; }
  .principle-card.featured { margin-top: 0; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .hero-stat { display: none; }
}

@media (max-width: 768px) {
  .header-inner { padding: 0 1.2rem; }
  .main-nav {
    position: fixed;
    inset: 72px 0 auto 0;
    background: var(--cream);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid rgba(26, 60, 43, 0.08);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 300ms ease, opacity 300ms ease;
  }
  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .header-actions {
    gap: 0.6rem;
  }
  .nav-auth {
    min-width: auto;
  }
  .nav-login-btn {
    display: none;
  }
  .nav-track-mobile {
    display: inline-flex;
  }
  .nav-profile-meta {
    display: none;
  }
  .menu-toggle { display: flex; }
  .hero-content { padding: 7rem 1.2rem 4rem; }
  .featured-products {
    padding: 4rem 1.2rem 3.5rem;
  }
  .featured-products-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .about { padding: 4rem 1.2rem; gap: 2rem; }
  .contact { padding: 0 1.2rem 4rem; }
  .principles { padding: 4rem 1.2rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.4rem; }
}

@media (max-width: 640px) {
  .policy-page {
    padding: 7rem 1.2rem 4rem;
  }
  .policy-hero,
  .policy-card {
    padding: 1.35rem;
  }
  .featured-products-grid .product-item {
    flex: 0 0 calc(50vw - 1.2rem);
    min-width: 180px;
    max-width: none;
  }
  .product-list {
    grid-template-columns: 1fr;
  }
  .cart-sidebar {
    width: 100%;
  }
  .cart-body {
    padding-bottom: 1rem;
  }
  .cart-foot {
    padding: 1rem 1rem calc(1rem + env(safe-area-inset-bottom, 0px));
  }
  .cart-checkout {
    min-height: 3.25rem;
  }
}
