/*
Theme Name: Vrindeshvari Dairy
Theme URI: https://example.com/vrindeshvari-dairy
Author: Codex
Description: Custom WooCommerce-ready theme for VRINDESHVARI DAIRY PRIVATE LIMITED.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
Text Domain: vrindeshvari-dairy
*/

:root {
  --cream-50: #fffaf0;
  --cream-100: #f7edd7;
  --cream-200: #eedbb1;
  --green-700: #234f2f;
  --green-800: #193a22;
  --green-900: #102816;
  --leaf: #4f8f46;
  --leaf-soft: #90bf72;
  --gold: #c99938;
  --text: #20180f;
  --muted: #645646;
  --white: #ffffff;
  --line: rgba(32, 24, 15, 0.12);
  --shadow: 0 24px 70px rgba(36, 27, 14, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --content-width: 1180px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
  --font-mono: "Space Mono", "Courier New", monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 500;
  background:
    radial-gradient(circle at top left, rgba(201, 153, 56, 0.18), transparent 24%),
    radial-gradient(circle at 90% 10%, rgba(79, 143, 70, 0.15), transparent 20%),
    linear-gradient(180deg, #fffdf8 0%, #fff8eb 52%, #fff5e2 100%);
  overflow-x: hidden;
}

html.js .reveal-up {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 650ms ease,
    transform 650ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

html.js .reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.announcement-bar {
  position: relative;
  z-index: 2;
  background: #15595e;
  color: var(--cream-50);
}

.announcement-inner {
  width: min(calc(100% - 32px), var(--content-width));
  margin: 0 auto;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.88rem;
}

.announcement-inner a {
  color: var(--white);
  font-weight: 700;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-backdrop,
.field-grid,
.backdrop-orb {
  pointer-events: none;
  position: fixed;
  inset: 0;
}

.field-grid {
  background-image:
    linear-gradient(rgba(25, 58, 34, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(25, 58, 34, 0.035) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(180deg, black, transparent 82%);
}

.backdrop-orb {
  filter: blur(40px);
}

.orb-one {
  background: radial-gradient(circle at 18% 14%, rgba(201, 153, 56, 0.2), transparent 24%);
}

.orb-two {
  background: radial-gradient(circle at 82% 18%, rgba(79, 143, 70, 0.18), transparent 22%);
}

.site-header,
.section-shell,
.site-footer,
.page-shell {
  width: min(calc(100% - 32px), var(--content-width));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.site-header {
  margin-top: 14px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid rgba(32, 24, 15, 0.1);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 252, 246, 0.96), rgba(251, 245, 231, 0.92));
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
  position: sticky;
  top: 14px;
  /* Sit above the content sections (which share z-index:1) so the sticky
     header and its "Shop by Category" dropdown are never painted behind the
     hero/below sections. */
  z-index: 100;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--green-700), var(--leaf));
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  box-shadow: 0 18px 28px rgba(25, 58, 34, 0.24);
}

.brand-copy {
  display: flex;
  flex-direction: column;
}

.brand-copy strong,
h1,
h2,
h3,
h4,
.woocommerce-loop-product__title,
.product_title {
  font-family: var(--font-display);
}

.brand-copy strong {
  font-size: 1rem;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

.site-nav a,
.menu-toggle,
.eyebrow,
.card-index,
.metric,
.note-label,
.contact-label,
.visual-badge,
.micro-label {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.site-nav a,
.utility-nav a {
  font-size: 0.82rem;
  color: var(--muted);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.utility-nav a:hover,
.utility-nav a:focus-visible {
  color: var(--green-800);
}

.utility-nav {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.utility-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(21, 89, 94, 0.08);
  border: 1px solid rgba(21, 89, 94, 0.08);
  color: var(--green-800);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--green-800);
}

.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: stretch;
  padding-top: 54px;
}

.hero-shop {
  align-items: start;
}

.hero-copy,
.hero-visual,
.panel,
.product-card,
.timeline-step,
.contact-card,
.trust-strip article,
.page-panel,
.category-card,
.woo-highlight {
  border: 1px solid var(--line);
  background: rgba(255, 251, 243, 0.88);
  box-shadow: var(--shadow);
}

.hero-copy,
.hero-visual,
.page-panel {
  border-radius: var(--radius-xl);
  padding: 42px;
}

.hero-copy {
  background:
    radial-gradient(circle at top left, rgba(21, 89, 94, 0.08), transparent 36%),
    rgba(255, 251, 243, 0.94);
}

.eyebrow,
.note-label,
.contact-label,
.visual-badge,
.metric,
.card-index,
.micro-label {
  font-size: 0.72rem;
  color: var(--green-700);
}

h1 {
  margin: 16px 0;
  font-size: clamp(2.6rem, 5vw, 5.1rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  max-width: 12ch;
}

h2 {
  margin: 0;
  font-size: clamp(1.9rem, 3vw, 3.1rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
}

h3 {
  margin: 0 0 12px;
  font-size: 1.45rem;
  letter-spacing: -0.02em;
}

p {
  margin: 0;
  line-height: 1.7;
}

.hero-text,
.section-copy,
.page-panel p,
.product-card p,
.timeline-step p,
.contact-card p,
.category-card p,
.woo-highlight p {
  color: var(--muted);
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 30px;
}

.hero-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 30px;
}

.hero-stat-card {
  padding: 18px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(25, 58, 34, 0.08);
  background: rgba(255, 255, 255, 0.7);
}

.hero-stat-card strong {
  display: block;
  margin: 8px 0 6px;
  font-size: 1.05rem;
  color: var(--green-800);
}

.hero-stat-card p {
  color: var(--muted);
  line-height: 1.6;
}

.category-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.category-chip {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 241, 228, 0.86));
  border: 1px solid rgba(21, 89, 94, 0.08);
  color: var(--green-800);
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(28, 24, 16, 0.06);
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.category-chip:hover,
.category-chip:focus-visible {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(237, 247, 241, 0.92));
  border-color: rgba(21, 89, 94, 0.16);
  box-shadow: 0 16px 28px rgba(21, 89, 94, 0.1);
  transform: translateY(-1px);
}

.button,
.wp-element-button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.added_to_cart {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  border: 0;
  cursor: pointer;
  letter-spacing: 0.01em;
  overflow: hidden;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease,
    background 220ms ease,
    color 220ms ease;
}

.button-primary,
.wp-element-button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 40%),
    linear-gradient(135deg, #15595e, #234f2f 92%);
  color: var(--white);
  box-shadow:
    0 16px 28px rgba(21, 89, 94, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.button-secondary,
.added_to_cart {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(249, 243, 230, 0.92));
  border: 1px solid rgba(25, 58, 34, 0.16);
  color: var(--green-800);
  box-shadow:
    0 12px 24px rgba(28, 24, 16, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.button:hover,
.button:focus-visible,
.wp-element-button:hover,
.wp-element-button:focus-visible,
.woocommerce a.button:hover,
.woocommerce a.button:focus-visible,
.woocommerce button.button:hover,
.woocommerce button.button:focus-visible,
.woocommerce input.button:hover,
.woocommerce input.button:focus-visible,
.added_to_cart:hover,
.added_to_cart:focus-visible {
  transform: translateY(-2px);
}

.button-primary:hover,
.button-primary:focus-visible,
.wp-element-button:hover,
.wp-element-button:focus-visible,
.woocommerce a.button:hover,
.woocommerce a.button:focus-visible,
.woocommerce button.button:hover,
.woocommerce button.button:focus-visible,
.woocommerce input.button:hover,
.woocommerce input.button:focus-visible {
  box-shadow:
    0 20px 34px rgba(21, 89, 94, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.button-secondary:hover,
.button-secondary:focus-visible,
.added_to_cart:hover,
.added_to_cart:focus-visible {
  border-color: rgba(21, 89, 94, 0.18);
  box-shadow:
    0 16px 28px rgba(28, 24, 16, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.hero-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.hero-notes div,
.woo-highlight {
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(25, 58, 34, 0.08);
}

.hero-visual {
  background:
    linear-gradient(180deg, rgba(35, 79, 47, 0.96), rgba(16, 40, 22, 0.96)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent);
  color: var(--white);
}

.hero-offer-panel {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 28%),
    linear-gradient(160deg, #13535e 0%, #1d7672 48%, #234f2f 100%);
}

.offer-stack,
.offer-mini-grid {
  display: grid;
  gap: 16px;
}

.offer-card {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.offer-card p {
  color: rgba(255, 250, 240, 0.82);
}

.hero-art {
  margin: 18px 0 20px;
  padding: 12px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-art img {
  width: 100%;
  border-radius: 18px;
  min-height: 280px;
  object-fit: cover;
}

.offer-card-main h2 {
  max-width: 12ch;
  margin-bottom: 12px;
}

.offer-mini-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.visual-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}

.visual-badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--cream-100);
}

.hero-visual h2 {
  max-width: 12ch;
}

.milk-wave {
  height: 180px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 28% 50%, rgba(255, 255, 255, 0.95), transparent 23%),
    radial-gradient(circle at 62% 54%, rgba(255, 250, 240, 0.9), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04)),
    linear-gradient(135deg, rgba(255, 250, 240, 0.28), rgba(201, 153, 56, 0.12));
  border: 1px solid rgba(255, 255, 255, 0.16);
  position: relative;
  overflow: hidden;
}

.milk-wave::before,
.milk-wave::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 80px;
  background:
    radial-gradient(circle at 10% 0, #fff 20px, transparent 22px),
    radial-gradient(circle at 30% 0, #fff 28px, transparent 30px),
    radial-gradient(circle at 52% 0, #fff 24px, transparent 26px),
    radial-gradient(circle at 74% 0, #fff 30px, transparent 32px),
    radial-gradient(circle at 92% 0, #fff 18px, transparent 20px);
}

.milk-wave::after {
  transform: translateY(18px);
  opacity: 0.55;
}

.visual-stats {
  display: grid;
  gap: 14px;
}

.visual-stats article {
  padding: 18px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.visual-stats strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.15rem;
}

.visual-stats span {
  color: rgba(255, 250, 240, 0.82);
  line-height: 1.6;
}

.trust-strip,
.two-column,
.card-grid,
.timeline,
.category-grid,
.woo-feature-grid,
.story-proof-grid,
.home-product-grid {
  display: grid;
  gap: 18px;
}

.trust-strip {
  margin-top: 24px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trust-strip article,
.panel,
.product-card,
.timeline-step,
.contact-card,
.category-card,
.woo-highlight {
  border-radius: var(--radius-lg);
  padding: 24px;
}

.section-shell,
.page-shell {
  margin-top: 26px;
}

.section-heading {
  margin-bottom: 18px;
}

.section-heading h2,
.page-panel h1,
.page-panel h2 {
  max-width: 16ch;
}

.collection-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
  align-items: stretch;
}

.collection-intro,
.collection-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 251, 243, 0.92);
  box-shadow: var(--shadow);
}

.collection-intro {
  padding: 34px;
  background:
    radial-gradient(circle at top left, rgba(201, 153, 56, 0.13), transparent 28%),
    rgba(255, 251, 243, 0.95);
}

.collection-mosaic {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.collection-card {
  min-height: 220px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 10px;
}

.collection-card-feature {
  grid-row: span 2;
  min-height: 100%;
  background:
    radial-gradient(circle at top right, rgba(21, 89, 94, 0.16), transparent 26%),
    linear-gradient(180deg, rgba(255, 251, 243, 0.94), rgba(244, 235, 214, 0.96));
}

.collection-art {
  margin-bottom: auto;
  padding-bottom: 18px;
}

.collection-art img {
  width: 100%;
  height: 180px;
  border-radius: 20px;
  object-fit: cover;
}

.two-column,
.contact-band {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.timeline {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.timeline-step span {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-700), var(--leaf));
  color: var(--white);
  font-weight: 700;
  margin-bottom: 18px;
}

.feature-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}

.contact-band {
  display: grid;
  gap: 18px;
  align-items: stretch;
}

.contact-copy {
  border-radius: var(--radius-xl);
  padding: 36px;
  background: linear-gradient(180deg, rgba(35, 79, 47, 0.96), rgba(20, 48, 28, 0.96));
  color: var(--white);
  box-shadow: var(--shadow);
}

.contact-copy .eyebrow,
.contact-copy p {
  color: rgba(255, 250, 240, 0.86);
}

.contact-card {
  display: grid;
  gap: 18px;
  align-content: start;
}

.contact-card a {
  font-size: 1.1rem;
  color: var(--green-800);
  font-weight: 700;
  word-break: break-word;
}

.page-shell {
  padding: 50px 0 24px;
}

.page-panel {
  background: rgba(255, 251, 243, 0.82);
}

.page-hero-panel {
  background:
    radial-gradient(circle at top right, rgba(21, 89, 94, 0.08), transparent 32%),
    rgba(255, 251, 243, 0.9);
}

.page-content {
  display: grid;
  gap: 18px;
}

.page-hero-grid,
.shop-stage,
.shop-support-grid,
.footer-grid,
.page-highlight-grid,
.page-side-card-grid,
.shop-stage-points {
  display: grid;
  gap: 18px;
}

.page-hero-grid,
.shop-stage {
  grid-template-columns: 1.12fr 0.88fr;
  align-items: stretch;
}

.page-intro {
  color: var(--muted);
  font-size: 1.02rem;
  max-width: 56ch;
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 20px 0 26px;
}

.page-highlight-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.page-highlight-card,
.page-side-card,
.shop-support-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 241, 228, 0.88));
  box-shadow: var(--shadow);
}

.page-highlight-card {
  padding: 20px;
}

.page-highlight-card p {
  color: var(--muted);
}

.page-visual-panel {
  display: grid;
  gap: 18px;
  background:
    radial-gradient(circle at top right, rgba(201, 153, 56, 0.14), transparent 26%),
    rgba(255, 251, 243, 0.92);
}

.page-cover-media {
  margin: 14px 0 6px;
}

.page-cover-media img {
  width: 100%;
  max-height: 360px;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.page-side-card-grid {
  grid-template-columns: 1.25fr 0.75fr;
}

.page-side-card {
  padding: 24px;
}

.page-side-card h2,
.shop-support-card h2 {
  margin: 10px 0 10px;
  font-size: 1.55rem;
  line-height: 1.08;
}

.page-side-card p,
.shop-support-card p {
  color: var(--muted);
}

.page-side-card-accent,
.shop-support-card-accent {
  background:
    linear-gradient(180deg, rgba(21, 89, 94, 0.98), rgba(35, 79, 47, 0.96)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent);
  color: var(--white);
}

.page-side-card-accent .micro-label,
.shop-support-card-accent .micro-label {
  color: rgba(255, 250, 240, 0.78);
}

.page-side-card-accent p,
.shop-support-card-accent p {
  color: rgba(255, 250, 240, 0.82);
}

.page-copy-panel article {
  display: grid;
  gap: 16px;
}

.page-content h1,
.page-content h2,
.page-content h3,
.page-content h4 {
  max-width: none;
}

.page-content > * + * {
  margin-top: 0;
}

.entry-summary,
.summary {
  display: grid;
  gap: 16px;
}

.category-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.woo-feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-product-card,
.demo-product-card,
.article-card,
.story-proof-card,
.story-panel {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 251, 243, 0.92);
  box-shadow: var(--shadow);
}

.home-product-card {
  overflow: hidden;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.home-product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(21, 89, 94, 0.16);
  box-shadow: 0 30px 48px rgba(28, 24, 16, 0.14);
}

.demo-product-card {
  overflow: hidden;
  display: grid;
  min-height: 100%;
}

.demo-product-image {
  min-height: 210px;
  position: relative;
  background: linear-gradient(180deg, #f6efe1, #efe4ca);
}

.demo-product-image::before,
.demo-product-image::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.demo-product-image::before {
  width: 170px;
  height: 170px;
  top: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.5);
}

.demo-product-image::after {
  width: 110px;
  height: 110px;
  left: 24px;
  bottom: 22px;
  background: rgba(255, 255, 255, 0.28);
}

.demo-product-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.demo-tone-cream {
  background: linear-gradient(160deg, #f7edd7 0%, #e8d6ab 100%);
}

.demo-tone-green {
  background: linear-gradient(160deg, rgba(79, 143, 70, 0.25), rgba(35, 79, 47, 0.9));
}

.demo-tone-gold {
  background: linear-gradient(160deg, rgba(201, 153, 56, 0.18), rgba(201, 153, 56, 0.82));
}

.demo-product-copy {
  display: grid;
  gap: 10px;
  padding: 22px;
}

.demo-product-copy h3 {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.25;
}

.demo-product-copy p {
  color: var(--muted);
}

.home-product-image {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  background: linear-gradient(180deg, #f6efe1, #efe4ca);
}

.home-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: #15595e;
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-product-copy {
  display: grid;
  gap: 12px;
  padding: 20px;
}

.home-product-copy h3 {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.2;
}

.product-review-line {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.88rem;
}

.product-review-line .star-rating {
  margin: 0;
}

.product-review-line.no-reviews {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-savings {
  color: #15595e;
  font-weight: 700;
}

.product-price-row .price {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: var(--green-800);
  font-weight: 700;
}

.product-price-row del {
  color: var(--muted);
}

.product-card-note {
  color: var(--muted);
  font-size: 0.95rem;
}

.product-card-actions {
  display: grid;
  gap: 10px;
}

.story-panel {
  padding: 34px;
}

.story-panel-highlight {
  background:
    radial-gradient(circle at top right, rgba(21, 89, 94, 0.12), transparent 34%),
    rgba(255, 251, 243, 0.95);
}

.story-panel-media {
  margin-top: 22px;
}

.story-panel-media img {
  width: 100%;
  height: 240px;
  border-radius: 24px;
  object-fit: cover;
}

.story-proof-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.story-proof-card,
.article-card {
  padding: 24px;
}

.story-proof-media,
.benefit-media {
  margin-bottom: 16px;
}

.story-proof-media img,
.benefit-media img {
  width: 100%;
  height: 150px;
  border-radius: 18px;
  object-fit: cover;
}

.category-card,
.collection-card,
.story-proof-card,
.article-card,
.timeline-step,
.woo-highlight {
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.category-card:hover,
.collection-card:hover,
.story-proof-card:hover,
.article-card:hover,
.timeline-step:hover,
.woo-highlight:hover {
  transform: translateY(-4px);
  border-color: rgba(21, 89, 94, 0.16);
  box-shadow: 0 28px 46px rgba(28, 24, 16, 0.12);
}

.story-proof-card h3,
.article-card h3 {
  margin-top: 8px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.benefit-card {
  padding: 26px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 241, 228, 0.88));
  box-shadow: var(--shadow);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  border-color: rgba(21, 89, 94, 0.16);
  box-shadow: 0 28px 46px rgba(28, 24, 16, 0.12);
}

.benefit-card h3 {
  margin-top: 10px;
}

.discover-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.discover-tab {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(246, 239, 226, 0.86));
  color: var(--green-800);
  border: 1px solid rgba(21, 89, 94, 0.08);
  box-shadow: 0 10px 20px rgba(28, 24, 16, 0.05);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.discover-tab.is-active {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), transparent 40%),
    linear-gradient(135deg, #15595e, #234f2f 92%);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 16px 26px rgba(21, 89, 94, 0.2);
}

.discover-tab:hover,
.discover-tab:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(21, 89, 94, 0.14);
  box-shadow: 0 14px 24px rgba(21, 89, 94, 0.08);
}

.shop-shell {
  padding-top: 52px;
}

.shop-stage-copy {
  background:
    radial-gradient(circle at top left, rgba(21, 89, 94, 0.08), transparent 32%),
    rgba(255, 251, 243, 0.94);
}

.shop-stage-visual {
  display: grid;
  gap: 18px;
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.96), rgba(244, 235, 214, 0.92));
}

.shop-stage-points {
  grid-template-columns: 1fr;
}

.shop-stage-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.shop-header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: end;
  margin-bottom: 24px;
}

.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering,
.woocommerce .price,
.woocommerce div.product p.price,
.woocommerce div.product span.price,
.stock {
  color: var(--muted);
}

.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  width: auto;
  margin: 0;
  padding: 22px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 251, 243, 0.88);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.woocommerce ul.products li.product:hover,
.woocommerce-page ul.products li.product:hover {
  transform: translateY(-5px);
  border-color: rgba(21, 89, 94, 0.16);
  box-shadow: 0 30px 48px rgba(28, 24, 16, 0.14);
}

.woocommerce ul.products li.product a img {
  border-radius: 22px;
  margin-bottom: 18px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: linear-gradient(180deg, #f6efe1, #efe4ca);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-size: 1.2rem;
  line-height: 1.2;
}

.woocommerce ul.products li.product .price {
  font-weight: 700;
  color: var(--green-800);
}

.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product .added_to_cart {
  margin-top: 14px;
}

.woocommerce span.onsale {
  left: 14px;
  top: 14px;
  min-height: 34px;
  min-width: auto;
  padding: 0 12px;
  border-radius: 999px;
  background: #15595e;
  line-height: 34px;
}

.woocommerce div.product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.woocommerce div.product .product_title {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
}

.woocommerce .woocommerce-breadcrumb {
  margin-bottom: 16px;
  color: var(--muted);
}

.woocommerce div.product div.images .woocommerce-product-gallery__image img,
.woocommerce div.product div.images img {
  border-radius: 24px;
}

.woocommerce div.product .summary {
  padding: 12px 0;
}

.woocommerce div.product .woocommerce-product-details__short-description {
  color: var(--muted);
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
  padding: 0;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::after {
  display: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  border: 0;
  margin: 0;
  padding: 0;
  border-radius: 999px;
  background: transparent;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(246, 239, 226, 0.86));
  border: 1px solid rgba(21, 89, 94, 0.08);
  color: var(--green-800);
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), transparent 40%),
    linear-gradient(135deg, #15595e, #234f2f 92%);
  border-color: transparent;
  color: var(--white);
}

.woocommerce .related.products > h2,
.woocommerce .up-sells > h2 {
  margin-bottom: 18px;
}

.woocommerce #reviews #comments ol.commentlist li img.avatar {
  border-radius: 50%;
}

.woocommerce div.product form.cart {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.woocommerce .quantity .qty,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.woocommerce-cart table.cart td.actions .coupon .input-text {
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(25, 58, 34, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.84);
}

.woocommerce table.shop_table,
.woocommerce-page table.shop_table {
  border: 1px solid rgba(25, 58, 34, 0.12);
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 251, 243, 0.92);
}

.woocommerce-cart .cart-collaterals .cart_totals,
.woocommerce-checkout #order_review,
.woocommerce-checkout #customer_details,
.woocommerce-account .woocommerce-MyAccount-navigation,
.woocommerce-account .woocommerce-MyAccount-content {
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 251, 243, 0.9);
  box-shadow: var(--shadow);
}

