:root {
  --green-dark: #1B3022;
  --green-mid: #2F4A36;
  --green-accent: #4F6D44;
  --green-soft: #E8F0E4;
  --cream: #F9F6F0;
  --cream-dark: #F0EBE0;
  --text: #1B3022;
  --text-muted: #5A6B5E;
  --white: #ffffff;
  --border: #E5E0D6;
  --star: #E6B422;
  --shadow: 0 8px 28px rgba(27, 48, 34, 0.08);
  --radius: 14px;
  --header-h: 84px;
  --font: "Montserrat", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Announcement bar */
.announce-bar {
  background: var(--green-dark);
  color: #f5f0e6;
  overflow: hidden;
  white-space: nowrap;
  height: 36px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.announce-track {
  display: inline-flex;
  align-items: center;
  gap: 2.75rem;
  animation: announceScroll 40s linear infinite;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  will-change: transform;
}
.announce-track span { display: inline-flex; align-items: center; gap: 0.35rem; }
.announce-track strong { color: #f0d9a0; font-weight: 700; }
.announce-bar:hover .announce-track { animation-play-state: paused; }
@keyframes announceScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { line-height: 1.2; margin: 0 0 0.5em; }

.container {
  width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  height: var(--header-h);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: var(--header-h);
}
.brand-logo {
  height: 62px;
  width: auto;
  display: block;
}
.footer-logo {
  height: 88px;
  width: auto;
  margin-bottom: 0.75rem;
}
.nav-desktop {
  display: none;
  align-items: center;
  gap: 1.35rem;
}
.nav-desktop > a,
.nav-drop-btn {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.35rem 0;
  position: relative;
}
.nav-desktop > a:hover,
.nav-drop-btn:hover { color: var(--green-accent); }
.nav-desktop > a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--green-dark);
  border-radius: 2px;
}
.nav-dropdown { position: relative; }
.nav-drop-btn { display: inline-flex; align-items: center; gap: 0.35rem; }
.nav-drop-menu {
  display: none;
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 0;
  min-width: 190px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 0.5rem;
  z-index: 20;
}
.nav-dropdown:hover .nav-drop-menu,
.nav-dropdown:focus-within .nav-drop-menu { display: grid; }
.nav-drop-menu a {
  padding: 0.55rem 0.75rem;
  border-radius: 8px;
  font-size: 0.88rem;
}
.nav-drop-menu a:hover { background: var(--cream); }

.header-utils {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.search-form {
  display: none;
  align-items: center;
  background: var(--cream);
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  border: 1px solid transparent;
}
.search-form:focus-within { border-color: var(--green-accent); background: var(--white); }
.search-form input {
  border: none;
  background: transparent;
  outline: none;
  width: 140px;
  font-size: 0.85rem;
}
.search-form button {
  border: none;
  background: none;
  cursor: pointer;
  color: var(--text-muted);
  display: grid;
  place-items: center;
  padding: 0;
}
.icon-btn {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
  color: var(--green-dark);
  position: relative;
}
.icon-btn:hover { background: var(--cream); }
.cart-badge {
  position: absolute;
  top: 4px; right: 4px;
  min-width: 16px; height: 16px;
  background: var(--green-dark);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  border-radius: 999px;
  display: grid;
  place-items: center;
  padding: 0 3px;
}
.menu-toggle { display: grid; }

/* Mobile nav */
.mobile-overlay {
  position: fixed; inset: 0;
  background: rgba(27,48,34,0.45);
  z-index: 150;
}
.mobile-nav {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(320px, 88vw);
  background: var(--white);
  z-index: 160;
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  box-shadow: -8px 0 30px rgba(0,0,0,0.12);
  transform: translateX(0);
  animation: slideIn 0.25s ease;
}
@keyframes slideIn { from { transform: translateX(100%); } }
.mobile-nav[hidden], .mobile-overlay[hidden] { display: none !important; }
.mobile-nav-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}
.mobile-nav a {
  padding: 0.85rem 0.5rem;
  font-weight: 500;
  border-radius: 8px;
}
.mobile-nav a:hover { background: var(--cream); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.8rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--green-dark);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(27,48,34,0.22);
}
.btn-primary:hover { background: var(--green-mid); }
.btn-ghost {
  background: transparent;
  color: var(--green-dark);
  border-color: var(--green-dark);
}
.btn-ghost:hover { background: rgba(27,48,34,0.05); }
.btn-cart {
  flex: 1;
  background: var(--white);
  border-color: var(--border);
  color: var(--green-dark);
  padding: 0.65rem 1rem;
  font-size: 0.85rem;
}
.btn-cart:hover { border-color: var(--green-dark); background: var(--cream); }
.play-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  display: grid; place-items: center;
  font-size: 0.65rem;
}

