:root {
  --green: #3f7d23;
  --green-dark: #25520f;
  --green-soft: #ecf7e8;
  --copper: #b86a3d;
  --ink: #10140e;
  --muted: #5e6858;
  --line: #e5eadf;
  --paper: #ffffff;
  --wash: #f5f6f2;
  --shadow: 0 18px 45px rgba(16, 20, 14, 0.12);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

.shipping-bar {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 7px 18px;
  color: #fff;
  background: #050505;
  font-size: 15px;
}

.shipping-bar button {
  position: absolute;
  right: 28px;
  border: 0;
  color: rgba(255, 255, 255, 0.56);
  background: transparent;
  cursor: pointer;
}

.site-header {
  position: sticky;
  top: 36px;
  z-index: 35;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  min-height: 90px;
  padding: 0 36px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #67b343;
}

.brand-mark {
  position: relative;
  width: 33px;
  height: 33px;
  border: 4px solid currentColor;
  border-radius: 7px;
}

.brand-mark::before,
.brand-mark::after,
.brand-mark span {
  position: absolute;
  content: "";
  left: 6px;
  right: -8px;
  height: 4px;
  border-radius: 8px;
  background: currentColor;
}

.brand-mark::before {
  top: 7px;
}

.brand-mark::after {
  top: 16px;
}

.brand-mark span {
  top: 25px;
}

.brand-mark span::before {
  position: absolute;
  content: "";
  left: 2px;
  top: -35px;
  width: 13px;
  height: 18px;
  border-radius: 12px 12px 12px 0;
  background: currentColor;
  transform: rotate(38deg);
}

.brand-text {
  font-size: clamp(24px, 2.4vw, 31px);
  font-weight: 300;
  letter-spacing: 0;
}

.primary-nav {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: flex-start;
}

.primary-nav a {
  padding: 3px 11px;
  border-radius: 999px;
  color: #050505;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.primary-nav a.active,
.primary-nav a:hover {
  color: #050505;
  background: #5a9a35;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.icon-button {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 0;
  color: #030b02;
  background: transparent;
  cursor: pointer;
}

.icon-button svg,
.cart-button svg,
.chat-bubble svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.login-link {
  font-weight: 700;
  text-transform: uppercase;
}

.cart-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  padding: 7px 12px;
  border: 0;
  border-radius: 5px;
  color: #fff;
  background: var(--green);
  font-weight: 800;
  cursor: pointer;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.storefront {
  display: grid;
  grid-template-columns: clamp(260px, 18vw, 350px) minmax(0, 1fr);
  gap: clamp(24px, 2.4vw, 42px);
  width: 100%;
  max-width: none;
  margin: 30px auto 0;
  padding: 0 clamp(24px, 4vw, 72px);
}

.category-rail {
  align-self: start;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.category-rail a {
  display: block;
  padding: 7px 0 9px;
  border-bottom: 1px solid #edf0ea;
  color: #002400;
  font-size: 16px;
}

.category-rail a:hover {
  color: var(--green);
}

.hero-shell {
  min-width: 0;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(300px, 1.12fr);
  min-height: 400px;
  overflow: hidden;
  background: #f2f3ee;
  border: 1px solid #cbd9c4;
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  padding: clamp(28px, 4vw, 50px);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 520px;
  margin: 0;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero p:not(.eyebrow) {
  max-width: 390px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.hero-image {
  min-height: 400px;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(242, 243, 238, 0.98), rgba(242, 243, 238, 0.1) 30%, rgba(242, 243, 238, 0)),
    url("assets/hero-products.png") center right / cover no-repeat;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 18px;
  border: 1px solid var(--green);
  border-radius: 7px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.button.primary {
  color: #fff;
  background: var(--green);
}

.button.primary:hover {
  background: var(--green-dark);
}

.button:disabled {
  opacity: 0.62;
  cursor: wait;
}

.button.secondary {
  color: var(--green-dark);
  background: #fff;
}

.button.full {
  width: 100%;
}

.slider-dots {
  position: absolute;
  right: 48%;
  bottom: 20px;
  display: flex;
  gap: 10px;
}

.slider-dots span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.64);
}

.slider-dots .active {
  background: #fff;
  box-shadow: 0 0 0 2px rgba(63, 125, 35, 0.22);
}

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

.promo-strip article,
.product-card,
.guide-grid article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 7px;
}

.promo-strip article {
  padding: 20px;
}

.promo-strip span,
.guide-grid span {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--copper);
  font-size: 12px;
  font-weight: 900;
}

.promo-strip strong {
  display: block;
  font-size: 17px;
}

.promo-strip p,
.guide-grid p,
.about-copy p,
.quote-panel p {
  margin: 8px 0 0;
  color: var(--muted);
}

.shop-section,
.quote-section,
.guides-section,
.about-section,
.policy-section {
  width: 100%;
  max-width: none;
  margin: 76px auto 0;
  padding: 0 clamp(24px, 4vw, 72px);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.section-heading h2,
.quote-panel h2,
.about-copy h2,
.policy-section h2,
.age-card h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.05;
  letter-spacing: 0;
}

.shop-tools label {
  display: grid;
  gap: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

select,
input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  color: var(--ink);
}

select {
  min-width: 190px;
  padding: 10px;
}

.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 24px;
}