.woocommerce-account {
  display: grid;
  gap: 18px;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.woocommerce-account .woocommerce-MyAccount-navigation a {
  display: flex;
  align-items: center;
  min-height: 46px;
  padding: 0 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--green-800);
}

.woocommerce-error,
.woocommerce-info,
.woocommerce-message {
  border-top-color: var(--leaf);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
}

.woocommerce nav.woocommerce-pagination ul,
.woocommerce nav.woocommerce-pagination ul li {
  border: 0;
}

.woocommerce nav.woocommerce-pagination ul {
  display: flex;
  gap: 8px;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  min-width: 44px;
  min-height: 44px;
  display: grid;
  place-items: center;
}

.site-footer {
  margin-top: 26px;
  padding: 28px 0 40px;
  color: var(--muted);
}

.footer-grid {
  grid-template-columns: 1.3fr repeat(3, minmax(0, 0.7fr));
  padding: 28px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at top right, rgba(21, 89, 94, 0.1), transparent 30%),
    rgba(255, 251, 243, 0.92);
  box-shadow: var(--shadow);
}

.footer-brand {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
}

.footer-brand strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--green-800);
}

.footer-brand p,
.footer-column,
.footer-note {
  color: var(--muted);
}

.footer-column {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: var(--green-800);
}

.footer-contact a {
  color: var(--green-800);
  font-weight: 700;
}

