:root {
  --primary: #0f5132;
  --accent: #d39e00;
  --surface: #fdfbf7;
  --ink: #121815;
  --muted: #5f6d64;
  --line: #e9e2d5;
  --panel: #fffefb;
  --shadow: 0 24px 70px rgba(18, 24, 21, 0.08);
  --radius: 28px;
  --max: 1180px;
  --sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --serif: "Playfair Display", "Didot", "Bodoni MT", "Georgia", "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--sans);
  background:
    radial-gradient(circle at top left, rgba(211, 158, 0, 0.14), transparent 32%),
    linear-gradient(180deg, #fffcf7 0%, var(--surface) 58%, #f7f1e8 100%);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--serif);
  letter-spacing: -0.03em;
  margin-top: 0;
}

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

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

.sr-only,
.skip-link {
  position: absolute;
  left: -9999px;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 100;
  padding: 0.8rem 1rem;
  background: var(--ink);
  color: white;
  border-radius: 999px;
}

.topbar,
.nav-shell,
.hero,
.section,
.site-footer,
.page-shell {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}

.topbar {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 990;
  background: rgba(253, 251, 247, 0.92);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(233, 226, 213, 0.6);
  box-shadow: 0 10px 30px rgba(18, 24, 21, 0.03);
  transition: background 0.3s ease, padding 0.3s ease;
}

/* Header Container */
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
  padding: 0.85rem 0;
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), #1b6d45);
  color: white;
  box-shadow: 0 4px 10px rgba(15, 81, 50, 0.2);
}

.brand-leaf-icon {
  width: 1.4rem;
  height: 1.4rem;
  stroke-width: 2.5;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
}

.brand strong {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--ink);
  font-family: var(--serif);
}

.brand small {
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Mega-Menu Dropdown */
.nav-item-dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
}

.dropdown-icon {
  width: 8px;
  height: 8px;
  transition: transform 0.25s ease;
}

.nav-item-dropdown:hover .dropdown-icon {
  transform: rotate(180deg);
}