.filter-pills button {
  min-height: 36px;
  padding: 7px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  cursor: pointer;
}

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

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.product-card {
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(36, 57, 29, 0.08);
}

.product-media {
  position: relative;
  height: 190px;
  overflow: hidden;
  background: var(--wash);
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.35);
}

.image-pos-green-case {
  object-position: 72% 35%;
}

.image-pos-gummy-jar {
  object-position: 72% 70%;
}

.image-pos-vapor-kit {
  object-position: 92% 56%;
}

.image-pos-sample-jars {
  object-position: 58% 76%;
}

.image-pos-shipper-bundle {
  object-position: 82% 24%;
}

.image-pos-retail-display {
  object-position: 66% 48%;
}

.image-pos-storage-jars {
  object-position: 62% 82%;
}

.image-pos-invoice-insert {
  object-position: 50% 42%;
}

.badge {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 5px 9px;
  border-radius: 999px;
  color: #fff;
  background: var(--green);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-body {
  padding: 15px;
}

.product-body h3 {
  min-height: 48px;
  margin: 0;
  font-size: 17px;
  line-height: 1.22;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 12px 0;
  color: var(--muted);
  font-size: 13px;
}

.product-sku {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.price {
  color: var(--green-dark);
  font-size: 20px;
  font-weight: 900;
}

.product-card button {
  width: 100%;
}

.quote-section {
  padding-top: 10px;
}

.quote-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(340px, 0.7fr);
  gap: 34px;
  align-items: center;
  padding: clamp(26px, 5vw, 54px);
  background: var(--green-soft);
  border: 1px solid #d4e8ca;
  border-radius: 8px;
}

.quote-form {
  display: grid;
  gap: 14px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.quote-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

input,
textarea {
  padding: 12px;
}

textarea {
  resize: vertical;
}

.quote-note {
  max-width: 640px;
  margin-top: 16px;
  padding: 12px 14px;
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid #d4e8ca;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 800;
}

.screen-reader-field {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.manual-email-link[hidden] {
  display: none;
}

.form-status {
  min-height: 20px;
  color: var(--green-dark);
  font-weight: 800;
}

.form-status[data-state="error"] {
  color: #a51e14;
}

.form-status[data-state="warning"] {
  color: #9b5b15;
}

.form-status[data-state="success"] {
  color: var(--green-dark);
}

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

.guide-grid article {
  padding: 24px;
}

.guide-grid h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.15;
}

.about-section {
  margin-bottom: 0;
}

.about-copy {
  max-width: 720px;
}

.policy-section {
  margin-bottom: 74px;
}

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

.policy-card {
  min-height: 210px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 7px;
  box-shadow: 0 12px 26px rgba(36, 57, 29, 0.07);
}

.policy-card span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--copper);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.policy-card h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.18;
}

.policy-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.cart-drawer,
.search-modal,
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 1000;
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
  transition: opacity 180ms ease, visibility 0s linear 180ms;
}

.cart-drawer.open,
.search-modal.open,
.age-gate.open {
  visibility: visible;
  pointer-events: auto;
  opacity: 1;
  transition-delay: 0s;
}

.cart-drawer,
.search-modal {
  background: rgba(10, 18, 8, 0.42);
}

.drawer-panel,
.search-panel {
  position: absolute;
  right: 0;
  top: 0;
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  width: min(430px, 100%);
  height: 100%;
  padding: 22px;
  background: #fff;
  box-shadow: var(--shadow);
  transform: translateX(100%);
  transition: transform 220ms ease;
}