.footer-note {
  margin-top: 14px;
  text-align: center;
}

.screen-reader-text {
  position: absolute;
  left: -9999px;
}

@media (max-width: 1180px) {
  .hero,
  .collection-layout,
  .page-hero-grid,
  .shop-stage {
    grid-template-columns: 1fr;
  }

  .hero-stat-grid,
  .trust-strip,
  .timeline,
  .home-product-grid,
  .woo-feature-grid,
  .benefit-grid,
  .page-highlight-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .collection-card-feature {
    grid-row: auto;
    min-height: 280px;
  }
}

@media (max-width: 980px) {
  .hero,
  .contact-band,
  .two-column,
  .card-grid,
  .timeline,
  .trust-strip,
  .hero-stat-grid,
  .hero-notes,
  .category-grid,
  .woo-feature-grid,
  .home-product-grid,
  .benefit-grid,
  .story-proof-grid,
  .collection-mosaic,
  .offer-mini-grid,
  .page-highlight-grid,
  .page-side-card-grid,
  .shop-support-grid,
  .footer-grid,
  .woocommerce ul.products,
  .woocommerce div.product {
    grid-template-columns: 1fr;
  }

  .site-header {
    border-radius: 28px;
    padding: 18px;
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .site-nav {
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 6px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .utility-nav {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .announcement-inner {
    width: min(calc(100% - 20px), var(--content-width));
    min-height: 48px;
    padding: 8px 0;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .hero-copy,
  .hero-visual,
  .contact-copy,
  .page-panel {
    padding: 28px;
  }

  .shop-header {
    grid-template-columns: 1fr;
  }

  .woocommerce .woocommerce-ordering {
    margin: 0;
  }

  .woocommerce-cart .cart-collaterals,
  .woocommerce-checkout .col2-set {
    display: grid;
    gap: 18px;
  }
}

@media (max-width: 640px) {
  .site-header,
  .section-shell,
  .site-footer,
  .page-shell {
    width: min(calc(100% - 20px), var(--content-width));
  }

  .button,
  .wp-element-button,
  .woocommerce a.button,
  .woocommerce button.button,
  .woocommerce input.button,
  .added_to_cart {
    width: 100%;
  }

  .category-chip,
  .discover-tab {
    width: 100%;
    justify-content: center;
  }

  .collection-intro,
  .collection-card,
  .story-panel,
  .story-proof-card,
  .article-card,
  .timeline-step,
  .trust-strip article,
  .contact-card,
  .footer-grid,
  .page-highlight-card,
  .page-side-card,
  .shop-support-card {
    padding: 20px;
  }

  .footer-brand {
    grid-template-columns: 1fr;
  }
}

/* Storefront refresh */
.site-header {
  margin-top: 14px;
  padding: 18px 20px;
  border-radius: 30px;
}

.header-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  width: 100%;
}

.brand {
  gap: 12px;
}

.brand-mark {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  font-size: 1rem;
}

.header-center {
  display: flex;
  align-items: center;
  gap: 22px;
  min-width: 0;
}

.category-menu {
  position: relative;
}

.category-menu-toggle {
  min-height: 42px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(25, 58, 34, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--green-800);
  font-weight: 700;
}

.chevron {
  width: 9px;
  height: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
}

.category-menu-panel {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  z-index: 40;
  min-width: 240px;
  padding: 14px;
  display: grid;
  gap: 8px;
  border: 1px solid rgba(25, 58, 34, 0.12);
  border-radius: 24px;
  background: rgba(255, 251, 243, 0.98);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    visibility 180ms ease;
}

.category-menu:hover .category-menu-panel,
.category-menu.is-open .category-menu-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.category-menu-panel a {
  padding: 10px 12px;
  border-radius: 16px;
  color: var(--green-800);
}

.category-menu-panel a:hover,
.category-menu-panel a:focus-visible {
  background: rgba(21, 89, 94, 0.08);
}

.site-nav {
  gap: 18px;
  flex-wrap: wrap;
}

.site-nav a {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.96rem;
  letter-spacing: 0;
  text-transform: none;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 14px;
}

.site-search {
  min-width: 290px;
  min-height: 44px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(25, 58, 34, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.76);
}

.site-search input {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--text);
  outline: none;
}

.search-icon {
  display: inline-flex;
  width: 20px;
  height: 20px;
  color: var(--muted);
}

.search-icon svg,
.icon-link svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.utility-nav {
  gap: 10px;
  flex-wrap: nowrap;
}

.icon-link {
  position: relative;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(25, 58, 34, 0.12);
  background: rgba(255, 255, 255, 0.82);
  color: var(--green-800);
}

.cart-count {
  position: absolute;
  top: -5px;
  right: -4px;
  min-width: 21px;
  height: 21px;
  padding: 0 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #15595e;
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 0.65rem;
}

.storefront-stage {
  margin-top: 22px;
}

.hero-slider {
  display: grid;
  gap: 18px;
}

.hero-slider-stage {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(25, 58, 34, 0.1);
  background: #f8f0b6;
  box-shadow: var(--shadow);
}

.hero-slide {
  display: none;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  min-height: 540px;
  padding: 42px 60px;
  gap: 34px;
}

.hero-slide.is-active {
  display: grid;
}

.hero-slide--sun {
  background:
    radial-gradient(circle at 76% 18%, rgba(247, 188, 72, 0.52), transparent 8%),
    linear-gradient(180deg, #fdf7a4 0%, #eef08d 42%, #aac563 42%, #6e9241 100%);
}

.hero-slide--mint {
  background:
    radial-gradient(circle at 72% 16%, rgba(255, 255, 255, 0.35), transparent 12%),
    linear-gradient(180deg, #e6f2c8 0%, #d7ebaf 40%, #9fcb78 40%, #628e4b 100%);
}

.hero-slide--cream {
  background:
    radial-gradient(circle at 76% 18%, rgba(255, 244, 191, 0.45), transparent 10%),
    linear-gradient(180deg, #fbe9bf 0%, #f8d997 38%, #a8bd6d 38%, #6d8748 100%);
}

.hero-slide-media {
  position: relative;
  min-height: 420px;
  padding-bottom: 34px;
}

.hero-slide-sun {
  position: absolute;
  top: 38px;
  right: 34px;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: radial-gradient(circle, #ffd85a 0%, #f6bb38 68%, rgba(246, 187, 56, 0.32) 69%, transparent 78%);
}

.hero-slide-hill {
  position: absolute;
  left: -5%;
  right: -5%;
  border-radius: 50%;
}

.hill-back {
  bottom: 54px;
  height: 140px;
  background: #8ead4b;
}

.hill-front {
  bottom: -54px;
  height: 190px;
  background: #66853d;
}

.hero-product-stack {
  position: relative;
  height: 100%;
  z-index: 1;
}

.hero-product-card {
  position: absolute;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 26px 44px rgba(45, 45, 20, 0.16);
  background: rgba(255, 255, 255, 0.9);
}

.hero-product-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 16px 18px rgba(56, 50, 20, 0.18));
}

.hero-product-card-main {
  left: 5%;
  bottom: 60px;
  width: 250px;
  height: 330px;
}

.hero-product-card-secondary {
  left: 45%;
  bottom: 74px;
  width: 170px;
  height: 250px;
}

.hero-product-card-accent {
  left: 52%;
  bottom: 8px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
}

.hero-slide-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
}

.hero-kicker {
  display: inline-flex;
  align-self: flex-start;
  min-height: 34px;
  padding: 0 14px;
  align-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: #5e6532;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-slide-copy h1 {
  max-width: 10ch;
  margin: 0;
  font-size: clamp(2.8rem, 5vw, 5.4rem);
  line-height: 0.95;
  color: #4d2a2a;
}

.hero-slide-copy p {
  max-width: 48ch;
  color: rgba(52, 49, 28, 0.88);
  font-size: 1.04rem;
}

.hero-feature-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-feature-pill {
  min-height: 40px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: #46652d;
  font-weight: 800;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 16px;
  background: rgba(24, 66, 70, 0.86);
  color: var(--white);
  cursor: pointer;
  box-shadow: 0 16px 24px rgba(24, 66, 70, 0.18);
}

.hero-arrow-prev {
  left: 16px;
}

.hero-arrow-next {
  right: 16px;
}

.hero-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.hero-dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(25, 58, 34, 0.22);
  cursor: pointer;
}

.hero-dot.is-active {
  width: 32px;
  border-radius: 999px;
  background: #15595e;
}

.marquee-band {
  margin-top: 16px;
  overflow: hidden;
  border-top: 1px solid rgba(25, 58, 34, 0.08);
  border-bottom: 1px solid rgba(25, 58, 34, 0.08);
  background: rgba(255, 251, 243, 0.76);
}

.marquee-track {
  display: flex;
  gap: 34px;
  width: max-content;
  padding: 16px 0;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2vw, 2.25rem);
  color: #8a8d52;
  white-space: nowrap;
  animation: marquee-slide 24s linear infinite;
}

.marquee-track span::after {
  content: "*";
  margin-left: 34px;
  color: #d2b84f;
}

@keyframes marquee-slide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.discover-market {
  display: grid;
  gap: 22px;
}

.discover-heading,
.section-heading-inline {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.discover-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.discover-card {
  display: grid;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(25, 58, 34, 0.1);
  background: rgba(255, 251, 243, 0.92);
  box-shadow: var(--shadow);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.discover-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 48px rgba(28, 24, 16, 0.14);
}

.discover-card-featured {
  grid-column: span 2;
}

.discover-card-media {
  display: block;
  aspect-ratio: 1.1 / 0.86;
}

.discover-card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.discover-card-copy {
  display: grid;
  gap: 12px;
  padding: 22px;
}

.discover-card-copy h3 {
  margin: 0;
  font-size: 1.38rem;
}

.discover-card-copy p {
  color: var(--muted);
}

.discover-link {
  color: #15595e;
  font-weight: 800;
}

.offer-shelf {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 18px;
}

.offer-banner {
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(25, 58, 34, 0.1);
  background: rgba(255, 251, 243, 0.92);
  box-shadow: var(--shadow);
}

.offer-banner-large {
  background:
    radial-gradient(circle at top right, rgba(255, 216, 90, 0.26), transparent 20%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 241, 228, 0.88));
}

.offer-banner p {
  color: var(--muted);
}

.home-product-grid-storefront {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.storefront-product-card .product-card-actions {
  grid-template-columns: 1fr;
}

.assurance-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.assurance-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(25, 58, 34, 0.1);
  background: rgba(255, 251, 243, 0.92);
  box-shadow: var(--shadow);
}

.assurance-card p {
  color: var(--muted);
}

@media (max-width: 1200px) {
  .header-shell {
    grid-template-columns: auto 1fr;
  }

  .header-tools {
    grid-column: 1 / -1;
    justify-content: space-between;
  }

  .discover-grid,
  .offer-shelf,
  .assurance-strip,
  .home-product-grid-storefront {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .discover-card-featured,
  .offer-banner-large {
    grid-column: span 2;
  }
}

@media (max-width: 980px) {
  .site-header {
    padding: 16px;
  }

  .header-shell {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .header-center {
    display: none;
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding-top: 8px;
  }

  .header-center.is-open {
    display: flex;
  }

  .site-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .header-tools {
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: stretch;
  }

  .site-search {
    min-width: 0;
  }

  .utility-nav {
    justify-content: flex-end;
  }

  .hero-slide {
    grid-template-columns: 1fr;
    padding: 36px 28px 80px;
    min-height: 0;
  }

  .hero-slide-copy h1 {
    max-width: 11ch;
  }

  .hero-slide-media {
    min-height: 320px;
    order: 2;
  }

  .hero-arrow {
    top: auto;
    bottom: 18px;
    transform: none;
  }

  .hero-arrow-prev {
    left: 18px;
  }

  .hero-arrow-next {
    right: 18px;
  }

  .discover-heading,
  .section-heading-inline {
    flex-direction: column;
    align-items: flex-start;
  }

  .discover-grid,
  .offer-shelf,
  .assurance-strip,
  .home-product-grid-storefront {
    grid-template-columns: 1fr;
  }

  .discover-card-featured,
  .offer-banner-large {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  .brand-copy strong {
    font-size: 0.92rem;
  }

  .brand-copy span {
    font-size: 0.72rem;
  }

  .site-search,
  .category-menu-toggle {
    width: 100%;
  }

  .hero-slide {
    padding: 28px 20px 76px;
  }

  .hero-slide-copy h1 {
    font-size: clamp(2.3rem, 9vw, 3.6rem);
  }

  .hero-slide-copy p {
    font-size: 0.96rem;
  }

  .hero-product-card-main {
    left: 0;
    width: 180px;
    height: 248px;
  }

  .hero-product-card-secondary {
    left: 42%;
    width: 122px;
    height: 184px;
  }

  .hero-product-card-accent {
    left: 54%;
    width: 84px;
    height: 84px;
  }

  .marquee-track {
    font-size: 1.35rem;
  }
}

/* Visual refinement after screenshot comparison */
.announcement-bar {
  min-height: 30px;
  border-radius: 0;
  background: #f8f8f3;
  border-bottom: 1px solid rgba(25, 58, 34, 0.08);
}

.announcement-inner {
  min-height: 30px;
  justify-content: center;
  gap: 10px;
  font-size: 0.75rem;
  color: #394438;
}

.announcement-inner a {
  font-weight: 700;
  color: var(--green-800);
}

.site-header {
  margin-top: 0;
  padding: 12px 18px;
  border-radius: 0 0 24px 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 22px rgba(25, 58, 34, 0.08);
}

.header-shell {
  gap: 16px;
}

.brand-mark {
  width: 46px;
  height: 46px;
  background: radial-gradient(circle at 35% 30%, #b0ca73, #315c2f 68%, #17361c 100%);
  color: #f8efb1;
  font-size: 0.82rem;
}

.brand-copy strong {
  font-size: 0.84rem;
  line-height: 1.15;
}

.brand-copy span {
  font-size: 0.66rem;
}

.category-menu-toggle,
.icon-link,
.site-search {
  background: #fff;
}

.site-nav a {
  font-size: 0.9rem;
  color: #495243;
}

.site-search {
  min-width: 250px;
  min-height: 42px;
  border-radius: 14px;
}

.storefront-stage {
  margin-top: 10px;
}

.hero-slider-stage {
  border-radius: 0 0 26px 26px;
}

.hero-slide {
  grid-template-columns: 0.72fr 1.28fr;
  min-height: 500px;
  padding: 26px 68px 40px;
  gap: 18px;
}

.hero-slide--sun {
  background:
    radial-gradient(circle at 52% 18%, rgba(247, 188, 72, 0.82), transparent 5%),
    linear-gradient(180deg, #fff79d 0%, #fff79d 54%, #8eaa47 54%, #62823b 100%);
}

.hero-slide--mint {
  background:
    radial-gradient(circle at 52% 18%, rgba(245, 255, 205, 0.82), transparent 6%),
    linear-gradient(180deg, #eff8bf 0%, #eff8bf 54%, #8db35d 54%, #5f8641 100%);
}

.hero-slide--cream {
  background:
    radial-gradient(circle at 52% 18%, rgba(255, 236, 155, 0.82), transparent 6%),
    linear-gradient(180deg, #ffe7a7 0%, #ffe7a7 54%, #97aa58 54%, #627b3f 100%);
}

.hero-slide-media {
  min-height: 390px;
  padding-bottom: 18px;
  overflow: hidden;
}

.hero-slide-sun {
  top: 128px;
  right: auto;
  left: 58%;
  width: 60px;
  height: 60px;
}

.hill-back {
  bottom: 38px;
  height: 118px;
  background: #8ca84c;
}

.hill-front {
  bottom: -62px;
  height: 170px;
  background: #62823d;
}

.hero-product-card {
  border-radius: 18px;
  background: transparent;
  box-shadow: none;
}

.hero-product-card-main {
  left: 2%;
  bottom: 30px;
  width: 210px;
  height: 314px;
}

.hero-product-card-secondary {
  left: 41%;
  bottom: 40px;
  width: 152px;
  height: 260px;
}

.hero-product-card-accent {
  left: 49%;
  bottom: 0;
  width: 96px;
  height: 96px;
}

.hero-slide-copy {
  align-content: center;
  gap: 14px;
  padding-top: 18px;
}

.hero-kicker {
  min-height: 24px;
  padding: 0 10px;
  background: rgba(255, 255, 255, 0.78);
  font-size: 0.58rem;
}

.hero-slide-copy h1 {
  max-width: 8ch;
  font-size: clamp(3.2rem, 5vw, 5.8rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: #6a2f46;
}

.hero-slide-copy p {
  max-width: 40ch;
  font-size: 1rem;
  color: #53603f;
  font-weight: 600;
}

.hero-feature-row {
  gap: 18px;
}

.hero-feature-pill {
  min-height: 32px;
  padding: 0;
  background: transparent;
  color: #507228;
  font-size: 1.05rem;
  font-weight: 800;
}

.hero-actions {
  gap: 12px;
}

.hero-actions .button {
  min-height: 42px;
}

.hero-arrow {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: rgba(26, 76, 82, 0.82);
}

.hero-dots {
  margin-top: -4px;
}

.marquee-band {
  margin-top: 0;
  background: #fffdf5;
}

.marquee-track {
  padding: 12px 0;
  font-size: clamp(1.35rem, 2vw, 1.95rem);
  color: #87904f;
}

.discover-stage {
  padding-top: 24px;
}

.discover-stage-heading {
  display: grid;
  gap: 10px;
  justify-items: center;
  text-align: center;
}

.discover-stage-heading h2 {
  max-width: 15ch;
  margin: 0;
  font-size: clamp(2.2rem, 3vw, 3rem);
}

.discover-stage .eyebrow {
  margin: 0;
}

.discover-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(25, 58, 34, 0.1);
}

.discover-tab {
  position: relative;
  padding: 0 4px 12px;
  color: #b3aea7;
  font-weight: 800;
}

.discover-tab.is-active {
  color: #30372d;
}

.discover-tab.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 3px;
  border-radius: 999px;
  background: #30372d;
}

.discover-actions {
  justify-content: center;
  margin-top: -2px;
}

.home-product-grid-storefront {
  gap: 22px;
}

.storefront-product-card {
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(25, 58, 34, 0.12);
  background: #fffdf7;
  box-shadow: 0 18px 34px rgba(25, 32, 22, 0.08);
}

.storefront-product-card .home-product-image {
  position: relative;
  display: block;
  padding: 16px 16px 0;
  background: linear-gradient(180deg, #fff7de 0%, #fff7de 74%, #fffdf7 74%, #fffdf7 100%);
}

.storefront-product-card .home-product-image img {
  width: 100%;
  aspect-ratio: 1 / 1.02;
  object-fit: contain;
  object-position: center;
  border-radius: 10px;
}

.product-ribbon {
  position: absolute;
  top: 14px;
  left: 14px;
  min-height: 20px;
  padding: 0 8px;
  display: inline-flex;
  align-items: center;
  border-radius: 6px;
  background: #f4ce3a;
  color: #38311d;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.storefront-product-card .product-badge {
  top: auto;
  right: 14px;
  bottom: 14px;
  background: #15595e;
}

.storefront-product-card .home-product-copy {
  gap: 10px;
  padding: 16px 16px 18px;
}

.storefront-product-card .micro-label {
  color: #998f76;
}

.storefront-product-card h3 {
  font-size: 1.05rem;
}

.product-price-row {
  font-size: 1.05rem;
}

.product-card-note {
  min-height: 2.8em;
  font-size: 0.88rem;
  color: #666c5e;
}

.product-review-line {
  min-height: 20px;
}

.product-card-actions .button {
  min-height: 38px;
  font-size: 0.78rem;
}

.discover-market {
  gap: 18px;
}

.discover-heading {
  align-items: center;
}

.discover-heading h2 {
  margin: 6px 0 0;
  max-width: 19ch;
}

.discover-grid {
  gap: 22px;
}

.discover-card {
  border-radius: 20px;
  background: #fffdf7;
}

.offer-shelf {
  margin-top: 4px;
}

.offer-banner {
  background: #fffdf7;
}

@media (max-width: 1200px) {
  .hero-slide {
    padding: 24px 44px 36px;
  }

  .hero-slide-copy h1 {
    font-size: clamp(2.8rem, 5vw, 4.8rem);
  }
}

@media (max-width: 980px) {
  .site-header {
    padding: 12px 14px 14px;
    border-radius: 0 0 18px 18px;
  }

  .announcement-inner {
    justify-content: space-between;
    padding: 0 12px;
  }

  .hero-slide {
    grid-template-columns: 1fr;
    padding: 28px 26px 72px;
  }

  .hero-slide-copy {
    order: 1;
  }

  .hero-slide-media {
    order: 2;
    min-height: 280px;
  }

  .hero-slide-copy h1 {
    max-width: 9ch;
  }

  .discover-stage-heading h2 {
    max-width: 12ch;
  }

  .discover-actions {
    margin-top: 4px;
  }
}

@media (max-width: 640px) {
  .announcement-inner {
    font-size: 0.68rem;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    font-size: 0.7rem;
  }

  .hero-slide {
    padding: 24px 18px 68px;
  }

  .hero-slide-copy h1 {
    font-size: clamp(2.4rem, 9vw, 4rem);
  }

  .hero-feature-row {
    gap: 10px 16px;
  }

  .hero-feature-pill {
    font-size: 0.92rem;
  }

  .hero-product-card-main {
    width: 158px;
    height: 220px;
  }

  .hero-product-card-secondary {
    left: 44%;
    width: 112px;
    height: 168px;
  }

  .hero-product-card-accent {
    left: 56%;
    width: 74px;
    height: 74px;
  }

  .discover-tabs {
    gap: 12px;
  }

  .discover-tab {
    font-size: 0.92rem;
  }
}

/* Final hero image override */
.hero-product-card {
  background: transparent;
  box-shadow: none;
}

.hero-product-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  border-radius: inherit;
  filter: drop-shadow(0 18px 24px rgba(56, 50, 20, 0.16));
}

.hero-product-card-main {
  left: 2%;
  bottom: 34px;
  width: 380px;
  height: 292px;
  border-radius: 26px;
}

.hero-product-card-secondary,
.hero-product-card-accent {
  display: none;
}

@media (max-width: 980px) {
  .hero-product-card-main {
    left: 0;
    width: 300px;
    height: 224px;
  }
}

@media (max-width: 640px) {
  .hero-product-card-main {
    width: 238px;
    height: 176px;
  }
}

/* =====================================================================
   Legal identity, compliance & invoice blocks  (STEP 1)
   ===================================================================== */
.footer-legal {
  max-width: var(--content-width);
  margin: 32px auto 0;
  padding: 22px 24px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 14px 32px;
  align-items: flex-start;
  justify-content: space-between;
}

.footer-legal-identity {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: 640px;
}

.footer-legal-identity strong {
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green-800);
}

.footer-legal-identity span,
.footer-legal-compliance span {
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--muted);
}

.footer-legal-compliance {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  font-family: var(--font-mono);
}

.compliance-pending {
  display: inline-block;
  padding: 1px 8px;
  border-radius: 999px;
  background: rgba(201, 153, 56, 0.18);
  border: 1px solid rgba(201, 153, 56, 0.5);
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Order-received / email seller & tax block (acts as the invoice record) */
.order-legal-identity {
  margin-top: 28px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--cream-50);
}

.order-legal-identity h2 {
  margin: 0 0 12px;
  font-size: 1.05rem;
  font-family: var(--font-display);
  color: var(--green-800);
}

.order-legal-table {
  width: 100%;
  border-collapse: collapse;
}

.order-legal-table th,
.order-legal-table td {
  text-align: left;
  vertical-align: top;
  padding: 6px 12px 6px 0;
  font-size: 0.86rem;
  color: var(--text);
}

.order-legal-table th {
  width: 170px;
  color: var(--muted);
  font-weight: 600;
}

.order-legal-note {
  margin: 12px 0 0;
  font-size: 0.78rem;
  color: var(--muted);
}

@media (max-width: 640px) {
  .footer-legal {
    flex-direction: column;
  }
  .order-legal-table th {
    width: 120px;
  }
}

/* =====================================================================
   STEP 2 — storefront sections, cart drawer, responsive media
   ===================================================================== */

/* Responsive <picture> sizing */
picture { display: block; }
.hero-product-card picture,
.hero-product-card img,
.story-media picture,
.story-media img,
.discover-card-media picture,
.discover-card-media img,
.blog-card-media picture,
.blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.discover-card-media img,
.blog-card-media img { object-fit: cover; }

/* Sticky header gains a shadow once scrolled */
.site-header.is-scrolled {
  box-shadow: 0 10px 34px rgba(36, 27, 14, 0.12);
  backdrop-filter: saturate(1.4) blur(8px);
}

/* ---- Section rhythm helpers ---- */
.product-showcase .home-product-grid-storefront {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
@media (max-width: 1024px) { .product-showcase .home-product-grid-storefront { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px)  { .product-showcase .home-product-grid-storefront { grid-template-columns: repeat(2, 1fr); gap: 14px; } }

/* ---- Origin story ---- */
.story-band {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: center;
}
.story-media {
  background: linear-gradient(150deg, var(--cream-100), var(--cream-50));
  border-radius: var(--radius-xl);
  padding: 28px;
  border: 1px solid var(--line);
  aspect-ratio: 4 / 3;
}
.story-copy h2 { font-family: var(--font-display); font-size: clamp(1.7rem, 3vw, 2.5rem); color: var(--green-800); margin: 8px 0 14px; }
.story-points { list-style: none; padding: 0; margin: 18px 0; display: grid; gap: 10px; }
.story-points li { position: relative; padding-left: 28px; color: var(--muted); }
.story-points li::before { content: "✓"; position: absolute; left: 0; color: var(--leaf); font-weight: 700; }
@media (max-width: 820px) { .story-band { grid-template-columns: 1fr; } }

/* ---- Process ---- */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 24px; }
.process-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  box-shadow: var(--shadow);
}
.process-num { font-family: var(--font-mono); font-size: 0.95rem; color: var(--gold); letter-spacing: 0.1em; }
.process-card h3 { margin: 10px 0 8px; font-size: 1.15rem; color: var(--green-800); }
.process-card p { color: var(--muted); font-size: 0.92rem; line-height: 1.55; }
@media (max-width: 920px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .process-grid { grid-template-columns: 1fr; } }

/* ---- Certifications ---- */
.cert-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.cert-card {
  display: flex; align-items: center; gap: 14px;
  background: var(--green-800); color: var(--cream-50);
  border-radius: var(--radius-md); padding: 18px 20px;
}
.cert-mark {
  flex: 0 0 auto; width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center; background: var(--leaf); color: #fff; font-weight: 700;
}
.cert-card strong { display: block; font-size: 0.98rem; }
.cert-card span { display: block; font-size: 0.8rem; opacity: 0.82; }
@media (max-width: 900px) { .cert-band { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .cert-band { grid-template-columns: 1fr; } }

/* ---- Reviews ---- */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 22px; }
.review-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow);
}
.review-stars { color: var(--gold); letter-spacing: 2px; font-size: 1.05rem; }
.review-card p { color: var(--text); font-size: 1rem; line-height: 1.6; margin: 12px 0; font-family: var(--font-display); }
.review-author { color: var(--muted); font-size: 0.85rem; }
.reviews-note { text-align: center; color: var(--muted); font-size: 0.8rem; margin-top: 16px; }
@media (max-width: 900px) { .reviews-grid { grid-template-columns: 1fr; } }

/* ---- Blog ---- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.blog-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.blog-card-media { display: block; aspect-ratio: 16 / 10; background: var(--cream-100); }
.blog-card-copy { padding: 18px 20px 22px; }
.blog-card-copy h3 { margin: 8px 0; font-size: 1.1rem; color: var(--green-800); }
.blog-card-copy p { color: var(--muted); font-size: 0.9rem; }
@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr; } }

/* ---- Newsletter ---- */
.newsletter-band { }
.newsletter-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: center;
  background: linear-gradient(135deg, var(--green-800), var(--green-900));
  color: var(--cream-50); border-radius: var(--radius-xl); padding: 40px;
}
.newsletter-copy h2 { font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.3rem); margin: 6px 0 0; }
.newsletter-form { display: flex; flex-wrap: wrap; gap: 12px; }
.newsletter-form input[type="email"] {
  flex: 1 1 220px; min-width: 0; padding: 14px 18px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.95); color: var(--text); font-size: 1rem;
}
.newsletter-feedback { flex-basis: 100%; margin: 4px 2px 0; font-size: 0.85rem; min-height: 1.2em; color: var(--leaf-soft); }
.newsletter-form.is-success .newsletter-feedback { color: #bff0c1; }
@media (max-width: 760px) { .newsletter-inner { grid-template-columns: 1fr; padding: 28px; } }

/* ---- Cart drawer ---- */
body.cart-open { overflow: hidden; }
.cart-drawer-overlay {
  position: fixed; inset: 0; background: rgba(16, 40, 22, 0.45);
  opacity: 0; transition: opacity 0.25s ease; z-index: 1200;
}
.cart-drawer-overlay.is-visible { opacity: 1; }
.cart-drawer {
  position: fixed; top: 0; right: 0; height: 100%; width: min(400px, 92vw);
  background: var(--cream-50); z-index: 1300; transform: translateX(100%);
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex; flex-direction: column; box-shadow: -20px 0 60px rgba(16, 40, 22, 0.22);
}
.cart-drawer.is-open { transform: translateX(0); }
.cart-drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 22px; border-bottom: 1px solid var(--line);
}
.cart-drawer-head strong { font-size: 1.1rem; color: var(--green-800); }
.cart-drawer-close { background: none; border: 0; font-size: 1.8rem; line-height: 1; cursor: pointer; color: var(--muted); }
.cart-drawer-body { flex: 1 1 auto; overflow-y: auto; padding: 18px 22px; }
.cart-drawer-empty { color: var(--muted); margin-bottom: 14px; }
.cart-drawer-body ul.woocommerce-mini-cart { list-style: none; margin: 0; padding: 0; }
.cart-drawer-body .woocommerce-mini-cart-item { display: flex; gap: 10px; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 0.9rem; }
.cart-drawer-body .woocommerce-mini-cart-item img { width: 48px; height: 48px; object-fit: cover; border-radius: 10px; }
.cart-drawer-body .woocommerce-mini-cart__total { padding-top: 14px; font-size: 1rem; }
.cart-drawer-foot { padding: 18px 22px; border-top: 1px solid var(--line); display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.cart-drawer-foot .button { width: 100%; text-align: center; }

/* Announcement bar tools + currency switcher */
.announcement-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.announcement-tools { display: flex; align-items: center; gap: 16px; }
.currency-switcher { display: inline-flex; align-items: center; font-size: 0.82rem; }
.currency-switcher select { background: transparent; border: 1px solid rgba(255,255,255,0.35); color: inherit; border-radius: 999px; padding: 2px 8px; font: inherit; }
.currency-switcher .woocs_flag_view_item, .currency-switcher .woocommerce-currency-switcher-form { margin: 0; }
@media (max-width: 600px) { .announcement-inner { justify-content: center; text-align: center; } }

/* Hide WOOCS broken flag images; keep a clean text dropdown */
.announcement-tools .woocs img,
.currency-switcher img,
.woocs-flag,
.woocommerce-currency-switcher-form img { display: none !important; }
.woocs .woocommerce-currency-switcher-form,
.woocs-style-1 .woocommerce-currency-switcher-form { margin: 0 !important; }

/* Anchor scroll offset so sticky header doesn't cover section headings */
html { scroll-padding-top: 110px; }
#discover, #best-sellers, #bundles, #story, #process, #reviews, #journal, #newsletter { scroll-margin-top: 110px; }

/* Front-page product card: WooCommerce loop add-to-cart styled as primary */
.product-card-actions .button.add_to_cart_button,
.product-card-actions a.button:not(.button-secondary) {
  width: 100%; text-align: center;
  background: linear-gradient(135deg, var(--green-700), var(--green-800));
  color: var(--cream-50); border: 0;
}
.product-card-actions .button.add_to_cart_button:hover { filter: brightness(1.06); }
.product-card-actions .added_to_cart { display: none; }

/* Farm-to-home process banner image */
.process-banner { margin: 0 0 24px; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); }
.process-banner img { width: 100%; height: auto; display: block; }

/* Hero now shows full landscape lifestyle banners — enlarge the media card
   and match the 16:9 banner ratio so they read properly (was sized for small
   transparent product cutouts). */
.hero-product-stack .hero-product-card-main {
  width: min(480px, 84vw);
  height: auto;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.hero-product-stack .hero-product-card-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =====================================================================
   Full-bleed banner hero — image carries its own text/CTA (no overlay)
   ===================================================================== */
.hero-slide--banner {
  display: none;
  padding: 0 !important;
  min-height: 0 !important;
  grid-template-columns: none !important;
  background: none !important;
}
.hero-slide--banner.is-active { display: block; }
.hero-banner-link {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  line-height: 0;
}
.hero-banner-link picture,
.hero-banner-link img.hero-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Hide leftover scenery if any banner slide reuses old decoration hooks */
.hero-slide--banner .hero-slide-sun,
.hero-slide--banner .hero-slide-hill { display: none; }

/* Mobile: slides that have a portrait variant switch to a portrait-friendly
   ratio so the tall hero image fills without awkward letterboxing. */
@media (max-width: 768px) {
  .hero-slide--portrait-mobile .hero-banner-link { aspect-ratio: 4 / 5; }
}