.nav-dropdown-content {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  width: 660px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 1.5rem;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 1.5rem;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-item-dropdown:hover .nav-dropdown-content {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(6px);
}

.dropdown-links-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.dropdown-link-item {
  display: flex;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 12px;
  background: white;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

.dropdown-link-item:hover {
  background: rgba(15, 81, 50, 0.04);
  border-color: rgba(15, 81, 50, 0.08);
}

.dropdown-link-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  padding-top: 0.15rem;
}

.dropdown-link-text {
  display: flex;
  flex-direction: column;
}

.dropdown-link-text strong {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.1rem;
}

.dropdown-link-text small {
  font-size: 0.75rem;
  color: var(--muted);
}

.dropdown-promo-card {
  background: linear-gradient(135deg, rgba(15, 81, 50, 0.06), rgba(211, 158, 0, 0.08));
  border: 1px solid rgba(15, 81, 50, 0.1);
  border-radius: 14px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.dropdown-promo-content h4 {
  margin: 0.35rem 0 0.5rem;
  font-size: 1.05rem;
  color: var(--primary);
  font-family: var(--serif);
}

.dropdown-promo-content p {
  margin: 0 0 1rem;
  font-size: 0.8rem;
  line-height: 1.4;
  color: var(--muted);
}

.promo-badge-mini {
  display: inline-block;
  align-self: flex-start;
  background: var(--accent);
  color: var(--ink);
  font-size: 0.65rem;
  font-weight: 800;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.promo-btn-mini {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
  padding-bottom: 1px;
  transition: all 0.2s ease;
}

.promo-btn-mini:hover {
  letter-spacing: 0.02em;
}

/* Desktop Search Drawer */
.header-search-drawer {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: var(--panel);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 15px 30px rgba(18, 24, 21, 0.05);
  z-index: 890;
  transform: translateY(-20px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.header-search-drawer.is-open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.search-drawer-inner {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
  padding: 1.5rem 0 2rem;
}

.search-drawer-inner .desktop-search {
  max-width: 700px;
  margin: 0 auto;
}

.search-clear-btn {
  position: absolute;
  top: 50%;
  right: 1.25rem;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  font-size: 1.5rem;
  color: var(--muted);
  cursor: pointer;
  padding: 0.2rem;
  transition: color 0.2s;
  line-height: 1;
}

.search-clear-btn:hover {
  color: var(--ink);
}

.search-drawer-suggestions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
  font-size: 0.88rem;
}

.suggestion-label {
  color: var(--muted);
  font-weight: 600;
}

.suggestion-tag {
  background: white;
  border: 1px solid var(--line);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-weight: 600;
  color: var(--ink);
  transition: all 0.2s ease;
}

.suggestion-tag:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(15, 81, 50, 0.04);
}

/* Mobile Search Tier */
.header-mobile-search-tier {
  display: none;
}

/* Main Navigation Menu */
.main-nav {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-item {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--muted);
  transition: all 0.2s ease;
}

.nav-item:hover,
.nav-item.is-active {
  color: var(--primary);
  background: rgba(15, 81, 50, 0.06);
}

/* Utility Nav Actions */
.utility-nav {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.utility-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  color: var(--ink);
  border: none;
  background: transparent;
  font: inherit;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 0.88rem;
  font-weight: 600;
}

.utility-link:hover {
  background: rgba(15, 81, 50, 0.05);
  color: var(--primary);
}

.utility-icon-badge-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.utility-icon-badge-wrapper .badge {
  position: absolute;
  top: -6px;
  right: -8px;
  background: #E03131;
  color: white;
  font-size: 0.68rem;
  font-weight: 800;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--panel);
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  padding: 1.4rem 0 2.5rem;
}

.hero-copy,
.hero-visual,
.promo-band,
.category-card,
.product-card,
.editorial-card,
.trust-row article,
.page-header,
.prose,
.listing-shell,
.promo-card {
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 4px 15px rgba(18, 24, 21, 0.02);
}

.hero-copy,
.hero-visual,
.promo-band,
.page-header,
.prose,
.listing-shell {
  border-radius: var(--radius);
}

/* Card hover animation defaults */
.category-card,
.product-card,
.editorial-card,
.trust-row article {
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s ease;
}

.category-card:hover,
.product-card:hover,
.editorial-card:hover,
.trust-row article:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(18, 24, 21, 0.06);
  border-color: rgba(15, 81, 50, 0.18);
}

.hero-copy {
  padding: 2.4rem;
  background:
    linear-gradient(150deg, rgba(15, 81, 50, 0.08), rgba(255, 255, 255, 0.96)),
    radial-gradient(circle at top right, rgba(211, 158, 0, 0.16), transparent 34%);
}

.hero h1 {
  margin: 0.5rem 0 1rem;
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  line-height: 0.98;
}

.eyebrow {
  margin: 0 0 0.6rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
}

.lead {
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--muted);
}

.lead-copy p {
  margin: 0;
}

.rotating-pill {
  display: inline-grid;
  position: relative;
  margin-top: 0.7rem;
  min-height: 1.4em;
  color: var(--primary);
}

.rotating-pill span {
  grid-area: 1 / 1;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.rotating-pill .is-active {
  opacity: 1;
  transform: translateY(0);
}

.hero-actions,
.product-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1.4rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 3rem;
  padding: 0.85rem 1.15rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
}

.button--solid {
  background: var(--primary);
  color: white;
}

.button--soft {
  background: rgba(15, 81, 50, 0.08);
  color: var(--primary);
}

.hero-visual {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: var(--radius);
}

.hero-stat {
  padding: 1rem 1.1rem;
  border-radius: 22px;
  background: var(--panel);
}

.hero-stat span {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
}

.section {
  padding: 0 0 2rem;
}

.section-heading {
  margin-bottom: 1rem;
}