.search-panel {
  left: 50%;
  top: 50%;
  right: auto;
  width: min(680px, calc(100% - 34px));
  height: auto;
  min-height: 360px;
  border-radius: 8px;
  transform: translate(-50%, -46%);
}

.cart-drawer.open .drawer-panel {
  transform: translateX(0);
}

.search-modal.open .search-panel {
  transform: translate(-50%, -50%);
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.drawer-header h2 {
  margin: 0;
}

.drawer-items {
  display: grid;
  align-content: start;
  gap: 12px;
  overflow: auto;
  padding: 18px 0;
}

.cart-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 7px;
}

.cart-line strong {
  display: block;
}

.cart-line span {
  color: var(--muted);
}

.cart-line button {
  border: 0;
  color: var(--copper);
  background: transparent;
  cursor: pointer;
}

.drawer-total {
  display: flex;
  justify-content: space-between;
  padding: 16px 0 20px;
  border-top: 1px solid var(--line);
  font-size: 18px;
}

.search-panel input {
  margin: 22px 0;
  font-size: 18px;
}

.search-results {
  display: grid;
  gap: 10px;
}

.search-result {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 7px;
}

.age-gate {
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(3, 8, 2, 0.72);
}

.age-card {
  position: relative;
  z-index: 1;
  width: min(460px, 100%);
  padding: 34px;
  background: #fff;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.chat-widget {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 50;
  display: grid;
  justify-items: end;
  gap: 12px;
}

.chat-card {
  display: grid;
  gap: 8px;
  width: 286px;
  padding: 16px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
}

.chat-card p {
  margin: 0 0 4px;
}

.chat-card button {
  justify-self: end;
  padding: 8px 14px;
  border: 1px solid #1e72ff;
  border-radius: 7px;
  color: #075dff;
  background: #fff;
  cursor: pointer;
}

.chat-card.hidden {
  display: none;
}

.chat-bubble {
  position: relative;
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: #0b6dff;
  box-shadow: 0 10px 24px rgba(11, 109, 255, 0.34);
  cursor: pointer;
}

.chat-bubble span {
  position: absolute;
  right: 2px;
  top: 2px;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  background: #e41515;
  font-size: 12px;
  font-weight: 900;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 1.1fr) minmax(260px, 1.5fr) minmax(170px, 0.8fr);
  gap: 24px;
  align-items: start;
  padding: 30px 36px;
  color: #fff;
  background: #090d07;
}

.footer-brand,
.footer-meta {
  display: grid;
  gap: 6px;
}

.footer-brand strong {
  font-size: 18px;
}

.footer-brand span,
.footer-meta span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px 16px;
}