/* Hero banner (full designed artwork) */
.hero {
  position: relative;
  overflow: hidden;
  background: #eaf3f8;
  min-height: 0;
}
.hero-banner {
  display: block;
  padding: 0;
}
.hero-banner-frame {
  position: relative;
  width: 100%;
  line-height: 0;
}
.hero-banner-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center center;
}
.hero-hit {
  position: absolute;
  display: block;
  z-index: 3;
}
.hero-hit-shop {
  left: 5.5%;
  top: 54%;
  width: 11.5%;
  height: 9%;
  border-radius: 999px;
}
.hero-hit-story {
  left: 18%;
  top: 54%;
  width: 14%;
  height: 9%;
  border-radius: 999px;
}
.hero-mobile-ctas {
  display: none;
  padding: 1.5rem 0 2rem;
}
.hero-mobile-ctas h1 {
  font-size: 1.75rem;
  color: var(--green-dark);
  margin-bottom: 0.5rem;
}

.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--green-accent);
  margin: 0 0 0.85rem;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 34ch;
  margin: 0 0 1.5rem;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.product-img {
  background: #fff;
}
.product-img img {
  object-fit: contain;
  padding: 0.75rem;
}

/* Trust bar */
.trust-bar {
  background: var(--cream);
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.trust-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  box-shadow: 0 2px 10px rgba(27,48,34,0.04);
}
.trust-card h3 { font-size: 0.92rem; margin: 0 0 0.15rem; }
.trust-card p { margin: 0; font-size: 0.78rem; color: var(--text-muted); }
.trust-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--green-soft);
  flex-shrink: 0;
  position: relative;
}
.trust-icon::before {
  content: "";
  position: absolute;
  inset: 12px;
  background: var(--green-accent);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
}
.trust-icon.leaf::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M17 8C8 10 5.9 16.17 3.82 21.67l1.06.33C6.81 17 9 13 17 11V8m0-5a5 5 0 015 5c0 3.5-2.5 6.5-5 8-2.5-1.5-5-4.5-5-8a5 5 0 015-5z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M17 8C8 10 5.9 16.17 3.82 21.67l1.06.33C6.81 17 9 13 17 11V8m0-5a5 5 0 015 5c0 3.5-2.5 6.5-5 8-2.5-1.5-5-4.5-5-8a5 5 0 015-5z'/%3E%3C/svg%3E");
}
.trust-icon.people::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M16 11c1.66 0 3-1.34 3-3s-1.34-3-3-3-3 1.34-3 3 1.34 3 3 3zm-8 0c1.66 0 3-1.34 3-3S9.66 5 8 5 5 6.34 5 8s1.34 3 3 3zm0 2c-2.33 0-7 1.17-7 3.5V19h14v-2.5C15 14.17 10.33 13 8 13zm8 0c-.29 0-.62.02-.97.05 1.16.84 1.97 1.97 1.97 3.45V19h6v-2.5c0-2.33-4.67-3.5-7-3.5z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M16 11c1.66 0 3-1.34 3-3s-1.34-3-3-3-3 1.34-3 3 1.34 3 3 3zm-8 0c1.66 0 3-1.34 3-3S9.66 5 8 5 5 6.34 5 8s1.34 3 3 3zm0 2c-2.33 0-7 1.17-7 3.5V19h14v-2.5C15 14.17 10.33 13 8 13zm8 0c-.29 0-.62.02-.97.05 1.16.84 1.97 1.97 1.97 3.45V19h6v-2.5c0-2.33-4.67-3.5-7-3.5z'/%3E%3C/svg%3E");
}
.trust-icon.star::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z'/%3E%3C/svg%3E");
}
.trust-icon.truck::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M18 18.5a1.5 1.5 0 01-1.5-1.5 1.5 1.5 0 011.5-1.5 1.5 1.5 0 011.5 1.5 1.5 1.5 0 01-1.5 1.5M19.5 9.5H17V12h4.46L19.5 9.5M6 18.5A1.5 1.5 0 014.5 17 1.5 1.5 0 016 15.5 1.5 1.5 0 017.5 17 1.5 1.5 0 016 18.5M20 8l3 4v5h-2a2 2 0 01-4 0H9a2 2 0 01-4 0H3v-7a1 1 0 011-1h12V8h4z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M18 18.5a1.5 1.5 0 01-1.5-1.5 1.5 1.5 0 011.5-1.5 1.5 1.5 0 011.5 1.5 1.5 1.5 0 01-1.5 1.5M19.5 9.5H17V12h4.46L19.5 9.5M6 18.5A1.5 1.5 0 014.5 17 1.5 1.5 0 016 15.5 1.5 1.5 0 017.5 17 1.5 1.5 0 016 18.5M20 8l3 4v5h-2a2 2 0 01-4 0H9a2 2 0 01-4 0H3v-7a1 1 0 011-1h12V8h4z'/%3E%3C/svg%3E");
}