.section-heading h1,
.section-heading h2 {
  margin: 0.2rem 0 0.55rem;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.category-grid,
.product-grid,
.article-grid-home,
.footer-grid {
  display: grid;
  gap: 1rem;
}

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

.category-card,
.product-card,
.editorial-card,
.trust-row article {
  border-radius: 24px;
  padding: 1.2rem;
}

.category-card {
  min-height: 11rem;
  background:
    linear-gradient(160deg, rgba(15, 81, 50, 0.08), rgba(255,255,255,0.95)),
    radial-gradient(circle at bottom right, rgba(211, 158, 0, 0.15), transparent 28%);
}

.category-card strong {
  display: block;
  font-size: 1.35rem;
  margin-bottom: 0.35rem;
}

.category-card span,
.product-stock,
.product-category,
.editorial-card p,
.trust-row article span {
  color: var(--muted);
}

.promo-band {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.2rem;
  padding: 1.4rem;
}

.countdown {
  display: flex;
  gap: 0.65rem;
  margin: 1rem 0 1.3rem;
}

.countdown span {
  padding: 0.7rem 0.85rem;
  border-radius: 16px;
  background: var(--panel);
  border: 1px solid var(--line);
  font-weight: 700;
}

.promo-card {
  border-radius: 24px;
  overflow: hidden;
  display: grid;
  align-content: end;
}

.promo-card p {
  margin: 0;
  padding: 1rem 1.1rem 1.2rem;
  font-weight: 700;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.trust-row article strong {
  display: block;
  margin-bottom: 0.35rem;
}

.product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.product-card.is-hidden {
  display: none;
}

.product-card {
  display: flex;
  flex-direction: column;
  padding: 1.25rem !important;
}

.product-card__media {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  margin-bottom: 1rem;
}

.product-card__media a {
  display: block;
  overflow: hidden;
  border-radius: 18px;
}

.product-card__media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  margin-bottom: 0;
}

.product-card:hover .product-card__media img {
  transform: scale(1.04);
}

.favorite-toggle {
  position: absolute;
  top: 10px;
  right: 10px;
  background: white;
  border: 1px solid var(--line);
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s;
  z-index: 5;
  padding: 0;
}

.favorite-toggle:hover {
  background: #FFF0F2;
  color: #E03131;
  border-color: #FFA8A8;
}

.favorite-toggle.is-favorited svg {
  fill: #E03131;
  stroke: #E03131;
}

.product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  pointer-events: none;
  z-index: 5;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.product-badge--hot {
  background: #FFF0F2;
  color: #C2255C;
  border: 1px solid #FFDEEB;
}

.product-badge--bio {
  background: #EBFBEE;
  color: #2B8A3E;
  border: 1px solid #D3F9D8;
}

.product-badge--new {
  background: #FFF9DB;
  color: #F08C00;
  border: 1px solid #FFE066;
}

.product-card h3 {
  margin: 0.5rem 0 0.25rem;
  font-size: 1.35rem;
  line-height: 1.25;
}

.product-card h3 a:hover {
  color: var(--primary);
}

.product-price {
  margin: 0.35rem 0;
  color: var(--ink);
  font-size: 1.2rem;
  font-weight: 800;
}

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

.page-shell {
  width: min(calc(100% - 2rem), 1040px);
  margin: 0 auto;
  padding: 1rem 0 2.5rem;
}

.page-header,
.prose,
.listing-shell {
  padding: 1.6rem;
}

.page-header {
  margin-bottom: 1rem;
}

.page-header h1 {
  margin: 0.2rem 0 0.6rem;
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.product-detail {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 1.2rem;
  margin-bottom: 1rem;
}

.product-detail__summary,
.product-detail__media {
  padding: 1.2rem;
  border-radius: 24px;
  background: rgba(255,255,255,0.86);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.product-bullets {
  display: grid;
  gap: 0.55rem;
  margin-top: 1rem;
}

.product-bullets span {
  padding: 0.75rem 0.9rem;
  border-radius: 16px;
  background: rgba(15, 81, 50, 0.06);
}

.prose {
  font-size: 1.05rem;
  line-height: 1.85;
}

.prose h2,
.prose h3 {
  margin-top: 2rem;
}

.listing-shell {
  border-radius: 28px;
}

.shop-intro,
.cart-page-grid,
.checkout-grid {
  display: grid;
  gap: 1rem;
}

.shop-intro {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 1rem;
}

.shop-intro article,
.cart-summary-card,
.checkout-form,
.cart-page-item,
.checkout-modal {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 24px;
}

.shop-intro article {
  padding: 1.1rem;
  display: grid;
  gap: 0.35rem;
}

.shop-intro span {
  color: var(--muted);
}

.cart-page-shell,
.checkout-shell {
  margin-top: 1rem;
}

.cart-page-grid,
.checkout-grid {
  grid-template-columns: 1.25fr 0.75fr;
}

.cart-page-items {
  display: grid;
  gap: 1rem;
}

.cart-page-item {
  padding: 1rem 1.1rem;
  display: grid;
  gap: 0.3rem;
}

.cart-summary-card,
.checkout-form {
  padding: 1.25rem;
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--line);
}

.cart-summary-row:last-of-type {
  margin-bottom: 1rem;
}

.checkout-form {
  display: grid;
  gap: 1rem;
}

.checkout-form label {
  display: grid;
  gap: 0.45rem;
  font-weight: 600;
}

.checkout-form span {
  color: var(--ink);
}

.checkout-form input,
.checkout-form textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  font: inherit;
}

.checkout-modal {
  width: min(32rem, calc(100% - 2rem));
  margin: 12vh auto;
  padding: 1.5rem;
}

.mini-cart {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1002;
  width: min(28rem, 92vw);
  height: 100vh;
  padding: 1.5rem;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 1.5rem;
  transform: translateX(102%);
  transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
  border-left: 1px solid var(--line);
  background: var(--panel);
  box-shadow: -8px 0 30px rgba(18, 24, 21, 0.08);
}

.mini-cart.is-open {
  transform: translateX(0);
}

.mobile-menu-drawer {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1002;
  width: min(20rem, 80vw);
  height: 100vh;
  padding: 1.5rem;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 2rem;
  transform: translateX(-102%);
  transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
  border-right: 1px solid var(--line);
  background: var(--panel);
  box-shadow: 8px 0 30px rgba(18, 24, 21, 0.08);
}

.mobile-menu-drawer.is-open {
  transform: translateX(0);
}

.mobile-menu-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-menu-drawer__header h2 {
  margin: 0;
  font-size: 1.5rem;
}

.mobile-menu-drawer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mobile-nav-item {
  font-size: 1.1rem;
  font-weight: 600;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  color: var(--ink);
  transition: all 0.2s;
}

.mobile-nav-item:hover,
.mobile-nav-item.is-active {
  background: rgba(15, 81, 50, 0.06);
  color: var(--primary);
}

.mini-cart__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mini-cart__header h2 {
  margin: 0.15rem 0 0;
  font-size: 1.5rem;
}

.mini-cart__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
  font-weight: 700;
}