.footer-links a,
.footer-meta a {
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 800;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto 1fr;
    gap: 16px;
    padding: 0 18px;
  }

  .menu-toggle {
    display: block;
  }

  .primary-nav {
    position: absolute;
    left: 18px;
    right: 18px;
    top: 80px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .primary-nav.open {
    display: flex;
  }

  .header-actions {
    justify-self: end;
  }

  .login-link {
    display: none;
  }

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

  .category-rail {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 12px;
  }

  .category-rail a {
    flex: 0 0 auto;
    border: 0;
    white-space: nowrap;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-image {
    min-height: 310px;
    order: -1;
  }

  .slider-dots {
    right: 24px;
  }

  .promo-strip,
  .product-grid,
  .guide-grid,
  .policy-grid,
  .form-grid,
  .quote-panel {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 660px) {
  .shipping-bar {
    min-height: 44px;
    padding-right: 92px;
    justify-content: flex-start;
    font-size: 13px;
  }

  .shipping-bar button {
    right: 14px;
  }

  .site-header {
    grid-template-columns: auto auto minmax(0, 1fr);
    gap: 10px;
    top: 44px;
    min-height: 76px;
    padding: 0 12px;
  }

  .brand-text {
    font-size: 20px;
  }

  .brand-mark {
    width: 28px;
    height: 28px;
  }

  .cart-button span {
    display: none;
  }

  .header-actions {
    gap: 8px;
  }

  .icon-button {
    width: 38px;
    height: 38px;
  }

  .cart-button {
    min-width: 42px;
    padding: 7px 10px;
  }

  .storefront {
    gap: 14px;
    margin-top: 14px;
  }

  .storefront,
  .shop-section,
  .quote-section,
  .guides-section,
  .about-section,
  .policy-section {
    padding-inline: 16px;
  }

  .category-rail {
    padding: 10px;
  }

  .hero {
    min-height: 330px;
  }

  .hero-image {
    position: absolute;
    inset: 0;
    min-height: 0;
    background:
      linear-gradient(90deg, rgba(242, 243, 238, 0.98), rgba(242, 243, 238, 0.78) 52%, rgba(242, 243, 238, 0.18)),
      url("assets/hero-products.png") center right / cover no-repeat;
  }

  .hero-copy {
    max-width: 292px;
    padding: 20px 24px;
  }

  .hero h1 {
    font-size: 31px;
    line-height: 1;
  }

  .hero p:not(.eyebrow) {
    margin-top: 12px;
    font-size: 14px;
  }

  .hero-actions {
    gap: 8px;
    margin-top: 16px;
  }

  .hero-actions .button {
    min-height: 36px;
    padding: 8px 10px;
    font-size: 12px;
  }

  .promo-strip,
  .product-grid,
  .guide-grid,
  .policy-grid,
  .form-grid,
  .quote-panel {
    grid-template-columns: 1fr;
  }

  .section-heading {
    display: grid;
  }

  .shop-tools label,
  select {
    width: 100%;
  }

  .chat-card {
    display: none;
    width: min(286px, calc(100vw - 32px));
  }

  .chat-widget.open .chat-card:not(.hidden) {
    display: grid;
  }

  .chat-widget {
    right: 16px;
    bottom: 16px;
  }
}

@media (max-width: 360px) {
  .shipping-bar {
    min-height: 38px;
    font-size: 12px;
  }

  .site-header {
    top: 38px;
    min-height: 68px;
  }

  .brand {
    gap: 7px;
  }

  .brand-text {
    font-size: 18px;
  }

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

  .category-rail {
    padding: 8px;
  }

  .category-rail a {
    padding-block: 5px;
    font-size: 14px;
  }

  .hero {
    min-height: 290px;
  }

  .hero-copy {
    max-width: 270px;
    padding: 15px 18px;
  }

  .eyebrow {
    margin-bottom: 6px;
    font-size: 10px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero p:not(.eyebrow) {
    margin-top: 8px;
    font-size: 13px;
  }

  .hero-actions {
    gap: 6px;
    margin-top: 10px;
  }

  .hero-actions .button {
    min-height: 32px;
    padding: 7px 8px;
    font-size: 11px;
  }

  .slider-dots {
    bottom: 8px;
  }
}

/* BulkBuddy.co-style storefront structure, implemented with original BulkLeaf content. */
:root {
  --green: #6cc65d;
  --green-dark: #2f8d2d;
  --purple: #3d2867;
  --red: #e02b2b;
}

.shipping-bar {
  min-height: 44px;
  padding: 7px 72px;
  background: #6fca67;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
}

.utility-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  min-height: 38px;
  padding: 0 clamp(18px, 3vw, 40px);
  color: #375036;
  background: #fff;
  border-bottom: 1px solid #edf0ea;
  font-size: 13px;
}

.utility-row nav {
  display: flex;
  gap: 18px;
  align-items: center;
}

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

.utility-row p {
  margin: 0;
  text-align: center;
}

.utility-row strong {
  color: var(--green-dark);
}

.site-header {
  top: 44px;
  grid-template-columns: minmax(180px, 230px) minmax(420px, 1fr) auto;
  gap: 28px;
  min-height: 86px;
  padding: 0 clamp(18px, 3vw, 40px);
  box-shadow: none;
}

.site-header .menu-toggle {
  display: none;
}

.site-header .brand {
  grid-column: 1;
}

.site-header .search-bar-button {
  grid-column: 2;
}

.site-header .header-actions {
  grid-column: 3;
}

.brand-text {
  font-size: clamp(25px, 2vw, 34px);
}

.search-bar-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  width: 100%;
  padding: 0 18px;
  border: 0;
  border-radius: 6px;
  color: #748073;
  background: #f6f7f5;
  box-shadow: inset 0 0 0 1px #edf0ea;
  cursor: pointer;
  text-align: left;
}

.search-bar-button svg,
.account-link svg,
.icon-link svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: #020702;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.account-link,
.icon-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #050505;
  font-size: 12px;
  line-height: 1.05;
}