/* Sections */
.section { padding: 3.5rem 0; }
.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--green-accent);
  margin: 0 0 0.35rem;
}
.section-head h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); margin: 0; }
.link-arrow {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.link-arrow:hover { color: var(--green-accent); }

.link-arrow-underline {
  color: #9a7b4f;
  border-bottom: 1px solid #9a7b4f;
  padding-bottom: 2px;
  align-self: flex-end;
  margin-bottom: 0.35rem;
}
.link-arrow-underline:hover { color: var(--green-dark); border-color: var(--green-dark); }

.categories {
  background: var(--white);
  overflow: hidden;
}
.category-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: #c9bfb0 transparent;
  background: var(--white);
  padding: 0.35rem 0 0.85rem;
  cursor: grab;
  overscroll-behavior-x: contain;
}
.category-scroll::-webkit-scrollbar {
  height: 6px;
}
.category-scroll::-webkit-scrollbar-thumb {
  background: #c9bfb0;
  border-radius: 99px;
}
.category-scroll::-webkit-scrollbar-track {
  background: transparent;
}
.category-scroll:active { cursor: grabbing; }
.category-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  padding: 0.15rem max(1rem, calc((100vw - 1180px) / 2 + 1rem)) 0.35rem;
}
.category-card {
  display: grid;
  grid-template-columns: 48% 52%;
  align-items: stretch;
  background: #F3EDE3;
  border-radius: 18px;
  overflow: hidden;
  min-height: 148px;
  width: min(290px, 82vw);
  flex: 0 0 auto;
  scroll-snap-align: start;
  transition: transform 0.25s, box-shadow 0.25s;
}
.category-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.category-img {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 148px;
  background: #F3EDE3;
  overflow: hidden;
}
.category-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  padding: 0;
  display: block;
  background: #F3EDE3;
  transition: transform 0.45s;
}
.category-card:hover .category-img img { transform: scale(1.05); }
.category-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1.1rem 0.95rem 0.95rem 0.55rem;
  min-height: 0;
  background: #F3EDE3;
}
.category-text {
  min-width: 0;
  padding-right: 0.15rem;
}
.category-body h3 {
  font-size: 1.02rem;
  font-weight: 700;
  margin: 0 0 0.25rem;
  line-height: 1.25;
  color: #1a1a1a;
}
.category-body p {
  margin: 0;
  color: #7a7a7a;
  font-size: 0.82rem;
  line-height: 1.35;
  font-weight: 400;
}
.cat-arrow {
  align-self: flex-end;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #ffffff;
  color: #1a1a1a;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  display: grid;
  place-items: center;
  font-size: 0.95rem;
  font-weight: 600;
}