.mini-cart__items {
  overflow-y: auto;
  display: grid;
  gap: 1rem;
  align-content: start;
  padding-right: 0.25rem;
}

.mini-cart__footer {
  display: grid;
  gap: 0.75rem;
}

.icon-button {
  border: none;
  background: transparent;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  transition: all 0.2s;
}

.icon-button:hover {
  background: rgba(15, 81, 50, 0.06);
  color: var(--ink);
}

.overlay {
  position: fixed;
  inset: 0;
  z-index: 1001;
  background: rgba(18, 24, 21, 0.35);
  backdrop-filter: blur(4px);
  animation: fadeInEffect 0.2s ease-out;
}

@keyframes fadeInEffect {
  from { opacity: 0; }
  to { opacity: 1; }
}

.footer-grid {
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  padding: 2.5rem 0 3rem;
  border-top: 1px solid var(--line);
  margin-top: 3rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.65rem;
}

.footer-links a:hover {
  color: var(--primary);
  text-decoration: underline;
}

/* Category cards with icons on homepage */
.category-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.75rem;
  min-height: 12.5rem;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 4px 12px rgba(18, 24, 21, 0.01);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--primary);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.category-card:hover::before {
  opacity: 1;
}

.category-card-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 12px;
  background: rgba(15, 81, 50, 0.06);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.category-card:hover .category-card-icon {
  background: var(--primary);
  color: white;
  transform: scale(1.05);
}

.category-card strong {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.5rem;
  display: block;
}

.category-card span {
  font-size: 0.88rem;
  line-height: 1.4;
  color: var(--muted);
  display: block;
}