.account-link span {
  min-width: 56px;
}

.icon-link > span {
  position: absolute;
  right: -8px;
  top: -8px;
  display: grid;
  width: 19px;
  height: 19px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--red);
  font-size: 11px;
  font-weight: 900;
}

.cart-button {
  color: #050505;
  background: transparent;
  padding: 0;
}

.cart-button svg {
  width: 31px;
  height: 31px;
  stroke-width: 2.4;
}

.cart-button span {
  display: none;
}

.primary-nav {
  position: sticky;
  top: 130px;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 34px);
  min-height: 56px;
  padding: 0 clamp(18px, 3vw, 40px) 0 clamp(280px, 22vw, 380px);
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.primary-nav a {
  padding: 0;
  border-radius: 0;
  color: #050505;
  font-size: 15px;
  text-transform: none;
}

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

.primary-nav a span {
  display: inline-block;
  margin-left: 5px;
  padding: 3px 7px;
  border-radius: 3px;
  color: #fff;
  background: var(--red);
  font-size: 10px;
  text-transform: uppercase;
}

.storefront {
  grid-template-columns: 302px minmax(0, 1fr);
  gap: 30px;
  margin-top: 24px;
  padding-inline: clamp(18px, 3vw, 40px);
}

.category-rail {
  padding: 0;
  border-radius: 7px;
  box-shadow: none;
}

.category-title,
.category-rail a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 47px;
  padding: 0 18px;
  border-bottom: 1px solid #edf0ea;
}

.category-title {
  font-size: 17px;
  font-weight: 900;
}

.category-title::before {
  content: "☷";
  color: var(--purple);
  font-size: 18px;
}

.category-rail a {
  color: #061006;
  font-size: 15px;
}

.category-rail small {
  flex: 1;
  overflow: hidden;
  color: #899489;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero {
  min-height: 480px;
  border: 0;
  background: #f3f4f1;
}

.hero-copy {
  padding: clamp(34px, 4vw, 58px);
}

.hero h1 {
  color: var(--purple);
  font-size: clamp(42px, 4vw, 58px);
  line-height: 1.04;
}

.hero p:not(.eyebrow) {
  color: #171717;
  font-size: 17px;
}

.hero-image {
  min-height: 480px;
  background:
    linear-gradient(90deg, rgba(243, 244, 241, 0.98), rgba(243, 244, 241, 0.12) 28%, rgba(243, 244, 241, 0)),
    url("assets/hero-products.png") center right / contain no-repeat;
}

.hero-price {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
}

.hero-price strong {
  color: var(--red);
  font-size: 30px;
  line-height: 1;
}

.hero-price del {
  color: #1c1c1c;
  font-size: 20px;
}

.slider-dots {
  right: 46%;
}

.slider-dots span {
  width: 9px;
  height: 9px;
  background: #dce1d8;
}

.slider-dots .active {
  background: var(--green);
  box-shadow: none;
}

.official-alert {
  position: relative;
  margin: 20px clamp(18px, 3vw, 40px) 0;
  padding: 15px 56px 15px 20px;
  color: #805e22;
  background: #fff8df;
  border-left: 4px solid #f1d065;
}

.official-alert strong {
  display: block;
  font-size: 17px;
}

.official-alert p {
  margin: 5px 0 0;
}

.official-alert button {
  position: absolute;
  top: 12px;
  right: 15px;
  border: 0;
  color: #9a6d18;
  background: transparent;
  font-size: 25px;
  font-weight: 900;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin: 26px clamp(18px, 3vw, 40px) 0;
}

.trust-row article {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 14px;
  align-items: center;
}

.trust-row span {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: var(--purple);
  background: #f3f4f1;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 27px;
  font-weight: 900;
}

.trust-row strong {
  font-size: 18px;
}

.trust-row p {
  grid-column: 2;
  margin: 2px 0 0;
  color: #667064;
}

.mobile-bottom-nav {
  display: none;
}

@media (max-width: 1100px) {
  .utility-row {
    grid-template-columns: 1fr;
    gap: 6px;
    padding-block: 8px;
  }

  .utility-row nav,
  .utility-row nav:last-child {
    justify-content: center;
    flex-wrap: wrap;
  }

  .site-header {
    grid-template-columns: minmax(170px, 230px) 1fr auto;
  }

  .primary-nav {
    padding-left: clamp(18px, 3vw, 40px);
  }
}