/* Promo split */
.promo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}
.promo-card {
  display: grid;
  grid-template-columns: 1fr;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--green-soft);
  min-height: 0;
}
.promo-card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  background: #fff;
}
.promo-content { padding: 0.9rem 0.85rem 1rem; }
.promo-content h2 { font-size: 1.05rem; margin-bottom: 0.35rem; }
.promo-content p {
  color: var(--text-muted);
  margin: 0 0 0.75rem;
  font-size: 0.78rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.promo-content .btn {
  padding: 0.55rem 0.9rem;
  font-size: 0.78rem;
}
.promo-product { background: var(--cream); }

/* Products */
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.7rem;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s, transform 0.25s;
}
.product-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.product-img {
  background: #fff;
  border-radius: 12px;
  aspect-ratio: 1;
  overflow: hidden;
  margin-bottom: 0.9rem;
}
.product-img img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 0.75rem;
}
.product-card h3 {
  font-size: 0.82rem;
  font-weight: 600;
  min-height: 2.4em;
}
.product-actions {
  display: flex;
  gap: 0.35rem;
  margin-top: auto;
  flex-wrap: wrap;
}
.btn-cart {
  flex: 1;
  min-width: 0;
  padding: 0.55rem 0.45rem;
  font-size: 0.72rem;
}
.wish-btn {
  width: 38px;
  height: 38px;
}
.price {
  font-size: 1rem;
}

/* Testimonials */
.testimonials {
  background: var(--cream);
  overflow: hidden;
}
.testimonial-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  cursor: grab;
  padding: 0.25rem 0 0.5rem;
}
.testimonial-scroll::-webkit-scrollbar { display: none; }
.testimonial-scroll:active { cursor: grabbing; }
.testimonial-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  padding: 0.25rem max(1rem, calc((100vw - 1180px) / 2 + 1rem));
}
.testimonial-card {
  width: min(320px, 82vw);
  flex: 0 0 auto;
  scroll-snap-align: start;
  background: var(--white);
  border-radius: 16px;
  padding: 1.35rem 1.25rem;
  border: 1px solid var(--border);
  box-shadow: 0 4px 18px rgba(27,48,34,0.04);
}
.testimonial-card .stars {
  color: var(--star);
  letter-spacing: 1px;
  margin-bottom: 0.65rem;
  font-size: 0.95rem;
}
.testimonial-card > p {
  margin: 0 0 1.15rem;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.55;
  min-height: 5.2em;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.testimonial-author .avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.9rem;
}
.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--green-dark);
}
.testimonial-author small {
  color: var(--text-muted);
  font-size: 0.78rem;
}
.rating {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.35rem;
}
.stars { color: var(--star); letter-spacing: 1px; font-size: 0.9rem; }
.count { color: var(--text-muted); font-size: 0.8rem; }
.price {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 0.85rem;
  color: var(--green-dark);
}
.product-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: auto;
}
.wish-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--white);
  cursor: pointer;
  font-size: 1.15rem;
  color: var(--green-dark);
  flex-shrink: 0;
}
.wish-btn.active, .wish-btn:hover {
  border-color: #c0392b;
  color: #c0392b;
  background: #fdf2f2;
}

/* Refer */
.refer {
  background: var(--green-soft);
  padding: 2rem 0;
}
.refer-inner {
  display: grid;
  gap: 1.25rem;
  align-items: center;
  text-align: center;
}
.refer-img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 16px;
  margin: 0 auto;
  box-shadow: var(--shadow);
}
.refer-copy h2 { font-size: 1.7rem; margin-bottom: 0.35rem; }
.refer-copy p { margin: 0; color: var(--text-muted); }
.refer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
}
.referral-code {
  display: flex;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.35rem 0.35rem 0.35rem 1rem;
  gap: 0.35rem;
}
.referral-code input {
  border: none;
  background: transparent;
  outline: none;
  font-weight: 700;
  letter-spacing: 0.08em;
  width: 90px;
  color: var(--green-dark);
}
.referral-code button {
  width: 40px; height: 40px;
  border: none;
  border-radius: 50%;
  background: var(--cream);
  cursor: pointer;
  color: var(--green-dark);
  display: grid; place-items: center;
}

/* Footer */
.site-footer {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding-top: 3rem;
}
.footer-grid {
  display: grid;
  gap: 2rem;
  padding-bottom: 2.5rem;
}
.footer-brand p { color: var(--text-muted); font-size: 0.9rem; max-width: 28ch; }
.footer-grid h4 {
  font-size: 0.95rem;
  margin-bottom: 0.85rem;
  color: var(--green-dark);
}
.footer-grid ul a {
  display: block;
  padding: 0.3rem 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}