/* Hero visual overlay composition */
.hero-visual {
  position: relative;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  min-height: 380px;
}

.hero-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  transition: transform 0.5s ease;
  z-index: 1;
}

.hero-visual:hover img {
  transform: scale(1.02);
}

.hero-visual-stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.hero-stat {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--line);
  padding: 1.25rem;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(18, 24, 21, 0.05);
  backdrop-filter: blur(8px);
}

.hero-stat span {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.hero-stat p {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.4;
  color: var(--muted);
}

/* Cart list row styling */
.cart-item-image-link {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  flex-shrink: 0;
}

.cart-item-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-info {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.cart-item-category {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
}

.cart-item-title {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}

.cart-item-price {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--ink);
}

.cart-item-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.quantity-selector {
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  overflow: hidden;
  height: 2.25rem;
}

.quantity-btn {
  border: none;
  background: transparent;
  color: var(--ink);
  width: 2rem;
  height: 100%;
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quantity-btn:hover {
  background: rgba(15, 81, 50, 0.05);
}

.quantity-value {
  font-size: 0.88rem;
  font-weight: 700;
  min-width: 1.5rem;
  text-align: center;
}

.cart-item-remove-btn {
  border: none;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  padding: 0.4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.cart-item-remove-btn:hover {
  color: #DC3545;
  background: #FFF5F5;
}

.mini-cart__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem;
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.cart-page-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem;
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
}

/* Shop filter buttons */
.shop-category-filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin: 1.5rem 0 2rem;
}

.filter-btn {
  border: 1px solid var(--line);
  background: white;
  color: var(--ink);
  padding: 0.6rem 1.15rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-btn:hover {
  background: rgba(15, 81, 50, 0.04);
  border-color: rgba(15, 81, 50, 0.15);
}

.filter-btn.is-active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(15, 81, 50, 0.15);
}

/* Checkout item summary styles */
.checkout-item-summary-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
}

.checkout-item-thumb {
  width: 3.5rem;
  height: 3.5rem;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
  flex-shrink: 0;
}

.checkout-item-meta {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.checkout-item-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
}

.checkout-item-qty {
  font-size: 0.78rem;
  color: var(--muted);
}

.checkout-item-price {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink);
}

.checkout-total-row {
  font-size: 1.15rem;
  font-weight: 800;
  border-top: 2px solid var(--line);
  padding-top: 1rem;
}

/* Account pages facade layouts */
.account-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 2.5rem;
  margin-top: 1.5rem;
}

.account-menu {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.account-menu-item {
  text-align: left;
  border: 1px solid transparent;
  background: transparent;
  color: var(--ink);
  padding: 0.9rem 1.25rem;
  border-radius: 14px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.account-menu-item:hover {
  background: rgba(15, 81, 50, 0.05);
  color: var(--primary);
}

.account-menu-item.is-active {
  background: rgba(15, 81, 50, 0.08);
  color: var(--primary);
  border-color: rgba(15, 81, 50, 0.15);
}

.account-content {
  background: white;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 2.25rem;
  box-shadow: 0 4px 20px rgba(18, 24, 21, 0.02);
}

.account-tab-pane {
  display: none;
}

.account-tab-pane.is-active {
  display: block;
  animation: fadeIn 0.25s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

.order-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1.25rem;
}

.order-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--panel);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(18, 24, 21, 0.01);
}

.order-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  background: rgba(15, 81, 50, 0.03);
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
  gap: 0.5rem;
}

.order-id {
  font-weight: 700;
  color: var(--primary);
  display: block;
}

.order-date {
  font-size: 0.8rem;
  color: var(--muted);
}

.order-status {
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.order-status--processing {
  background: #FFF3CD;
  color: #856404;
  border: 1px solid #FFEBAA;
}

.order-status--completed {
  background: #D1E7DD;
  color: #0F5132;
  border: 1px solid #BADBCC;
}

.order-body {
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.order-item-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.92rem;
  color: var(--ink);
}

.order-item-row span:first-of-type {
  flex-grow: 1;
}

.order-item-row span:nth-of-type(2) {
  color: var(--muted);
  margin-right: 2rem;
}

.order-footer {
  padding: 1rem 1.25rem;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.5);
}