@media (max-width: 980px) {
  body {
    padding-bottom: 72px;
  }

  .site-header {
    grid-template-columns: auto minmax(0, 1fr) auto;
    top: 44px;
  }

  .site-header .menu-toggle {
    display: block;
    grid-column: 1;
  }

  .brand {
    grid-column: 2;
    justify-self: center;
  }

  .site-header .header-actions {
    grid-column: 3;
  }

  .search-bar-button,
  .account-link,
  .icon-link,
  .utility-row {
    display: none;
  }

  .primary-nav {
    position: fixed;
    left: 14px;
    right: 14px;
    top: 102px;
    z-index: 80;
    display: none;
    flex-direction: column;
    align-items: stretch;
    min-height: 0;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .primary-nav.open {
    display: flex;
  }

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

  .category-rail {
    display: flex;
    gap: 0;
    overflow-x: auto;
  }

  .category-title {
    display: none;
  }

  .category-rail a {
    flex: 0 0 auto;
    min-height: 42px;
    white-space: nowrap;
  }

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

  .mobile-bottom-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 75;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    min-height: 66px;
    padding-bottom: env(safe-area-inset-bottom);
    background: #fff;
    border-top: 1px solid var(--line);
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.08);
  }

  .mobile-bottom-nav a,
  .mobile-bottom-nav button {
    display: grid;
    place-items: center;
    gap: 2px;
    border: 0;
    color: #89919a;
    background: transparent;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
  }

  .mobile-bottom-nav span {
    color: #111;
    font-size: 25px;
    line-height: 1;
  }

  .chat-widget {
    right: 12px;
    bottom: 82px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-bottom: 86px;
  }

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

@media (max-width: 660px) {
  body {
    padding-bottom: 72px;
  }

  .shipping-bar {
    min-height: 60px;
    padding: 8px 42px 8px 12px;
    text-align: left;
  }

  .site-header {
    top: 60px;
    min-height: 60px;
  }

  .brand-text {
    font-size: 21px;
  }

  .header-actions {
    gap: 0;
  }

  .storefront {
    margin-top: 10px;
  }

  .hero {
    min-height: 330px;
  }

  .hero-image {
    background:
      linear-gradient(90deg, rgba(243, 244, 241, 0.98), rgba(243, 244, 241, 0.82) 50%, rgba(243, 244, 241, 0.22)),
      url("assets/hero-products.png") center right / cover no-repeat;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero-price strong {
    font-size: 24px;
  }

  .official-alert,
  .trust-row {
    margin-inline: 16px;
  }

  .trust-row {
    grid-template-columns: 1fr;
  }

  .trust-row article {
    grid-template-columns: 44px 1fr;
  }

  .trust-row span {
    width: 44px;
    height: 44px;
    font-size: 22px;
  }

  .mobile-bottom-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 75;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    min-height: 66px;
    padding-bottom: env(safe-area-inset-bottom);
    background: #fff;
    border-top: 1px solid var(--line);
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.08);
  }

  .mobile-bottom-nav a,
  .mobile-bottom-nav button {
    display: grid;
    place-items: center;
    gap: 2px;
    border: 0;
    color: #89919a;
    background: transparent;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
  }

  .mobile-bottom-nav span {
    color: #111;
    font-size: 25px;
    line-height: 1;
  }

  .chat-widget {
    right: 12px;
    bottom: 82px;
  }

  .site-footer {
    padding-bottom: 86px;
  }
}

@media (max-width: 660px) {
  .shipping-bar {
    min-height: 66px;
    padding: 8px 92px 8px 12px;
    align-items: center;
  }

  .shipping-bar button {
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
  }

  .site-header {
    top: 66px;
    min-height: 64px;
    grid-template-columns: auto minmax(0, 1fr) auto;
    padding: 0 18px;
  }

  .site-header .menu-toggle,
  .brand,
  .site-header .header-actions {
    grid-row: 1;
    align-self: center;
  }

  .site-header .menu-toggle {
    grid-column: 1;
  }

  .brand {
    grid-column: 2;
    justify-self: start;
  }

  .site-header .header-actions {
    grid-column: 3;
  }
}

@media (max-width: 400px) {
  .shipping-bar {
    font-size: 12px;
  }

  .brand-text {
    font-size: 18px;
  }
}