.footer-grid ul a:hover { color: var(--green-dark); }
.newsletter {
  display: flex;
  background: var(--cream);
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid var(--border);
  margin-bottom: 1rem;
}
.newsletter input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 0.75rem 1rem;
  outline: none;
  min-width: 0;
}
.newsletter button {
  width: 46px;
  border: none;
  background: var(--green-dark);
  color: var(--white);
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 700;
}
.socials { display: flex; gap: 0.55rem; }
.socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--cream);
  display: grid; place-items: center;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--green-dark);
}
.socials a:hover { background: var(--green-dark); color: var(--white); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1rem 0;
}
.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.footer-bottom-inner p { margin: 0; }

/* Toast */
.toast {
  position: fixed;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green-dark);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 500;
  z-index: 200;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.toast[hidden] { display: none !important; }

/* Inner pages */
.page-hero {
  background: var(--cream);
  padding: 2.5rem 0;
  text-align: center;
}
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.4rem); margin-bottom: 0.35rem; }
.page-hero p { margin: 0; color: var(--text-muted); }
.page-content { padding: 2.5rem 0 3.5rem; }
.content-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 1.5rem;
  max-width: 720px;
  margin: 0 auto;
}
.content-card p { color: var(--text-muted); }
.form-grid { display: grid; gap: 1rem; max-width: 520px; margin: 0 auto; }
.form-grid label { display: grid; gap: 0.35rem; font-size: 0.88rem; font-weight: 600; }
.form-grid input,
.form-grid textarea,
.form-grid select {
  padding: 0.75rem 1rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--white);
  outline: none;
}
.form-grid input:focus,
.form-grid textarea:focus { border-color: var(--green-accent); }
.cart-empty { text-align: center; padding: 3rem 1rem; }
.cart-list { display: grid; gap: 1rem; }
.cart-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 12px;
}
.cart-item img {
  width: 72px; height: 72px;
  object-fit: cover;
  border-radius: 8px;
  background: var(--cream);
}
.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 1.1rem;
  font-weight: 700;
}

/* Responsive */
@media (min-width: 640px) {
  .category-card {
    width: 300px;
    min-height: 160px;
  }
  .category-img { min-height: 160px; }
  .promo-card {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }
  .promo-card img {
    height: 100%;
    min-height: 220px;
  }
  .promo-content {
    padding: 1.35rem 1.2rem 1.5rem;
  }
  .promo-content h2 { font-size: 1.4rem; }
  .promo-content p {
    font-size: 0.9rem;
    -webkit-line-clamp: 4;
  }
  .promo-content .btn {
    padding: 0.75rem 1.2rem;
    font-size: 0.9rem;
  }
  .product-card h3 { font-size: 0.95rem; }
  .product-card { padding: 1rem; }
  .btn-cart {
    padding: 0.65rem 1rem;
    font-size: 0.85rem;
  }
  .testimonial-card { width: 340px; }
}

@media (min-width: 900px) {
  .menu-toggle { display: none; }
  .nav-desktop { display: flex; }
  .search-form { display: flex; }
  .hero-banner-img { max-height: none; }
  .hero-hit-shop,
  .hero-hit-story { display: block; }
  .trust-grid { grid-template-columns: repeat(4, 1fr); }
  .category-card {
    width: 280px;
    min-height: 168px;
  }
  .category-img { min-height: 168px; }
  .product-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
  .promo-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 1.25rem;
  }
  .promo-card img { min-height: 280px; }
  .refer-inner {
    grid-template-columns: auto 1fr auto;
    text-align: left;
  }
  .refer-img { margin: 0; }
  .refer-actions { justify-content: flex-end; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.3fr; }
}

@media (max-width: 899px) {
  .hero-hit { display: none; }
  .hero-mobile-ctas { display: block; }
  .hero-banner-img {
    width: 100%;
    height: auto;
    object-position: 62% center;
  }
  .brand-logo { height: 52px; }
  .promo-content .section-eyebrow { font-size: 0.65rem; }
}