.order-footer strong {
  font-size: 1.1rem;
  color: var(--primary);
}

.account-profile-form,
.newsletter-settings-form {
  display: grid;
  gap: 1.25rem;
  max-width: 480px;
  margin-top: 1.25rem;
}

.account-profile-form label,
.newsletter-settings-form label {
  display: grid;
  gap: 0.45rem;
  font-weight: 600;
  font-size: 0.92rem;
}

.account-profile-form input {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  font: inherit;
  color: var(--ink);
  background: var(--panel);
}

.account-profile-form input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(15, 81, 50, 0.08);
}

.checkbox-label {
  display: flex !important;
  align-items: center;
  gap: 0.65rem;
  cursor: pointer;
  user-select: none;
  font-weight: 500 !important;
}

.checkbox-label input[type="checkbox"] {
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 4px;
  border: 1px solid var(--line);
  accent-color: var(--primary);
  cursor: pointer;
}

.save-success-message {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  background: #D1E7DD;
  color: #0F5132;
  border: 1px solid #BADBCC;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  animation: fadeIn 0.2s ease;
}

/* Media query definitions */
@media (max-width: 900px) {
  .site-header {
    position: static;
    backdrop-filter: none;
  }

  .header-tier-1 {
    grid-template-columns: auto 1fr auto;
    gap: 0.85rem;
  }

  .desktop-search {
    display: none;
  }

  .header-tier-2 {
    border-top: none;
  }

  .header-tier-2-inner {
    display: block;
    padding-top: 0;
  }

  .main-nav {
    display: none;
  }

  .mobile-search,
  .mobile-menu-trigger {
    display: block;
  }

  .mobile-menu-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.9rem;
    height: 2.9rem;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: white;
    color: var(--ink);
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(18, 24, 21, 0.05);
  }

  .brand {
    min-width: 0;
  }

  .brand-text small {
    display: none;
  }

  .mobile-search {
    padding-bottom: 0.85rem;
  }

  .hero,
  .promo-band,
  .category-grid,
  .product-grid,
  .article-grid-home,
  .trust-row,
  .footer-grid,
  .product-detail,
  .shop-intro,
  .cart-page-grid,
  .checkout-grid,
  .account-grid {
    grid-template-columns: 1fr;
  }
  
  .account-menu {
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--line);
  }
  
  .account-menu-item {
    white-space: nowrap;
  }
}

@media (max-width: 768px) {
  .utility-text {
    display: none;
  }

  .utility-link {
    padding: 0.5rem;
  }

  .header-tier-1 {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }
}

@media (max-width: 640px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.5rem 0;
  }

  .hero-copy,
  .hero-visual,
  .promo-band,
  .page-header,
  .prose,
  .listing-shell {
    padding: 1.25rem;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 12vw, 3.6rem);
  }
}

/* ==========================================================================
   PREMIUM STOREFRONT REDESIGN STYLES
   ========================================================================== */

/* Shipping Progress Bar in Mini Cart */
.shipping-progress-container {
  padding: 1rem 1.5rem;
  background: rgba(15, 81, 50, 0.03);
  border-bottom: 1px solid var(--line);
  margin-top: -0.5rem;
}

.shipping-progress-text {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.5rem;
  text-align: center;
}

.shipping-progress-text strong {
  color: var(--primary);
  font-weight: 700;
}

.shipping-progress-bar-wrapper {
  height: 6px;
  background: rgba(18, 24, 21, 0.08);
  border-radius: 10px;
  overflow: hidden;
}

.shipping-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), #e0a800);
  width: 0%;
  transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease;
  border-radius: 10px;
}

.shipping-progress-bar.is-free {
  background: linear-gradient(90deg, #2b8a3e, #40c057);
}

/* Redesigned Hero Section */
.hero-section {
  padding: 1.5rem 0 2.5rem;
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.5rem;
}

.hero-copy-card {
  padding: 3.5rem;
  border-radius: 32px;
  background: 
    linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(253, 251, 247, 0.98)),
    radial-gradient(circle at top left, rgba(15, 81, 50, 0.08), transparent 35%);
  border: 1px solid var(--line);
  box-shadow: 0 4px 25px rgba(18, 24, 21, 0.015);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-copy-card h1 {
  font-size: clamp(2.8rem, 5.5vw, 4.4rem);
  line-height: 1.05;
  margin: 0 0 1.5rem;
  font-family: var(--serif);
  color: var(--ink);
  letter-spacing: -0.03em;
}

.rotating-pill-wrapper {
  display: inline-block;
  vertical-align: middle;
}

.rotating-pill {
  display: inline-grid;
  position: relative;
  color: var(--primary);
  background: rgba(15, 81, 50, 0.05);
  border: 1px solid rgba(15, 81, 50, 0.12);
  border-radius: 999px;
  padding: 0.2rem 1.25rem;
  font-size: 0.75em;
  margin-left: 0.25rem;
  vertical-align: middle;
  min-width: 260px;
  text-align: center;
}

.rotating-pill span {
  grid-area: 1 / 1;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 250ms ease, transform 250ms ease;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 600;
}

.rotating-pill .is-active {
  opacity: 1;
  transform: translateY(0);
}

.lead-text {
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.hero-cta-buttons {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.hero-visual-card {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  min-height: 480px;
  border: 1px solid var(--line);
  box-shadow: 0 8px 30px rgba(18, 24, 21, 0.03);
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-visual-card:hover .hero-bg-img {
  transform: scale(1.03);
}

.hero-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 58, 33, 0.75) 0%, rgba(12, 58, 33, 0.15) 60%, transparent 100%);
  z-index: 2;
}

.hero-visual-stats {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.hero-stat-badge {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 1.25rem;
  border: 1px solid rgba(233, 226, 213, 0.5);
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.stat-number {
  display: block;
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.25rem;
  line-height: 1;
  font-family: var(--serif);
}

.stat-text {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.4;
  color: var(--muted);
  font-weight: 500;
}

/* Scientific Routine Builder Block */
.routines-section {
  padding: 3.5rem 0;
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}

.text-center {
  text-align: center;
}

.text-center h2 {
  margin-left: auto;
  margin-right: auto;
}

.section-lead-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 600px;
  margin: 0.5rem auto 2rem;
}

.routines-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.routine-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 2.25rem;
  box-shadow: 0 4px 20px rgba(18, 24, 21, 0.02);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.routine-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(18, 24, 21, 0.05);
  border-color: rgba(15, 81, 50, 0.15);
}

.routine-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary);
  opacity: 0.7;
}

.routine-card:nth-child(2)::before {
  background: var(--accent);
}

.routine-header {
  margin-bottom: 1.25rem;
}

.routine-tag {
  display: inline-block;
  background: rgba(15, 81, 50, 0.06);
  color: var(--primary);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.routine-card:nth-child(2) .routine-tag {
  background: rgba(211, 158, 0, 0.08);
  color: #a07800;
}

.routine-card h3 {
  margin: 0;
  font-size: 1.5rem;
  color: var(--ink);
  font-family: var(--serif);
}

.routine-desc {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 1.5rem;
}

.routine-steps {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: grid;
  gap: 1.25rem;
}

.routine-steps li {
  display: flex;
  gap: 1rem;
}

.step-num {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.routine-card:nth-child(2) .step-num {
  background: var(--accent);
  color: var(--ink);
}

.step-content {
  display: flex;
  flex-direction: column;
}

.step-content strong {
  font-size: 0.95rem;
  color: var(--ink);
  margin-bottom: 0.15rem;
}

.step-content span {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.45;
}

.routine-action-link {
  font-weight: 700;
  color: var(--primary);
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap 0.2s ease;
  align-self: flex-start;
}

.routine-action-link:hover {
  gap: 0.5rem;
  text-decoration: underline;
}

/* Trust Bar Upgrade */
.trust-bar-section {
  padding: 2.5rem 0;
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.trust-item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: white;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(18, 24, 21, 0.01);
  transition: all 0.25s ease;
}

.trust-item:hover {
  transform: translateY(-2px);
  border-color: rgba(15, 81, 50, 0.12);
  box-shadow: 0 8px 20px rgba(18, 24, 21, 0.04);
}

.trust-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.trust-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.trust-content strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.15rem;
}

.trust-content span {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.35;
}

/* Category grid adjustments */
.categories-section {
  padding: 2.5rem 0;
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}

.category-card-text {
  display: flex;
  flex-direction: column;
}

/* Promo Band Section Upgrade */
.promo-band-section {
  padding: 2.5rem 0;
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}

.promo-band-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
}

.promo-copy-card {
  padding: 3rem;
  background: white;
  border: 1px solid var(--line);
  border-radius: 32px;
  box-shadow: 0 4px 15px rgba(18, 24, 21, 0.02);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.promo-copy-card h2 {
  font-size: clamp(2rem, 4vw, 2.6rem);
  margin: 0.5rem 0 1rem;
}

.promo-lead-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.promo-bullets {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.promo-bullet-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
}

.bullet-icon {
  font-size: 1.1rem;
}

.promo-visual-card {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(18, 24, 21, 0.02);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 380px;
}

.promo-visual-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  z-index: 1;
}

.promo-visual-card:hover img {
  transform: scale(1.02);
}

.promo-visual-caption {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}

.promo-visual-caption strong {
  font-size: 1rem;
  color: var(--primary);
  font-family: var(--serif);
}

.promo-visual-caption span {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.15rem;
}

/* Featured Products & Editorial upgrades */
.featured-products-section,
.content-shelf-section {
  padding: 2.5rem 0;
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}

.editorial-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.eyebrow-small {
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  font-weight: 700;
}

.reading-time-badge {
  font-size: 0.75rem;
  color: var(--muted);
  background: rgba(18, 24, 21, 0.04);
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  font-weight: 500;
}

.editorial-card {
  padding: 1.75rem !important;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.editorial-card h3 {
  font-size: 1.35rem;
  line-height: 1.3;
  margin: 0 0 0.75rem;
}

.editorial-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0 0 1.5rem;
}

.editorial-read-link {
  font-weight: 700;
  color: var(--primary);
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: gap 0.2s;
}

.editorial-read-link:hover {
  gap: 0.4rem;
  text-decoration: underline;
}

/* Adding State for Add to Cart Buttons */
.button.is-adding {
  animation: pulseGreen 0.4s ease-in-out;
}

@keyframes pulseGreen {
  0% { transform: scale(1); }
  50% { transform: scale(0.96); }
  100% { transform: scale(1); }
}

/* RESPONSIVE LAYOUT TWEAKS */
@media (max-width: 1040px) {
  .nav-dropdown-content {
    width: 600px;
    grid-template-columns: 1.4fr 1.1fr;
  }
}

@media (max-width: 900px) {
  .site-header {
    background: var(--panel);
    backdrop-filter: none;
    box-shadow: 0 4px 15px rgba(18, 24, 21, 0.03);
  }

  .header-container {
    padding: 0.75rem 0;
  }

  .main-nav {
    display: none;
  }

  .mobile-menu-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: white;
    color: var(--ink);
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(18, 24, 21, 0.03);
  }

  .header-mobile-search-tier {
    display: block;
    padding-bottom: 0.75rem;
    width: min(calc(100% - 2rem), var(--max));
    margin: 0 auto;
  }

  .header-mobile-search-tier .mobile-search {
    display: block;
  }

  /* Utility details on mobile */
  .utility-text {
    display: none;
  }
  
  .utility-link {
    padding: 0.5rem;
  }

  .hero-container,
  .promo-band-container,
  .routines-grid,
  .trust-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .hero-copy-card {
    padding: 2rem;
  }

  .hero-visual-card {
    min-height: 380px;
  }

  .hero-visual-stats {
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
  }

  .promo-copy-card {
    padding: 2rem;
  }

  .promo-visual-card {
    min-height: 320px;
  }
}

@media (max-width: 640px) {
  .rotating-pill {
    min-width: 200px;
    padding: 0.1rem 0.75rem;
    font-size: 0.8em;
  }

  .hero-copy-card h1 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero-stat-badge {
    padding: 1rem;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .routine-card {
    padding: 1.5rem;
  }
}

