[hidden] {
  display: none !important;
}
@font-face {
  font-family: "Obviously Narrow";
  src: url(../fonts/Obviously-NarrBlk.woff2) format("woff2"), url(../fonts/Obviously-NarrBlk.woff) format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url(../fonts/inter-latin.woff2) format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Assistant";
  src: url(../fonts/assistant-latin.woff2) format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  unicode-range:
    U+0000-00FF,
    U+0131,
    U+0152-0153,
    U+02BB-02BC,
    U+02C6,
    U+02DA,
    U+02DC,
    U+0304,
    U+0308,
    U+0329,
    U+2000-206F,
    U+20AC,
    U+2122,
    U+2191,
    U+2193,
    U+2212,
    U+2215,
    U+FEFF,
    U+FFFD;
}
:root {
  --brand-dark-green: #0f1622;
  --brand-lime: #ff5b49;
  --brand-lime-light: #ffe3df;
  --brand-cream: #f6f1e8;
  --brand-white: #ffffff;
  --brand-black: #000000;
  --brand-ink: #201e19;
  --brand-heading: #121212;
  --brand-page: #ffffff;
  --brand-hairline: #e6e3dc;
  --font-primary:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  --font-display:
    "Obviously Narrow",
    "Arial Narrow",
    Impact,
    var(--font-primary);
  --radius: 10px;
  --radius-pill: 9999px;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: var(--font-primary);
  background: var(--brand-page);
  color: var(--brand-ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1,
h2,
h3,
.home-row-head h2,
.home-tiles h2 {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--brand-heading);
  letter-spacing: 0.01em;
}
.product-card-title,
.upsell-card h3,
.cart-drawer-line-title {
  font-family: var(--font-primary);
  font-weight: 500;
  text-transform: none;
  letter-spacing: normal;
  color: var(--brand-dark-green);
}
header.site-header {
  background: var(--brand-white);
  color: var(--brand-ink);
  border-bottom: 1px solid var(--brand-hairline);
  padding: 0;
  position: relative;
}
header.site-header a {
  color: var(--brand-ink);
  text-decoration: none;
}
.header-bar {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1rem 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
}
.header-logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}
.header-logo img {
  display: block;
  width: 69px;
  height: 32px;
}
@media (max-width: 767px) {
  .header-logo img {
    width: 52px;
    height: 24px;
  }
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.header-nav a,
.header-shop {
  font-family: var(--font-primary);
  font-size: 17px;
  line-height: 24px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 8px;
  white-space: nowrap;
}
@media (max-width: 1149px) {
  .header-nav a,
  .header-shop {
    font-size: 16px;
    padding: 8px 8px;
  }
}
@media (max-width: 1050px) {
  .header-nav a,
  .header-shop {
    font-size: 15px;
    padding: 8px 6px;
  }
}
.header-shop {
  background: none;
  border: 0;
  color: var(--brand-ink);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.header-shop svg {
  width: 16px;
  height: 16px;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.2s;
}
.header-shop[aria-expanded=true] {
  background: rgba(26, 57, 31, 0.08);
}
.header-shop[aria-expanded=true] svg {
  transform: rotate(180deg);
}
@media (prefers-reduced-motion: reduce) {
  .header-shop svg {
    transition: none;
  }
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-left: auto;
}
.header-actions a {
  font-size: 0.95rem;
  font-weight: 500;
}
.header-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  border-radius: var(--radius-pill);
  color: var(--brand-dark-green);
}
header.site-header a.header-icon {
  color: var(--brand-dark-green);
}
.header-icon:hover {
  background: rgba(26, 57, 31, 0.08);
}
.header-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
header.site-header .cart-link #header-cart-count {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 17px;
  height: 17px;
  padding: 0 4px;
  border-radius: var(--radius-pill);
  background: var(--brand-dark-green);
  color: var(--brand-white);
  font-size: 11px;
  font-weight: 700;
  line-height: 17px;
  text-align: center;
  font-variant-numeric: tabular-nums;
}
.megamenu {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 900;
  background: var(--brand-white);
  color: var(--brand-dark-green);
  border-top: 3px solid var(--brand-lime);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  max-height: calc(100vh - 96px);
  overflow-y: auto;
  overscroll-behavior: contain;
}
.megamenu-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.75rem 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1.5rem 2rem;
}
.megamenu-heading {
  margin: 0 0 0.6rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #5b7a5f;
}
.megamenu-column ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.megamenu-column li + li {
  margin-top: 0.4rem;
}
header.site-header .megamenu-column a {
  color: var(--brand-dark-green);
  font-size: 0.95rem;
  font-weight: 400;
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.15rem 0;
}
header.site-header .megamenu-column a:hover {
  color: #000;
  text-decoration: underline;
}
.megamenu-count {
  color: #6b8a6f;
  font-variant-numeric: tabular-nums;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.header-burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  border-radius: var(--radius-pill);
  color: var(--brand-dark-green);
  margin-right: -0.5rem;
}
.header-burger svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 90003;
  background: rgba(0, 0, 0, 0.45);
}
.mobile-drawer {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 90004;
  width: min(86vw, 360px);
  background: var(--brand-white);
  color: var(--brand-ink);
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.25);
}
.mobile-drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: none;
  padding: 12px;
  border-bottom: 1px solid rgba(26, 57, 31, 0.08);
}
.mobile-drawer-close {
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  border-radius: var(--radius-pill);
  color: var(--brand-dark-green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.mobile-drawer-close:hover {
  background: rgba(26, 57, 31, 0.08);
}
.mobile-drawer-close svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.mobile-drawer-body {
  flex: 1 1 auto;
  overflow-y: auto;
  padding: 0.5rem 1.25rem 2rem;
}
.mobile-drawer-section {
  padding: 1rem 0;
  border-bottom: 1px solid var(--brand-hairline);
}
.mobile-drawer-section:last-child {
  border-bottom: 0;
}
.mobile-drawer-title {
  margin: 0 0 0.25rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-dark-green);
}
.mobile-drawer-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
  margin-top: 0.75rem;
}
.mobile-drawer-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  text-align: center;
  font-size: 0.75rem;
  line-height: 1.2;
  color: var(--brand-ink);
}
.mobile-drawer-tile img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: #f6f5f2;
  border-radius: var(--radius);
}
.mobile-drawer-tile-art {
  gap: 0;
}
.mobile-drawer-tile-art img {
  object-fit: cover;
  background: transparent;
  border-radius: 12px;
}
.mobile-drawer-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}
.mobile-drawer-pills a {
  padding: 0.55rem 1rem;
  border-radius: var(--radius-pill);
  background: var(--brand-cream);
  color: var(--brand-dark-green);
  font-size: 0.95rem;
}
.mobile-drawer-brands {
  list-style: none;
  margin: 0.75rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem 1rem;
}
.mobile-drawer-links {
  list-style: none;
  margin: 0.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}
.mobile-drawer-brands a,
.mobile-drawer-links a {
  font-size: 0.95rem;
  color: var(--brand-ink);
}
.mobile-drawer-signin {
  display: block;
  margin-top: 0.75rem;
  text-align: center;
  background: var(--brand-dark-green);
  color: var(--brand-white);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
}
header.site-header .mobile-drawer-signin {
  color: var(--brand-white);
}
.mobile-drawer[hidden],
.drawer-backdrop[hidden] {
  display: none;
}
body.drawer-open {
  overflow: hidden;
}
@media (max-width: 940px) {
  .header-bar {
    flex-wrap: wrap;
    gap: 0.5rem 0.75rem;
    padding: 0.75rem 1rem;
  }
  .header-burger {
    display: inline-flex;
  }
  .header-icon svg {
    width: 20px;
    height: 20px;
  }
  .header-nav,
  .megamenu {
    display: none;
  }
  .megamenu-inner {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    padding: 1.25rem 1rem;
  }
}
@media (min-width: 941px) {
  .mobile-drawer,
  .drawer-backdrop {
    display: none;
  }
}
main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.5rem;
}
.age-gate-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 58, 30, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 90100;
}
.age-gate-box {
  background: var(--brand-white);
  border-radius: var(--radius);
  padding: 2rem;
  max-width: 420px;
  text-align: center;
}
.age-gate-box h2 {
  color: var(--brand-dark-green);
}
.age-gate-box button {
  background: var(--brand-lime);
  border: none;
  color: var(--brand-black);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 700;
  cursor: pointer;
  margin: 0.25rem;
}
.age-gate-box button.decline {
  background: var(--brand-cream);
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 1.5rem;
}
@media (min-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }
}
@media (min-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.product-card {
  background: transparent;
  border-radius: 0;
  padding: 0 0 1rem;
  text-decoration: none;
  color: var(--brand-dark-green);
  display: block;
  border: 0;
}
.product-thumb {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 12px;
  background: var(--brand-cream);
}
.product-thumb-placeholder {
  background: #ece9e1;
}
.product-detail-image {
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius);
  display: block;
  margin-bottom: 1rem;
}
.product-card .vendor {
  color: rgba(26, 57, 31, 0.8);
  font-size: 14px;
  line-height: 28px;
  font-weight: 400;
  overflow-wrap: anywhere;
}
.product-card-title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.2;
  min-height: 2.4em;
}
.product-card .price {
  font-weight: 500;
  font-size: 16px;
  line-height: 28px;
  color: var(--brand-dark-green);
}
@media (min-width: 768px) {
  .product-card .price {
    font-size: 18px;
  }
}
.product-card .price .price-was {
  font-size: 14px;
}
.product-card .price.is-sale {
  color: #84052c;
}
.product-card .price-was {
  color: rgba(26, 57, 31, 0.6);
}
.product-card-buyable {
  display: flex;
  flex-direction: column;
  padding-bottom: 0;
}
.product-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
  flex: 1 1 auto;
}
.product-card-add {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  width: 100%;
  min-height: 52px;
  margin-top: 16px;
  padding: 0 1.25rem;
  background: var(--brand-dark-green);
  color: var(--brand-white);
  border: 0;
  border-radius: var(--radius-pill);
  font: inherit;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
}
.product-card-add:hover,
.product-card-add:focus-visible {
  background: #245029;
}
.product-card-add-plus {
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 300;
}
.product-card-add.is-adding {
  opacity: 0.7;
  cursor: progress;
}
.product-card-add:disabled,
.product-card-add:disabled:hover {
  background: var(--brand-dark-green);
  opacity: 0.5;
  cursor: not-allowed;
}
.upsell-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1rem;
  margin: 1rem 0 1.5rem;
}
.upsell-card {
  background: var(--brand-white);
  border-radius: var(--radius);
  padding: 0.75rem;
  text-decoration: none;
  color: inherit;
  display: block;
  border: 1px solid var(--brand-lime-light);
}
.upsell-thumb {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border-radius: var(--radius);
  margin-bottom: 0.4rem;
  background: var(--brand-white);
}
.upsell-thumb-placeholder {
  background: #ece9e1;
}
.upsell-card .vendor {
  color: var(--brand-dark-green);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.upsell-card h4 {
  margin: 0.25rem 0;
  font-size: 0.9rem;
}
.upsell-card .price {
  font-weight: 700;
  color: var(--brand-dark-green);
  font-size: 0.85rem;
}
.upsell-card .price.is-sale {
  color: #84052c;
}
.upsell-card .price-was {
  color: rgba(26, 57, 31, 0.6);
}
.upsell-card a {
  color: inherit;
  text-decoration: none;
  display: block;
}
.upsell-card a:hover h4 {
  text-decoration: underline;
}
.badge {
  display: inline-block;
  background: var(--brand-lime-light);
  color: var(--brand-dark-green);
  font-size: 0.7rem;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  margin-top: 0.4rem;
}
.filters {
  display: block;
  margin: 32px 0;
}
@media (max-width: 767px) {
  .filters {
    margin: 24px 0;
  }
}
button.primary {
  background: var(--brand-dark-green);
  color: var(--brand-white);
  border: none;
  padding: 0.8rem 1.6rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  cursor: pointer;
  font-size: 1rem;
}
button.primary:hover:not(:disabled) {
  background: #245029;
}
button.primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
button.linklike {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  text-align: left;
  color: var(--brand-dark-green);
  text-decoration: underline;
  cursor: pointer;
}
button.linklike:hover {
  color: var(--brand-black);
}
.cart-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--brand-lime-light);
}
.cart-total {
  font-size: 1.3rem;
  font-weight: 700;
  margin-top: 1rem;
  text-align: right;
}
form.checkout-form {
  display: grid;
  gap: 0.75rem;
  max-width: 480px;
}
form.checkout-form input,
form.checkout-form select {
  padding: 0.65rem;
  border-radius: var(--radius);
  border: 1px solid var(--brand-lime-light);
  background: #fff;
  min-height: 44px;
}
form.checkout-form input[type=checkbox],
form.checkout-form input[type=radio] {
  min-height: 0;
  padding: 0;
}
.error-banner {
  background: #fdecea;
  color: #a41c1c;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  margin: 1rem 0;
}
.notice-banner {
  background: var(--brand-lime-light);
  color: var(--brand-dark-green);
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  margin: 1rem 0;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--brand-dark-green);
  outline-offset: 2px;
  border-radius: 2px;
}
header.site-header a:focus-visible {
  outline-color: var(--brand-lime);
}
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--brand-dark-green);
  color: var(--brand-white);
  padding: 0.75rem 1rem;
  z-index: 100;
  border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus {
  left: 0;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
input,
select,
textarea,
button {
  font-family: inherit;
  font-size: 1rem;
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.product-description {
  white-space: pre-line;
  max-width: 60ch;
}
.product-description-short {
  max-width: 60ch;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.5;
  margin: 0 0 0.6rem;
}
label.field {
  display: block;
}
label.field > span {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brand-dark-green);
  margin-bottom: 0.2rem;
}
label.field > input,
label.field > select {
  width: 100%;
}
label.field > span > .note {
  font-weight: 400;
  color: #444;
}
.note {
  font-weight: 400;
  color: #444;
}
.muted {
  font-weight: 400;
  color: #444;
}
#collection-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.product-card-title {
  margin: 4px 0;
  font-size: 16px;
}
@media (min-width: 768px) {
  .product-card-title {
    margin: 8px 0;
    font-size: 20px;
  }
}
.migrated-note {
  background: var(--brand-lime-light);
  border-left: 4px solid var(--brand-dark-green);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  max-width: 480px;
}
.site-footer {
  margin-top: 3rem;
  padding: 3rem 12px 2.5rem;
  background: var(--brand-cream);
  color: var(--brand-ink);
  font-size: 0.9rem;
  text-align: left;
}
.footer-inner {
  max-width: 1290px;
  margin: 0 auto;
}
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.6rem;
  margin: 2.5rem 0 1.75rem;
}
.site-footer nav a {
  color: #5f6b60;
  text-decoration: none;
}
.site-footer nav a:hover,
.site-footer nav a:focus {
  text-decoration: underline;
}
.site-footer p {
  margin: 0;
}
.footer-columns {
  display: grid;
  grid-template-columns: minmax(0, 2fr) repeat(3, minmax(0, 1fr));
  gap: 2rem 2.5rem;
  align-items: start;
}
.footer-column h2,
.footer-newsletter h2 {
  margin: 0 0 1rem;
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--brand-dark-green);
  font-family: var(--font-display);
}
.footer-column ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-column li {
  margin-bottom: 0.9rem;
}
.footer-column a {
  color: var(--brand-dark-green);
  text-decoration: none;
}
.footer-column a:hover,
.footer-column a:focus {
  text-decoration: underline;
}
.footer-reach a {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.footer-icon {
  flex: none;
}
.footer-newsletter h2 {
  font-size: clamp(1.5rem, 2.6vw, 2.25rem);
  line-height: 1.05;
  max-width: 22ch;
  margin-bottom: 1.5rem;
}
.footer-newsletter form {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 440px;
  padding: 8px 8px 8px 20px;
  background: var(--brand-white);
  border: 1px solid rgba(26, 57, 31, 0.24);
  border-radius: var(--radius-pill);
}
.footer-newsletter input {
  flex: 1 1 auto;
  min-width: 0;
  height: 28px;
  padding: 0;
  border: 0;
  background: transparent;
  font: inherit;
  font-size: 17px;
  line-height: 28px;
  color: var(--brand-dark-green);
}
.footer-newsletter input:focus {
  outline: none;
}
.footer-newsletter form:focus-within {
  border-color: var(--brand-dark-green);
}
.footer-newsletter button {
  flex: none;
  background: var(--brand-dark-green);
  color: var(--brand-white);
  border: 0;
  padding: 12px 20px;
  border-radius: var(--radius-pill);
  font: inherit;
  font-size: 17px;
  line-height: 24px;
  font-weight: 500;
  cursor: pointer;
}
@media (max-width: 600px) {
  .footer-newsletter form {
    padding: 8px 4px 8px 12px;
    gap: 8px;
  }
  .footer-newsletter input {
    height: 20px;
    line-height: 20px;
  }
  .footer-newsletter button {
    padding: 8px 12px;
    font-size: 13px;
    line-height: 16px;
  }
}
.footer-newsletter button:hover,
.footer-newsletter button:focus-visible {
  background: #245029;
}
.footer-newsletter-status:empty {
  display: none;
}
.footer-newsletter-status {
  margin: 0.6rem 0 0;
  color: var(--brand-dark-green);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
}
.footer-notices {
  display: grid;
  gap: 0.9rem;
  max-width: 60rem;
}
.footer-copyright {
  font-size: 0.8rem;
  color: #5f6b60;
}
.footer-logo {
  flex: none;
  display: block;
  line-height: 0;
}
.footer-logo img {
  width: 69px;
  height: 32px;
  display: block;
}
@media (max-width: 900px) {
  .footer-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer-newsletter {
    grid-column: 1 / -1;
  }
}
@media (max-width: 600px) {
  .site-footer {
    padding: 2.5rem 1rem 2rem;
  }
  .footer-columns {
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
  }
  .footer-newsletter h2 {
    font-size: 1.75rem;
  }
  .site-footer nav {
    flex-direction: column;
    gap: 0.75rem;
    margin: 2rem 0 1.5rem;
  }
  .site-footer nav a {
    font-size: 1rem;
  }
  .footer-bottom {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 1.25rem;
  }
}
.option-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1rem 0;
}
.option-control {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.option-control .option-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brand-dark-green, #1a4d2e);
}
.option-control select {
  padding: 0.6rem;
  border-radius: var(--radius, 8px);
  border: 1px solid var(--brand-lime-light, #cfe3b8);
  min-width: 160px;
  background: #fff;
}
.option-control select option:disabled {
  color: #999;
}
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.filter-dropdown {
  position: relative;
}
.filter-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 40px;
  padding: 0 12px;
  border: 0;
  border-radius: var(--radius-pill);
  background: #f5f2eb;
  color: var(--brand-dark-green);
  font: 500 15px/28px var(--font-primary);
  cursor: pointer;
  white-space: nowrap;
}
.filter-pill:hover {
  background: #ebe8e1;
}
.filter-pill.is-active,
.filter-pill[aria-expanded=true] {
  background: #ebe8e1;
  box-shadow: inset 0 0 0 1px var(--brand-dark-green);
}
.filter-pill.is-active:hover,
.filter-pill[aria-expanded=true]:hover {
  background: #ebe8e1;
}
.filter-pill-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--brand-dark-green);
  color: var(--brand-white);
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
}
.filter-pill-chevron {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  transition: transform 0.15s;
}
.filter-pill[aria-expanded=true] .filter-pill-chevron {
  transform: rotate(180deg);
}
.filter-popover {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 40;
  width: 200px;
  background: var(--brand-white);
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}
.filter-popover.is-flipped {
  left: auto;
  right: 0;
}
.filter-popover-list {
  max-height: 248px;
  overflow-y: auto;
  padding: 8px 0;
  overscroll-behavior: contain;
}
.filter-popover-empty {
  margin: 0;
  padding: 10px 16px;
  font-size: 15px;
  color: rgba(26, 57, 31, 0.64);
}
.filter-option {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 10px 16px;
  font-size: 15px;
  color: var(--brand-dark-green);
  cursor: pointer;
}
.filter-option:hover {
  background: #f5f2eb;
}
.filter-option input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  flex: none;
  width: 18px;
  height: 18px;
  margin: 0;
  border: 2px solid rgba(26, 57, 31, 0.3);
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
  display: inline-grid;
  place-content: center;
}
.filter-option input[type=checkbox]:checked {
  border-color: var(--brand-dark-green);
  background: var(--brand-dark-green);
}
.filter-option input[type=checkbox]:checked::after {
  content: "";
  width: 5px;
  height: 9px;
  margin-top: -2px;
  border: solid var(--brand-white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.filter-option-label {
  flex: 1 1 auto;
  min-width: 0;
}
.filter-option-count {
  font-size: 13px;
  color: rgba(26, 57, 31, 0.55);
  font-variant-numeric: tabular-nums;
}
.filter-popover-foot {
  padding: 8px 16px;
  border-top: 1px solid rgba(26, 57, 31, 0.12);
}
.filter-popover-clear {
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  font-size: 13px;
  color: var(--brand-dark-green);
  cursor: pointer;
}
.filter-popover-clear:hover {
  text-decoration: underline;
}
.filter-sort {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-left: auto;
}
.filter-sort select {
  appearance: none;
  -webkit-appearance: none;
  height: 40px;
  padding: 0 34px 0 12px;
  border: 0;
  border-radius: var(--radius-pill);
  background: #f5f2eb;
  color: var(--brand-dark-green);
  font: 500 16px/28px var(--font-primary);
  cursor: pointer;
}
.filter-sort select:hover {
  background: #ebe8e1;
}
.filter-sort .filter-pill-chevron {
  position: absolute;
  right: 12px;
  pointer-events: none;
  color: var(--brand-dark-green);
}
@media (max-width: 767px) {
  .filter-sort {
    margin-left: 0;
  }
}
.filter-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
}
.filter-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(26, 57, 31, 0.16);
  font-size: 17px;
  color: var(--brand-dark-green);
}
.filter-tag-remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  padding: 0;
  border: 0;
  background: none;
  color: var(--brand-dark-green);
  cursor: pointer;
}
.filter-tag-remove svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}
.filter-clear-all {
  background: none;
  border: 0;
  padding: 0;
  font: 500 17px/28px var(--font-primary);
  color: var(--brand-dark-green);
  cursor: pointer;
}
.filter-clear-all:hover {
  text-decoration: underline;
}
.grid-empty {
  grid-column: 1 / -1;
  display: block;
  text-align: center;
  padding: 48px 16px;
}
.grid-empty-title {
  margin: 0 0 16px;
  font-size: 24px;
  line-height: 1.3;
  color: var(--brand-dark-green);
}
.grid-empty-text {
  margin: 0;
  font-size: 17px;
  line-height: 28px;
  color: rgba(0, 0, 0, 0.6);
}
.search-no-results {
  grid-column: 1 / -1;
  padding: 48px 16px;
  text-align: center;
}
.search-no-results-title {
  margin: 0 0 16px;
  font-size: 24px;
  line-height: 1.3;
  color: var(--brand-dark-green);
}
.search-no-results-text {
  margin: 0 0 24px;
  font-size: 17px;
  line-height: 28px;
  color: rgba(0, 0, 0, 0.6);
}
h1.search-heading,
.search-no-results-text {
  overflow-wrap: anywhere;
}
.search-no-results-link {
  display: inline-flex;
  align-items: center;
  height: 44px;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  background: #f0e8df;
  color: var(--brand-dark-green);
  font-size: 15px;
  line-height: 28px;
  text-decoration: none;
}
.search-no-results-link:hover {
  background: #e8dfd3;
}
h1.search-heading {
  color: var(--brand-dark-green);
  font-size: 32px;
  line-height: 1.3;
  margin: 0 0 24px;
}
@media (min-width: 768px) {
  h1.search-heading {
    font-size: 48px;
  }
}
h1.search-empty-title {
  margin: 24px 0 0;
  padding: 48px 16px 0;
  text-align: center;
  color: var(--brand-dark-green);
  font-size: 24px;
  line-height: 1.3;
}
@media (min-width: 768px) {
  h1.search-empty-title {
    margin-top: 48px;
  }
}
main.catalogue-main:has(.search-empty) .product-grid {
  margin-top: 0;
}
.search-empty {
  grid-column: 1 / -1;
  padding: 16px 16px 48px;
  text-align: center;
}
.search-empty-text {
  margin: 0;
  font-size: 17px;
  line-height: 28px;
  color: rgba(0, 0, 0, 0.6);
}
.home-row {
  margin: 32px 0 64px;
}
.home-row-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 32px;
}
.home-row-head h2 {
  margin: 0;
  font-size: 48px;
  line-height: 48px;
  color: var(--brand-dark-green);
}
.home-row-more {
  background: var(--brand-dark-green);
  color: var(--brand-white);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-weight: 500;
  font-size: 14px;
  line-height: 28px;
  white-space: nowrap;
  text-decoration: none;
}
.home-row-more:hover {
  background: #245029;
}
.home-row-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: none;
}
.home-row-controls .home-carousel-nav {
  margin-top: 0;
}
.home-row-blurb {
  margin: -0.5rem 0 1rem;
  color: #4a5c4d;
  font-size: 0.95rem;
}
.home-row-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 220px;
  justify-content: start;
  gap: 8px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  padding-bottom: 0.5rem;
  -webkit-overflow-scrolling: touch;
  position: relative;
}
.home-row-strip > .product-card {
  scroll-snap-align: start;
}
@media (min-width: 768px) {
  .home-row-strip {
    grid-auto-columns: 308px;
  }
}
.home-row-strip:focus-visible {
  outline: 2px solid var(--brand-lime);
  outline-offset: 3px;
}
@media (max-width: 767px) {
  .home-row-strip {
    grid-auto-columns: calc((100% - 24px) / 2);
  }
}
.announcement-bar {
  background: var(--brand-white);
  color: var(--brand-dark-green);
  text-align: center;
  padding: 10px 3rem;
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.3;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  border-bottom: 1px solid var(--brand-hairline);
}
header.site-header .announcement-bar a {
  color: var(--brand-dark-green);
  text-decoration: underline;
}
header.site-header .announcement-bar a.announcement-slide {
  text-decoration: none;
}
header.site-header .announcement-bar a.announcement-slide:hover .announcement-message,
header.site-header .announcement-bar a.announcement-slide:focus-visible .announcement-message {
  text-decoration: underline;
}
.announcement-bar {
  position: relative;
}
.announcement-nav {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2.75rem;
  border: 0;
  background: transparent;
  color: var(--brand-dark-green);
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
}
.announcement-nav:hover,
.announcement-nav:focus-visible {
  opacity: 1;
}
.announcement-prev {
  left: 0;
}
.announcement-next {
  right: 0;
}
.announcement-arrow {
  margin-left: 0.45rem;
  vertical-align: middle;
}
.announcement-bar {
  min-height: 44px;
  box-sizing: border-box;
}
.announcement-slides {
  display: grid;
  align-items: center;
  width: 100%;
  min-width: 0;
}
.announcement-slide {
  grid-area: 1 / 1;
  display: block;
  max-width: 100%;
}
.announcement-slide[hidden] {
  display: block !important;
  visibility: hidden;
}
@media (max-width: 600px) {
  .announcement-bar {
    padding: 10px 49px;
  }
}
.announcement-slide {
  color: inherit;
}
a.announcement-slide {
  text-decoration: none;
}
a.announcement-slide:hover .announcement-message,
a.announcement-slide:focus-visible .announcement-message {
  text-decoration: underline;
}
@media (prefers-reduced-motion: reduce) {
  .announcement-slide {
    display: block;
    grid-area: auto;
  }
  .announcement-message {
    display: inline;
  }
  .announcement-nav {
    display: none;
  }
  .announcement-bar {
    height: auto;
    min-height: 44px;
    padding: 10px 1rem;
  }
}
.product-reviews {
  max-width: 1290px;
  margin: 0 auto;
  padding: 0 32px 3rem;
}
@media (max-width: 767px) {
  .product-reviews {
    padding-inline: 16px;
  }
}
.reviews-summary {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.reviews-average {
  text-align: center;
}
.reviews-average-value {
  margin: 0.25rem 0 0;
  font-size: 1.1rem;
  font-weight: 700;
}
.stars {
  color: #c8a300;
  letter-spacing: 0.08em;
  font-size: 1.15rem;
}
.reviews-bars {
  flex: 1 1 260px;
  min-width: 220px;
}
.reviews-bar-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.25rem;
  font-size: 0.85rem;
}
.reviews-bar-label {
  width: 2.2rem;
  color: #4a5c4d;
}
.reviews-bar {
  flex: 1;
  height: 8px;
  background: #e6e0d4;
  border-radius: 999px;
  overflow: hidden;
}
.reviews-bar-fill {
  display: block;
  height: 100%;
  background: var(--brand-lime);
}
.reviews-bar-count {
  width: 2rem;
  text-align: right;
  color: #4a5c4d;
  font-variant-numeric: tabular-nums;
}
.reviews-empty {
  color: #4a5c4d;
}
.review {
  border-top: 1px solid #e6e0d4;
  padding: 1rem 0;
}
.review-title {
  margin: 0.3rem 0;
  font-size: 1rem;
}
.review-meta {
  margin: 0.2rem 0;
  font-size: 0.9rem;
  color: #4a5c4d;
}
.review-verified {
  background: var(--brand-lime-light);
  color: var(--brand-dark-green);
  padding: 0.1rem 0.5rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-left: 0.5rem;
}
.review-body {
  margin: 0.4rem 0 0;
  white-space: pre-wrap;
}
.review-reply {
  margin: 0.75rem 0 0 1.25rem;
  padding-left: 0.9rem;
  border-left: 3px solid var(--brand-lime-light);
}
.review-reply-who {
  margin: 0 0 0.2rem;
  font-weight: 700;
  font-size: 0.85rem;
}
.review-form-wrap {
  margin: 1.5rem 0;
}
.review-form {
  display: grid;
  gap: 0.75rem;
  max-width: 520px;
  margin-top: 1rem;
}
.review-form label {
  display: grid;
  gap: 0.25rem;
  font-weight: 600;
  font-size: 0.9rem;
}
.review-form input,
.review-form select,
.review-form textarea {
  padding: 0.5rem;
  border: 1px solid #cdcdcd;
  border-radius: var(--radius);
  font: inherit;
}
.home-hero {
  --hero-bg: #05070a;
  display: block;
  margin-inline: calc(50% - 50vw);
  width: 100vw;
  max-width: 100vw;
  margin-block: -1.5rem 0;
  background-color: var(--hero-bg);
  background-image: var(--hero-bg-image, none);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #f5f7f5;
  overflow: hidden;
}
.home-hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 40px 20px;
  text-align: center;
}
.home-hero-copy {
  width: 100%;
  max-width: 100%;
}
.home-hero-kicker {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  font-size: clamp(24px, 2.4vw, 30px);
  line-height: 1.05;
  letter-spacing: 0.5px;
  color: #f5f7f5;
}
.home-hero-heading {
  margin: 6px 0 0;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(40px, 4.2vw, 105px);
  line-height: 1.3;
  color: #e8ff3c;
  text-shadow: 0 0 30px rgba(232, 255, 60, 0.15);
}
.home-hero-sub {
  margin: 16px auto 0;
  max-width: 44rem;
  color: #f5f7f5;
  font-size: 17px;
  line-height: 1.5;
}
.home-hero-bullets {
  list-style: none;
  margin: 42px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}
.home-hero-bullet {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 15px;
  flex: 1 1 70px;
  max-width: 90px;
  min-width: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0;
  color: #f5f7f5;
}
.home-hero-bullet-icon {
  width: 40px;
  height: 40px;
  flex: none;
}
.home-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 44px;
  justify-content: center;
}
.home-hero-cta {
  display: inline-block;
  box-sizing: border-box;
  min-width: 165px;
  text-align: center;
  padding: 12px 13px;
  border-radius: 30px;
  border: 2px solid transparent;
  font-family: var(--font-primary);
  font-size: 15px;
  line-height: 24px;
  font-weight: 700;
  text-decoration: none;
  background: #e8ff3c;
  color: #0b0f0c;
  transition: transform 0.15s ease, background 0.2s ease;
}
.home-hero-cta:hover,
.home-hero-cta:focus-visible {
  transform: translateY(-2px);
  background: #f4ff6e;
  text-decoration: none;
}
.home-hero-cta-outline {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}
.home-hero-cta-outline:hover,
.home-hero-cta-outline:focus-visible {
  background: transparent;
  border-color: #fff;
}
.home-hero-side {
  width: 100%;
}
.home-hero-side img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 300px;
  object-fit: contain;
  object-position: center;
}
@media (min-width: 501px) {
  .home-hero-cta {
    min-width: 180px;
    padding: 14px 20px;
    font-size: 16px;
  }
  .home-hero-side img {
    height: 500px;
  }
}
@media (min-width: 768px) {
  .home-hero-bullet {
    font-size: 16px;
  }
}
@media (min-width: 1025px) {
  .home-hero-inner {
    padding: 60px 20px 40px;
  }
  .home-hero-has-side .home-hero-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
  }
  .home-hero-has-side .home-hero-copy {
    min-width: 50%;
    max-width: 50%;
  }
  .home-hero-has-side .home-hero-sub {
    margin-inline: 0;
  }
  .home-hero-has-side .home-hero-bullets,
  .home-hero-has-side .home-hero-ctas {
    justify-content: flex-start;
  }
  .home-hero-bullets {
    gap: 20px;
  }
  .home-hero-ctas {
    gap: 18px;
  }
  .home-hero-cta {
    min-width: 200px;
    padding: 16px 22px;
  }
  .home-hero-side {
    width: 50%;
  }
}
@media (min-width: 1201px) {
  .home-hero-bullets {
    gap: 34px;
  }
  .home-hero-cta {
    min-width: 250px;
    padding: 16px 32px;
  }
  .home-hero-side img {
    height: 700px;
  }
}
@media (min-width: 1401px) {
  .home-hero-inner {
    max-width: 85%;
    margin: 0 auto;
  }
}
.blog-articles {
  display: grid;
  gap: 35px;
}
@media (min-width: 750px) {
  .blog-articles {
    grid-template-columns: 1fr 1fr;
    gap: 63px 8px;
  }
  .blog-articles--collage > *:nth-child(3n+1),
  .blog-articles--collage > *:nth-child(3n+2):last-child {
    grid-column: span 2;
    text-align: center;
  }
}
.article-card h2 a {
  color: var(--brand-dark-green);
  text-decoration: none;
}
.article-card h2 a:hover {
  text-decoration: underline;
}
.article-card-media {
  display: block;
}
.article-thumb {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 0;
}
@media (min-width: 750px) {
  .article-thumb {
    height: 307px;
  }
  .blog-articles--collage > *:nth-child(3n+1) .article-thumb,
  .blog-articles--collage > *:nth-child(3n+2):last-child .article-thumb {
    height: 440px;
  }
}
@media (min-width: 990px) {
  .blog-articles--collage > *:nth-child(3n+1) .article-thumb,
  .blog-articles--collage > *:nth-child(3n+2):last-child .article-thumb {
    height: 550px;
  }
}
.article-meta {
  margin: 0 0 0.4rem;
  color: #4a5c4d;
  font-size: 0.85rem;
}
.article-excerpt {
  margin: 0;
  color: #3d4a3f;
}
.article {
  max-width: 46rem;
  margin: 0 auto;
}
.article-hero-container {
  max-width: 1300px;
  margin: 0 auto 1.5rem;
}
.article-hero {
  display: block;
  width: 100%;
  height: 330px;
  object-fit: cover;
  border-radius: 0;
}
@media (min-width: 750px) {
  .article-hero {
    height: 660px;
  }
}
@media (min-width: 990px) {
  .article-hero {
    height: 825px;
  }
}
main.article-main {
  padding-top: 0;
}
main.blog-main {
  max-width: 1280px;
  padding: 36px 32px;
}
@media (max-width: 749px) {
  main.blog-main {
    padding: 27px 12px;
  }
}
.pagination-list {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0 10px;
}
.pagination-item,
.pagination-arrow,
.pagination-gap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 0.4rem;
  color: var(--brand-dark-green);
  text-decoration: none;
  border-radius: var(--radius);
}
.pagination-item:hover,
.pagination-arrow:hover {
  background: var(--brand-lime-light);
}
.pagination-item-current {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.article-body {
  line-height: 1.7;
}
.article-body h2 {
  margin-top: 2rem;
  font-size: 1.35rem;
}
.article-body h3 {
  margin-top: 1.5rem;
  font-size: 1.1rem;
}
.article-body img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
}
.article-body a {
  color: var(--brand-dark-green);
}
.article-back {
  display: flex;
  justify-content: center;
}
@media (max-width: 600px) {
  .article-hero {
    height: 220px;
  }
}
.cart-drawer-scrim {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 90010;
}
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(400px, 100%);
  background: var(--brand-white);
  z-index: 90011;
  display: flex;
  flex-direction: column;
  box-shadow: -2px 0 16px rgba(0, 0, 0, 0.18);
}
body.cart-drawer-open {
  overflow: hidden;
}
.cart-drawer-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #e6e0d4;
}
.cart-drawer-head h2 {
  margin: 0;
  font-size: 1.05rem;
  color: var(--brand-dark-green);
}
.cart-drawer-close {
  margin-left: auto;
  background: none;
  border: 0;
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--brand-dark-green);
  padding: 0 0.25rem;
}
.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 0.5rem 1.25rem;
}
.cart-drawer-empty {
  color: #4a5c4d;
  padding: 1.5rem 0;
}
.cart-empty {
  color: #4a5c4d;
  margin: 1.5rem 0 0.75rem;
  font-size: 1.05rem;
}
.primary-link {
  display: inline-block;
  background: var(--brand-dark-green);
  color: var(--brand-white);
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  text-decoration: none;
}
.primary-link:hover {
  background: #245029;
}
.cart-drawer-line {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 0.25rem 0.85rem;
  align-items: start;
  padding: 1rem 0;
  border-bottom: 1px solid #efeadf;
}
.cart-drawer-thumb {
  width: 84px;
  height: 84px;
  object-fit: contain;
  border-radius: 6px;
  border: 1px solid #efeadf;
  background: var(--brand-white);
  display: block;
}
.cart-drawer-thumb-empty {
  background: #f4f2ec;
}
.cart-drawer-line-main {
  min-width: 0;
}
.cart-drawer-line-title {
  margin: 0;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.3;
}
.cart-drawer-line-link {
  color: inherit;
  text-decoration: none;
}
.cart-drawer-line-link:hover {
  text-decoration: underline;
}
.cart-drawer-thumb-link {
  display: block;
}
.cart-drawer-line-price {
  margin: 0.3rem 0 0;
  color: var(--brand-ink);
  font-size: 14px;
}
.cart-drawer-each {
  color: #4a5c4d;
  font-size: 0.8rem;
}
.cart-drawer-line-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.cart-drawer-line-foot .cart-drawer-code {
  margin-left: auto;
  padding: 0.2rem 0.55rem;
  font-size: 0.75rem;
}
.cart-drawer-qty {
  display: inline-flex;
  align-items: center;
  gap: 0;
  border: 1px solid #cfc9bb;
  border-radius: var(--radius);
}
.cart-drawer-qty button {
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 0;
  background: var(--brand-white);
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  padding: 0;
}
.cart-drawer-qty span {
  min-width: 30px;
  text-align: center;
  font-size: 0.9rem;
}
.cart-drawer-qty button[aria-disabled=true] {
  opacity: 0.4;
  cursor: default;
}
.cart-drawer-line-limit {
  margin: 0.35rem 0 0;
  color: #4a5c4d;
  font-size: 0.8rem;
}
.cart-drawer-remove {
  background: none;
  border: 0;
  padding: 0.15rem;
  cursor: pointer;
  line-height: 0;
  color: #4a5c4d;
  align-self: start;
}
.cart-drawer-remove:hover,
.cart-drawer-remove:focus-visible {
  color: var(--brand-ink);
}
.cart-drawer-foot {
  padding: 1rem 1.25rem 1.25rem;
  border-top: 1px solid #e6e0d4;
}
.cart-drawer-total {
  display: flex;
  justify-content: space-between;
  font-size: 1.05rem;
}
.cart-drawer-note {
  margin: 0.35rem 0 0.9rem;
  color: #4a5c4d;
  font-size: 0.8rem;
}
.cart-drawer-checkout,
.cart-drawer-continue {
  display: block;
  width: 100%;
  text-align: center;
  box-sizing: border-box;
  background: var(--brand-dark-green);
  color: var(--brand-white);
  padding: 0.75rem 1rem;
  border: 0;
  border-radius: var(--radius);
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}
.cart-drawer-checkout:hover,
.cart-drawer-continue:hover {
  background: #245029;
}
.cart-drawer-subtotal,
.cart-drawer-discount {
  font-size: 0.9rem;
  color: #4a5c4d;
  margin-bottom: 0.2rem;
}
.cart-drawer-discount {
  color: var(--brand-dark-green);
  font-weight: 600;
}
.cart-drawer-code {
  display: inline-block;
  margin-left: 0.35rem;
  padding: 0.05rem 0.4rem;
  background: var(--brand-lime-light);
  color: var(--brand-dark-green);
  border-radius: 9999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.cart-drawer-was,
.cart-row-was,
.summary-was {
  color: #6b7a6e;
  text-decoration: line-through;
  margin-right: 0.25rem;
}
.cart-drawer-save,
.cart-row-save {
  color: var(--brand-dark-green);
  font-weight: 650;
  white-space: nowrap;
}
.cart-row-tag {
  display: inline-block;
  margin-left: 0.35rem;
  padding: 0.05rem 0.4rem;
  background: var(--brand-lime-light);
  color: var(--brand-dark-green);
  border-radius: 9999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.cart-drawer-upsells:empty {
  display: none;
}
.cart-drawer-upsells {
  margin-top: 1.25rem;
  border-top: 1px solid #e6e0d4;
  padding-top: 0.9rem;
}
.cart-drawer-upsells-title {
  margin: 0 0 0.6rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--brand-ink);
}
.cart-drawer-upsell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.7rem;
  align-items: center;
  padding: 0.55rem 0;
  border-bottom: 1px solid #f2efe8;
}
.cart-drawer-upsell:last-child {
  border-bottom: 0;
}
.cart-drawer-upsell-thumb {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: 6px;
  border: 1px solid #efeadf;
  background: var(--brand-white);
  display: block;
}
.cart-drawer-upsell-main {
  min-width: 0;
}
.cart-drawer-upsell-title {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brand-ink);
  text-decoration: none;
  line-height: 1.2;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cart-drawer-upsell-title:hover {
  text-decoration: underline;
}
.cart-drawer-upsell-stars {
  margin: 0.15rem 0 0;
  font-size: 0.75rem;
  color: var(--brand-lime);
  letter-spacing: 0.5px;
}
.cart-drawer-upsell-star-partial {
  display: inline-block;
  position: relative;
  width: 1em;
  overflow: hidden;
  letter-spacing: 0;
  vertical-align: bottom;
}
.cart-drawer-upsell-star-partial > span:first-child {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  display: inline-block;
}
.cart-drawer-upsell-reviews {
  color: #4a5c4d;
}
.cart-drawer-upsell-price {
  margin: 0.15rem 0 0;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--brand-ink);
}
.cart-drawer-upsell-was,
.checkout-upsell-was {
  color: #6b7a6e;
  font-weight: 400;
  text-decoration: line-through;
  margin-right: 0.15rem;
}
.cart-drawer-upsell-add {
  background: var(--brand-dark-green);
  color: var(--brand-white);
  border: 0;
  border-radius: var(--radius);
  padding: 0.4rem 0.85rem;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}
.cart-drawer-upsell-add:hover {
  background: #245029;
}
.cart-drawer-viewcart {
  display: block;
  text-align: center;
  margin-top: 0.6rem;
  color: var(--brand-dark-green);
  font-size: 0.9rem;
}
.search-backdrop {
  position: fixed;
  inset: 0;
  z-index: 90005;
  background: rgba(0, 0, 0, 0.5);
}
.search-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 90006;
  width: min(100vw, 560px);
  background: var(--brand-white);
  color: var(--brand-dark-green);
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 20px rgba(23, 10, 64, 0.08);
}
.search-drawer[hidden],
.search-backdrop[hidden] {
  display: none;
}
body.search-open {
  overflow: hidden;
}
.search-drawer-head {
  display: flex;
  justify-content: flex-end;
  padding: 24px 24px 0;
}
.search-drawer-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  background: none;
  border-radius: var(--radius-pill);
  color: var(--brand-dark-green);
  cursor: pointer;
}
.search-drawer-close:hover {
  background: #f2f1ec;
}
.search-drawer-close svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}
.header-search {
  padding: 12px 24px 24px;
}
.search-field {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 56px;
  padding: 0 8px 0 24px;
  border-radius: var(--radius-pill);
  background: var(--brand-cream);
}
.search-drawer:not([data-opened-by=pointer]) .search-field:focus-within {
  outline: 2px solid var(--brand-dark-green);
  outline-offset: -2px;
}
.search-field input {
  flex: 1 1 auto;
  min-width: 0;
  height: 100%;
  padding: 0;
  border: 0;
  background: none;
  outline: none;
  color: var(--brand-dark-green);
  font: 400 16px/1.4 var(--font-primary);
}
.search-field input::placeholder {
  color: rgba(26, 57, 31, 0.64);
}
.search-field input::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
}
.search-clear {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 24px;
  height: 24px;
  padding: 0;
  border: 0;
  background: none;
  color: var(--brand-dark-green);
  cursor: pointer;
}
.search-clear svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}
.search-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  border-radius: var(--radius-pill);
  background: var(--brand-dark-green);
  color: var(--brand-white);
  cursor: pointer;
}
.search-submit:hover {
  background: #245029;
}
.search-submit svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.search-suggestions {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 0 24px 24px;
}
.search-section-title {
  margin: 0 0 24px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 24px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--brand-dark-green);
}
.search-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
header.site-header .search-pills a,
header.site-header .search-pills button {
  display: inline-flex;
  align-items: center;
  height: 36px;
  padding: 6px 12px;
  border: 0;
  border-radius: var(--radius-pill);
  background: var(--brand-cream);
  color: var(--brand-dark-green);
  font: 500 17px/1 var(--font-primary);
  text-decoration: none;
  cursor: pointer;
}
header.site-header .search-pills a:hover,
header.site-header .search-pills button:hover {
  background: #ebe8e1;
}
header.site-header .search-all-results {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  margin-bottom: 24px;
  font-size: 17px;
  color: rgba(26, 57, 31, 0.64);
  text-decoration: none;
}
header.site-header .search-all-results:hover {
  color: var(--brand-dark-green);
}
.search-all-results svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
}
.search-suggestions-empty {
  margin: 0;
  font-size: 17px;
  color: rgba(26, 57, 31, 0.64);
}
.search-results {
  list-style: none;
  margin: 0;
  padding: 0;
}
header.site-header .search-results a {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 96px;
  padding: 8px;
  border-radius: 8px;
  color: var(--brand-dark-green);
  text-decoration: none;
}
header.site-header .search-results a:hover,
header.site-header .search-results a:focus {
  background: var(--brand-cream);
}
.search-result-thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 80px;
  height: 80px;
  border-radius: 8px;
  background: var(--brand-cream);
  overflow: hidden;
}
.search-result-thumb img {
  display: block;
  width: 80px;
  height: 80px;
  object-fit: cover;
}
.search-result-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.search-result-title {
  font-size: 17px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.search-result-type {
  font-size: 15px;
  color: rgba(26, 57, 31, 0.64);
}
.search-drawer-foot {
  padding: 24px;
}
header.site-header .search-view-all {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  border-radius: var(--radius-pill);
  background: var(--brand-dark-green);
  color: var(--brand-white);
  font-size: 17px;
  font-weight: 500;
  text-decoration: none;
}
header.site-header .search-view-all:hover {
  background: #245029;
}
@media (max-width: 940px) {
  .search-drawer-head {
    justify-content: flex-start;
    padding: 12px;
  }
  .header-search {
    padding: 12px 12px 24px;
  }
  .search-field {
    height: 48px;
  }
  .search-field input {
    font-size: 17px;
  }
  .search-suggestions {
    padding: 0 12px 24px;
  }
  .search-drawer-foot {
    padding: 12px;
  }
}
.home-tiles {
  margin: 0;
  padding: 48px 0;
}
.home-tiles h2 {
  margin: 0;
  font-size: 48px;
  line-height: 48px;
  font-weight: 900;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--brand-dark-green);
}
.home-tiles-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin: 0 0 32px;
}
.home-tiles-all {
  flex: none;
  padding: 8px 16px;
  border-radius: 9999px;
  background: var(--brand-dark-green);
  color: #fff;
  font-size: 14px;
  line-height: 28px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
}
.home-tiles-all:hover,
.home-tiles-all:focus {
  background: #245029;
}
.home-tiles-all-mobile {
  display: none;
}
@media (max-width: 767px) {
  .home-tiles-all {
    display: none;
  }
  .home-tiles-all-mobile {
    display: block;
    width: 100%;
    box-sizing: border-box;
    margin-top: 1rem;
    padding: 12px 16px;
    border-radius: 9999px;
    background: var(--brand-dark-green);
    color: var(--brand-white);
    font-size: 16px;
    line-height: 28px;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
  }
  .home-tiles-all-mobile:hover,
  .home-tiles-all-mobile:focus {
    background: #245029;
  }
}
.home-tiles-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: none;
}
.home-tiles-controls .home-carousel-nav {
  margin-top: 0;
}
.home-tile-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 5 * 0.75rem) / 6);
  gap: 0.75rem;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  padding-bottom: 0.25rem;
  -webkit-overflow-scrolling: touch;
  position: relative;
}
.home-tile-strip::-webkit-scrollbar {
  display: none;
}
.home-tile-strip:focus-visible {
  outline: 2px solid var(--brand-lime);
  outline-offset: 4px;
}
.home-tile-strip > .home-tile {
  scroll-snap-align: start;
}
@media (max-width: 1000px) {
  .home-tile-strip {
    grid-auto-columns: calc((100% - 3 * 0.75rem) / 4);
  }
}
@media (max-width: 767px) {
  .home-tile-strip {
    grid-auto-columns: calc((100% - 0.75rem) / 2);
  }
}
.home-tile-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}
.home-tile-grid-6 {
  grid-template-columns: repeat(6, 1fr);
}
@media (max-width: 767px) {
  .home-tile-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  .home-tile-grid-6 {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
}
.home-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 190px;
  padding: 1.1rem 1rem 0;
  background: #eaf3dc;
  border: 0;
  overflow: hidden;
  border-radius: 14px;
  color: var(--brand-heading);
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
  transition: transform 0.12s ease;
}
.home-tile-label {
  display: block;
}
.home-tile-img {
  margin-top: auto;
  width: 100%;
  min-height: 0;
  max-height: 130px;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.home-tile-plain {
  justify-content: center;
  padding-bottom: 1.1rem;
}
.home-tile:nth-child(5n+2) {
  background: #dff1ef;
}
.home-tile:nth-child(5n+3) {
  background: #f3f0d8;
}
.home-tile:nth-child(5n+4) {
  background: #fbe4e8;
}
.home-tile:nth-child(5n+5) {
  background: #f2e6f7;
}
.home-tile:hover,
.home-tile:focus {
  transform: translateY(-2px);
}
.home-tile.home-tile-art,
.home-tile.home-tile-photo {
  padding: 0;
  min-height: 0;
  background: transparent;
  border-radius: 16px;
}
.home-tile-art .home-tile-img,
.home-tile-photo .home-tile-img {
  margin: 0;
  width: 100%;
  max-height: none;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  mix-blend-mode: normal;
  border-radius: 16px;
  display: block;
}
.home-tile-art .home-tile-label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.home-tile-photo {
  align-items: stretch;
  text-align: left;
  overflow: visible;
}
.home-tile-photo .home-tile-label {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 28px;
  font-weight: 400;
  color: var(--brand-ink);
}
.home-tile-art:hover,
.home-tile-art:focus,
.home-tile-photo:hover,
.home-tile-photo:focus {
  transform: none;
}
.home-tile-art:hover .home-tile-img,
.home-tile-photo:hover .home-tile-img {
  transform: translateY(-2px);
}
.home-tile-img {
  transition: transform 0.12s ease;
}
@media (max-width: 640px) {
  .home-tile-art,
  .home-tile-art .home-tile-img {
    border-radius: 12px;
  }
}
.buy-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1rem 0;
}
.buy-row #add-to-cart {
  flex: 1 1 auto;
  min-width: 0;
  white-space: nowrap;
}
.buy-row .qty-stepper {
  flex: 0 1 auto;
}
.preorder-notice {
  margin: -0.35rem 0 1rem;
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--ink, #111);
  max-width: 44ch;
}
.preorder-notice[hidden] {
  display: none;
}
@media (max-width: 640px) {
  .buy-row {
    gap: 0.5rem;
  }
  .buy-row #add-to-cart {
    padding-inline: 1rem;
  }
  .buy-row .qty-stepper input {
    width: 44px;
  }
  .buy-row .qty-stepper button {
    width: 32px;
  }
}
.qty-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1rem 0;
}
.qty-row label {
  font-weight: 600;
}
.qty-stepper {
  display: inline-flex;
  align-items: center;
  border: 1px solid #cfc9bb;
  border-radius: var(--radius);
  background: var(--brand-white);
}
.qty-stepper button {
  width: 36px;
  height: 40px;
  border: 0;
  background: none;
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
  color: var(--brand-dark-green);
}
.qty-stepper input {
  width: 56px;
  height: 40px;
  border: 0;
  text-align: center;
  font: inherit;
  background: none;
  color: var(--brand-black);
  -moz-appearance: textfield;
  appearance: textfield;
}
.qty-stepper input::-webkit-outer-spin-button,
.qty-stepper input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.product-gallery {
  max-width: 420px;
  margin-bottom: 1rem;
}
.product-thumbs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}
.product-thumb-button {
  width: 56px;
  height: 56px;
  padding: 0;
  cursor: pointer;
  background: #f7f4eb;
  border: 2px solid transparent;
  border-radius: 8px;
  overflow: hidden;
}
.product-thumb-button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 4px;
}
.product-thumb-button:hover,
.product-thumb-button.is-selected {
  border-color: var(--brand-dark-green);
}
.cart-row-title {
  flex: 1;
}
.cart-qty {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 1rem;
}
.cart-qty button {
  width: 28px;
  height: 28px;
  border: 1px solid #cfc9bb;
  border-radius: var(--radius);
  background: var(--brand-white);
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  padding: 0;
}
.cart-row-total {
  white-space: nowrap;
}
.checkout-page {
  max-width: none;
  padding: 0;
}
.checkout-page > .notice-banner,
.checkout-page > .error-banner,
.checkout-page > #checkout-signin {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1140px) {
  .checkout-page > .notice-banner,
  .checkout-page > .error-banner,
  .checkout-page > #checkout-signin {
    margin-left: 1rem;
    margin-right: 1rem;
  }
}
.checkout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: start;
  border-top: 1px solid var(--brand-lime-light);
}
.checkout-form {
  justify-self: end;
  width: min(100%, 520px);
  box-sizing: border-box;
  padding: 1.5rem 2.5rem 3rem 1rem;
  max-width: none;
}
.order-summary {
  justify-self: start;
  width: min(100%, 460px);
  box-sizing: border-box;
  background: #f5f4ef;
  border: 0;
  border-radius: 0;
  padding: 1.5rem 1rem 2rem 2.5rem;
  position: sticky;
  top: 0;
  max-height: 100vh;
  overflow-y: auto;
}
.checkout-grid::before {
  content: none;
}
.checkout-grid {
  background:
    linear-gradient(
      to right,
      var(--brand-white) 50%,
      #f5f4ef 50%);
}
.order-summary h2 {
  margin: 0 0 0.75rem;
  font-size: 1rem;
}
.checkout-section-title {
  margin: 1.5rem 0 0.25rem;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--brand-ink);
  font-family: inherit;
  letter-spacing: 0;
  text-transform: none;
}
.checkout-form > .checkout-section-title:first-child {
  margin-top: 0.25rem;
}
.field-hint {
  margin: -0.35rem 0 0.25rem;
  font-size: 0.8rem;
  color: #4a5c4d;
}
.checkout-signin {
  margin: -0.25rem 0 0.5rem;
  font-size: 0.9rem;
  color: #4a5c4d;
}
.checkout-signin a {
  color: var(--brand-dark-green);
  font-weight: 600;
}
.checkout-form .notice-banner {
  margin: 0.25rem 0 0.5rem;
}
.field-row.three {
  grid-template-columns: 1.3fr 1fr 0.9fr;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.checkbox-row {
  display: flex;
  gap: 8px;
  align-items: center;
  margin: 0.5rem 0;
  font-size: 0.92rem;
}
form.checkout-form input[readonly] {
  background: #f5f4ef;
  color: #4a5c4d;
}
.shipping-placeholder {
  margin: 0;
  padding: 0.9rem 1rem;
  background: #f5f4ef;
  border-radius: var(--radius);
  color: #4a5c4d;
  font-size: 0.9rem;
}
.shipping-options:empty {
  display: none;
}
.shipping-option {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1rem;
  margin: 0;
  border: 1px solid #cfc9bb;
  background: var(--brand-white);
  cursor: pointer;
  font-size: 0.92rem;
}
.shipping-option:first-child {
  border-radius: var(--radius) var(--radius) 0 0;
}
.shipping-option:last-child {
  border-radius: 0 0 var(--radius) var(--radius);
}
.shipping-option + .shipping-option {
  border-top: 0;
}
.shipping-option:has(input:checked) {
  border-color: var(--brand-dark-green);
  background: var(--brand-lime-light);
}
.shipping-option + .shipping-option:has(input:checked) {
  border-top: 1px solid var(--brand-dark-green);
}
.shipping-option-name {
  flex: 1;
}
.shipping-option-price {
  font-weight: 600;
}
.shipping-option-note {
  display: block;
  font-size: 0.78rem;
  color: #4a5c4d;
  margin-top: 2px;
}
.payment-panel {
  border: 1px solid #cfc9bb;
  border-radius: var(--radius);
  padding: 1rem;
  display: grid;
  gap: 0.75rem;
  background: var(--brand-white);
}
.payment-panel-title {
  margin: 0;
  font-weight: 600;
  font-size: 0.95rem;
}
.checkout-pay {
  width: 100%;
  padding: 1rem;
  font-size: 1.05rem;
  margin-top: 0.5rem;
}
.summary-line {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.4rem 0;
  font-size: 0.9rem;
}
.summary-line-title {
  flex: 1;
}
.summary-line-qty {
  color: #4a5c4d;
}
.summary-item {
  align-items: flex-start;
  padding: 0.5rem 0;
}
.summary-thumb {
  position: relative;
  flex: none;
  width: 64px;
  height: 64px;
  border-radius: 8px;
  border: 1px solid #d9d4c7;
  background: var(--brand-white);
  overflow: visible;
}
.summary-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
}
.summary-thumb-gift {
  background: var(--brand-lime-light);
}
.summary-qty-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 9999px;
  background: #4a5c4d;
  color: var(--brand-white);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
.summary-line-tag {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.78rem;
  color: #4a5c4d;
}
.summary-line-tag-off {
  white-space: nowrap;
}
.summary-line-price {
  white-space: nowrap;
  text-align: right;
}
.summary-currency {
  font-size: 0.72rem;
  font-weight: 500;
  color: #4a5c4d;
  margin-right: 0.25rem;
}
.summary-line-gift {
  border-top: 1px dashed #d9d4c7;
}
.summary-total {
  border-top: 1px solid #d9d4c7;
  margin-top: 0.5rem;
  padding-top: 0.75rem;
  font-size: 1.15rem;
  font-weight: 700;
}
.summary-note {
  margin: 0.5rem 0 0;
  color: #4a5c4d;
  font-size: 0.8rem;
}
#summary-items {
  border-bottom: 1px solid #d9d4c7;
  padding-bottom: 0.5rem;
  margin-bottom: 0.75rem;
}
#summary-items:empty {
  display: none;
}
.checkout-points {
  margin: 0 0 0.75rem;
  padding: 0.7rem 0.8rem;
  background: #ecebe3;
  border: 1px solid #d9d4c7;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 650;
  color: var(--brand-ink);
}
.summary-savings {
  font-weight: 700;
  color: var(--brand-dark-green);
  letter-spacing: 0.02em;
}
#checkout-savings:empty {
  display: none;
}
.order-summary-body .checkout-discount {
  margin: 0 0 0.75rem;
}
.order-summary-body .checkout-discount-row input {
  background: var(--brand-white);
}
.checkout-trust {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0.75rem 0 0;
  border-top: 1px solid #d9d4c7;
  display: grid;
  gap: 0.4rem;
}
.checkout-trust:empty {
  display: none;
  border-top: 0;
  margin: 0;
  padding: 0;
}
.checkout-trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--brand-ink);
}
.checkout-trust-badge svg {
  flex: none;
  color: var(--brand-dark-green);
}
.checkout-header .header-actions a {
  font-weight: 500;
}
.order-summary-toggle {
  display: none;
}
@media (max-width: 899px) {
  .checkout-grid {
    grid-template-columns: minmax(0, 1fr);
    background: var(--brand-white);
  }
  .order-summary {
    order: -1;
    position: static;
    width: 100%;
    padding: 0;
    min-height: 0;
    max-height: none;
    overflow: visible;
  }
  form.checkout-form {
    justify-self: center;
    width: 100%;
    max-width: 560px;
    padding: 0.5rem 1rem 2rem;
  }
  .field-row,
  .field-row.three {
    grid-template-columns: 1fr 1fr;
  }
  .field-row.three > .field:first-child {
    grid-column: 1 / -1;
  }
  .order-summary-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
    min-height: 48px;
    padding: 0.75rem 1rem;
    margin: 0;
    background: #f5f4ef;
    border: 0;
    border-bottom: 1px solid #d9d4c7;
    border-radius: 0;
    color: var(--brand-ink);
    font: inherit;
    font-size: 0.95rem;
    text-align: left;
    cursor: pointer;
  }
  .order-summary-toggle-label {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--brand-dark-green);
    font-weight: 600;
  }
  .order-summary-toggle-chevron {
    transition: transform 0.15s ease;
  }
  .order-summary.is-open .order-summary-toggle-chevron {
    transform: rotate(180deg);
  }
  .order-summary-toggle-total {
    font-size: 1.1rem;
    white-space: nowrap;
  }
  .order-summary-toggle-total .summary-was {
    font-size: 0.85rem;
    font-weight: 400;
    color: #4a5c4d;
    margin-right: 0.35rem;
  }
  .order-summary-body {
    display: none;
    padding: 1rem;
    background: #f5f4ef;
    border-bottom: 1px solid #d9d4c7;
  }
  .order-summary.is-open .order-summary-body {
    display: block;
  }
}
@media (max-width: 749px) {
  .checkout-form .field-row,
  .checkout-form .field-row.three {
    grid-template-columns: 1fr;
  }
  .checkout-form .payment-panel .field-row.three {
    grid-template-columns: 1fr 1fr;
  }
}
.order-state {
  font-size: 1.05rem;
  margin: 0.25rem 0 1.25rem;
}
.order-totals {
  max-width: 32rem;
  margin-top: 1rem;
}
.order-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem 1.5rem;
  max-width: 44rem;
  margin: 0 0 1.5rem;
  padding: 1rem 1.25rem;
  background: #f5f4ef;
  border: 1px solid #d9d4c7;
  border-radius: var(--radius);
}
.order-detail h2 {
  margin: 0 0 0.3rem;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}
.order-detail p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
  overflow-wrap: anywhere;
}
.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: start;
}
.product-media {
  min-width: 0;
}
.product-buybox {
  min-width: 0;
}
.product-stars {
  margin: 0.35rem 0 0.6rem;
  min-height: 0;
}
.product-stars:empty {
  display: none;
}
.product-rating {
  margin: 0.35rem 0 0.6rem;
}
.product-rating-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
  color: inherit;
}
.product-rating-link:hover .product-rating-count,
.product-rating-link:focus-visible .product-rating-count {
  text-decoration: underline;
}
.product-rating-value {
  font-weight: 600;
}
.product-rating-count {
  color: #4a5c4d;
  font-size: 0.9rem;
}
.product-rating-count::before {
  content: "|";
  margin-right: 0.45rem;
  color: #a8a69c;
}
@media (min-width: 900px) {
  .product-media {
    position: sticky;
    top: 1.5rem;
    align-self: start;
  }
}
.product-buybox h1 {
  margin: 0 0 0.75rem;
  font-size: 1.75rem;
  line-height: 1.2;
}
.product-buybox .price {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 28px;
  font-weight: 700;
  color: var(--brand-dark-green);
  margin: 0 0 0.35rem;
}
.product-buybox #variant-stock {
  margin: 0 0 1rem;
  color: #4a5c4d;
}
.product-buybox .product-description {
  margin-top: 1.75rem;
  line-height: 1.65;
}
.product-gallery {
  max-width: none;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}
.product-gallery .product-thumbs {
  grid-column: 1;
  order: 1;
}
.product-gallery .product-slides {
  grid-column: 2;
  order: 2;
  min-width: 0;
}
.product-slides .product-slide-more {
  display: none;
}
.product-gallery:not(:has(.product-thumbs)) {
  grid-template-columns: minmax(0, 1fr);
}
.product-gallery:not(:has(.product-thumbs)) .product-slides {
  grid-column: 1;
}
.product-dots {
  display: none;
}
.product-detail-image {
  width: 100%;
  max-width: none;
  max-height: none;
  height: auto;
  object-fit: contain;
  background: #f7f4eb;
  border-radius: 12px;
  margin-bottom: 0;
}
.product-thumbs {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex-wrap: nowrap;
  margin-top: 0;
}
@media (max-width: 899px) {
  .product-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.5rem;
  }
  .product-detail-image {
    aspect-ratio: 1 / 1;
    object-fit: cover;
  }
  .product-gallery {
    grid-template-columns: minmax(0, 1fr);
    position: relative;
  }
  .product-gallery .product-slides {
    grid-column: 1;
    order: 1;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    border-radius: 12px;
    overscroll-behavior-x: contain;
  }
  .product-gallery .product-slides::-webkit-scrollbar {
    display: none;
  }
  .product-slides .product-detail-image {
    flex: 0 0 100%;
    width: 100%;
    scroll-snap-align: start;
  }
  .product-slides .product-slide-more {
    display: block;
  }
  .product-gallery .product-thumbs {
    display: none;
  }
  .product-dots {
    display: flex;
    justify-content: center;
    gap: 0;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 8px;
    pointer-events: none;
  }
  .product-dot {
    pointer-events: auto;
    width: 16px;
    height: 24px;
    padding: 0;
    border: 0;
    background: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .product-dot::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brand-dark-green);
    opacity: 0.3;
    transition: opacity 0.2s, transform 0.2s;
  }
  .product-dot.is-current::before {
    opacity: 1;
    transform: scale(1.25);
  }
}
.product-layout-no-media {
  grid-template-columns: minmax(0, 1fr);
  max-width: 44rem;
}
.product-meta {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  column-gap: 32px;
  row-gap: 6px;
  align-items: baseline;
  margin: 6px 0;
  font-size: 15px;
  line-height: 20px;
  color: var(--brand-dark-green);
}
.product-meta-row {
  display: contents;
}
.product-meta-row[hidden] {
  display: none;
}
.product-meta-label {
  color: rgba(26, 57, 31, 0.64);
}
.product-meta-row a {
  color: var(--brand-dark-green);
  text-decoration: none;
}
.product-meta-row a:hover {
  text-decoration: underline;
}
.smile-points {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  margin: 0 0 1rem;
  border-radius: 8px;
  background: var(--brand-cream);
  color: var(--brand-dark-green);
  font-size: 0.9375rem;
  line-height: 1.35;
}
.smile-points-icon {
  flex: 0 0 auto;
  font-size: 1rem;
}
.smile-points a {
  color: var(--brand-dark-green);
  text-decoration: underline;
}
.smile-points a:hover {
  text-decoration: none;
}
.product-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.product-badges:not(:empty) {
  margin-bottom: 1rem;
}
.product-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.75rem;
  border-radius: 800px;
  background: var(--brand-cream);
  color: var(--brand-dark-green);
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.25rem;
}
.product-badge-strain {
  background: var(--brand-lime-light);
  cursor: help;
}
.product-badge-strain:focus-visible {
  outline: 2px solid var(--brand-dark-green);
  outline-offset: 2px;
}
.product-coa-link {
  color: var(--brand-dark-green);
  text-decoration: underline;
}
.product-coa-link:hover {
  text-decoration: none;
}
.product-assurances {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  margin: 0 0 20px;
  padding: 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--brand-dark-green);
}
.product-assurances li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.product-description + .product-assurances {
  margin-top: 24px;
}
.product-assurances svg {
  flex: none;
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.product-buybox h1 {
  color: var(--brand-dark-green);
  margin: 0.2rem 0 0.6rem;
}
.product-buybox .vendor {
  color: #6b6a63;
  font-size: 0.95rem;
  margin: 0;
}
.breadcrumb {
  margin: 0 0 1rem;
}
.breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  font-size: 0.9rem;
  color: #6b6a63;
}
.breadcrumb li + li::before {
  content: "\203a";
  margin-right: 0.5rem;
  color: #a8a69c;
}
.breadcrumb a {
  color: var(--brand-dark-green);
  text-decoration: none;
}
.breadcrumb a:hover {
  text-decoration: underline;
}
.breadcrumb [aria-current=page] {
  color: #6b6a63;
}
.trust-strip {
  background: var(--brand-cream);
  overflow: hidden;
  min-height: 56px;
  display: flex;
  align-items: center;
  margin-inline: calc(50% - 50vw);
  width: 100vw;
  max-width: 100vw;
  -webkit-mask-image:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0) 0%,
      #000 10%,
      #000 90%,
      rgba(0, 0, 0, 0) 100%);
  mask-image:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0) 0%,
      #000 10%,
      #000 90%,
      rgba(0, 0, 0, 0) 100%);
}
.trust-track {
  display: flex;
  width: max-content;
  animation: trust-scroll 30s linear infinite;
}
.trust-strip:hover .trust-track {
  animation-play-state: paused;
}
.trust-track span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 24px;
  white-space: nowrap;
  font-size: 15px;
  line-height: 20px;
  color: var(--brand-dark-green);
}
.trust-track .trust-icon {
  display: block;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
}
@media (max-width: 767px) {
  .trust-track span {
    margin: 0 8px;
  }
}
@keyframes trust-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .trust-strip {
    -webkit-mask-image: none;
    mask-image: none;
  }
  .trust-track {
    animation: none;
    width: auto;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto;
    padding: 8px 0;
  }
  .trust-track .trust-duplicate {
    display: none;
  }
}
.home-hero-banner {
  display: block;
  margin-inline: calc(50% - 50vw);
  width: 100vw;
  max-width: 100vw;
  margin-block: -1.5rem 0;
}
.home-hero-picture {
  display: block;
}
.home-hero-img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1728 / 800;
  object-fit: cover;
}
@media (min-width: 768px) {
  .home-hero-img {
    height: 706px;
  }
}
@media (min-width: 1025px) {
  .home-hero-img {
    height: 600px;
  }
}
@media (min-width: 1201px) {
  .home-hero-img {
    height: 800px;
  }
}
@media (max-width: 767px) {
  .home-hero-banner-responsive .home-hero-img {
    aspect-ratio: auto;
    object-fit: contain;
  }
}
.price-was {
  color: #8a8578;
  font-weight: 400;
  margin-left: 0.4rem;
  font-size: 0.92em;
}
#description-toggle {
  margin-top: 0.5rem;
}
.sticky-buy {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 800;
  background: var(--brand-white);
  border-top: 1px solid var(--brand-hairline);
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.07);
  padding: 0.7rem 1.5rem calc(0.7rem + env(safe-area-inset-bottom, 0px));
}
.sticky-buy-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.sticky-buy-title {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--brand-dark-green);
  margin: 0;
  font-size: 1rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1 1 auto;
  min-width: 0;
}
.sticky-buy-price {
  margin: 0;
  font-weight: 600;
  white-space: nowrap;
}
.sticky-buy .qty-stepper {
  flex: 0 0 auto;
}
.sticky-buy .primary {
  flex: 0 0 auto;
  white-space: nowrap;
}
@media (max-width: 640px) {
  .sticky-buy-title {
    display: none;
  }
  .sticky-buy {
    padding-inline: 1rem;
  }
}
body:has(.sticky-buy:not([hidden])) {
  padding-bottom: calc(74px + env(safe-area-inset-bottom, 0px) + 8px);
}
body:has(.sticky-buy:not([hidden])) #tidio-chat,
body:has(.sticky-buy:not([hidden])) #tidio-chat-iframe {
  bottom: calc(4.5rem + env(safe-area-inset-bottom, 0px)) !important;
}
.footer-legal {
  max-width: 60rem;
  margin: 0;
  padding: 0;
  font-size: 0.78rem;
  line-height: 1.5;
  color: #6b6a63;
  text-align: left;
}
.product-compliance {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--brand-hairline);
  font-size: 0.8rem;
  line-height: 1.55;
  color: #6b6a63;
}
.product-compliance p {
  margin: 0 0 0.4rem;
}
.product-compliance-heading {
  font-weight: 700;
  color: var(--brand-dark-green);
}
.product-rule {
  border: 0;
  border-top: 1px solid var(--brand-hairline);
  margin: 1.5rem 0 0;
}
.product-effects {
  margin: 24px 0 0;
  border: 0;
}
.product-effects-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: var(--font-primary);
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
  color: var(--brand-dark-green);
}
.product-effects-summary::-webkit-details-marker {
  display: none;
}
.product-effects-summary::marker {
  content: "";
}
.product-effects-chevron {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--brand-dark-green);
  transition: transform 0.3s ease;
}
.product-effects[open] > .product-effects-summary .product-effects-chevron {
  transform: rotate(180deg);
}
.product-effects[open] > .product-effects-summary {
  margin-bottom: 16px;
}
.product-effects-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.product-effect {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 8px;
  background: var(--brand-cream);
  color: var(--brand-dark-green);
  text-decoration: none;
  text-align: center;
}
@media (min-width: 768px) {
  .product-effect {
    min-width: 115px;
    box-sizing: border-box;
  }
}
.product-effect:hover,
.product-effect:focus-visible {
  background: #ece7dc;
}
.product-effect-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
.product-effect-icon svg {
  width: 40px;
  height: 40px;
  display: block;
}
.product-effect-label {
  font-family: var(--font-primary);
  font-size: 15px;
  line-height: 20px;
  font-weight: 500;
  white-space: nowrap;
}
.product-upsells {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem 3rem;
}
.upsell-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.upsell-head h2 {
  margin: 0;
}
.upsell-view-all {
  color: var(--brand-dark-green);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: underline;
  white-space: nowrap;
}
.pagination {
  margin-top: 1.5rem;
  margin-bottom: 2.5rem;
}
.pager {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}
.pager-btn {
  min-width: 38px;
  height: 38px;
  padding: 0 0.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--brand-hairline);
  border-radius: var(--radius);
  background: var(--brand-white);
  color: var(--brand-ink);
  font: inherit;
  font-size: 0.9rem;
  font-variant-numeric: tabular-nums;
}
button.pager-btn {
  cursor: pointer;
}
button.pager-btn:hover {
  background: #f2f1ec;
}
.pager-current {
  background: var(--brand-dark-green);
  border-color: var(--brand-dark-green);
  color: var(--brand-white);
  font-weight: 700;
}
.pager-gap {
  border-color: transparent;
  background: none;
  min-width: 24px;
  padding: 0;
}
.checkout-discount {
  margin-top: 1rem;
}
.checkout-discount-row {
  display: flex;
  gap: 0.5rem;
}
.checkout-discount-row input {
  flex: 1;
  min-width: 0;
  padding: 0.55rem 0.7rem;
  border: 1px solid #cfc9bb;
  border-radius: var(--radius);
  font: inherit;
}
.checkout-discount .error-banner,
.checkout-discount .notice-banner {
  margin-top: 0.5rem;
}
.cart-announcement {
  background: #568930;
  color: var(--brand-white);
  padding: 0.55rem 0.9rem;
  border-radius: 8px;
  margin: 0 0 0.9rem;
  text-align: center;
}
.cart-announcement-line {
  margin: 0;
  font-size: 1rem;
  line-height: 1.3;
  font-weight: 700;
}
.cart-drawer .cart-announcement {
  border-radius: 0;
  margin: 0 -1.25rem 0.75rem;
}
.cart-drawer .cart-announcement-line {
  font-size: 0.85rem;
}
.cart-rewards:empty {
  display: none;
}
.cart-rewards {
  margin: 1rem 0;
}
.cart-reward-message {
  margin: 0 0 0.4rem;
  font-size: 0.95rem;
  color: var(--brand-ink);
}
.cart-reward-track {
  height: 8px;
  background: var(--brand-white);
  border: 1px solid var(--brand-lime-light);
  border-radius: 9999px;
  overflow: hidden;
}
.cart-reward-bar {
  height: 100%;
  background: var(--brand-lime-light);
  border-radius: 9999px;
  transition: width 240ms ease;
}
@media (prefers-reduced-motion: reduce) {
  .cart-reward-bar {
    transition: none;
  }
}
.cart-reward-message.cart-reward-earned {
  color: var(--brand-dark-green);
}
.cart-reward-milestones {
  position: relative;
  height: 40px;
  margin-top: -9px;
}
.cart-reward-milestone {
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  width: 88px;
  text-align: center;
}
.cart-reward-dot {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 9999px;
  background: var(--brand-white);
  border: 1px solid var(--brand-lime-light);
  color: var(--brand-dark-green);
}
.cart-reward-milestone.is-earned .cart-reward-dot {
  background: var(--brand-dark-green);
  border-color: var(--brand-dark-green);
  color: var(--brand-white);
}
.cart-reward-label {
  font-size: 0.68rem;
  line-height: 1.15;
  color: var(--brand-ink);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cart-reward-milestone.is-earned .cart-reward-label {
  font-weight: 650;
  color: var(--brand-dark-green);
}
.cart-rewards {
  container-type: inline-size;
}
@container (max-width: 480px) {
  .cart-reward-milestone.is-crowded .cart-reward-label {
    display: none;
  }
}
@supports not (container-type: inline-size) {
  @media (max-width: 700px) {
    .cart-reward-milestone.is-crowded .cart-reward-label {
      display: none;
    }
  }
}
.cart-reward-milestone[style*="left:0%"] {
  transform: none;
  align-items: flex-start;
  text-align: left;
}
.cart-reward-milestone[style*="left:100%"] {
  transform: translateX(-100%);
  align-items: flex-end;
  text-align: right;
}
.checkout-upsells {
  margin-top: 1rem;
  border-top: 1px solid var(--brand-lime-light);
  padding-top: 0.75rem;
}
.checkout-upsells h3 {
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
}
.checkout-upsell {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0;
  font-size: 0.9rem;
}
.checkout-upsell-thumb {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: var(--radius);
  object-fit: contain;
  background: var(--brand-white);
  border: 1px solid #e6e2d8;
  display: block;
}
.checkout-upsell-thumb-placeholder {
  background: #f1efe9;
}
.checkout-upsell-title {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.checkout-upsell-price {
  font-weight: 700;
  color: var(--brand-dark-green);
}
.checkout-upsell-add {
  border: 1px solid var(--brand-dark-green);
  background: var(--brand-white);
  color: var(--brand-dark-green);
  border-radius: var(--radius-pill, 9999px);
  padding: 0.25rem 0.75rem;
  font: inherit;
  font-size: 0.85rem;
  cursor: pointer;
}
.checkout-upsell-add:hover {
  background: var(--brand-lime-light);
}
.home-carousel-nav {
  display: flex;
  gap: 0.5rem;
  justify-content: flex-end;
  margin-top: 0.75rem;
}
.home-carousel-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--brand-dark-green);
  background: var(--brand-white);
  color: var(--brand-dark-green);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
}
.home-carousel-btn:hover {
  background: var(--brand-lime-light);
}
.home-carousel-btn[aria-disabled=true] {
  opacity: 0.35;
  cursor: default;
}
.home-carousel-btn[aria-disabled=true]:hover {
  background: var(--brand-white);
}
.home-spotlight {
  margin-inline: calc(50% - 50vw);
  width: 100vw;
  max-width: 100vw;
  background: var(--brand-dark-green);
  color: var(--brand-cream);
  padding: 0;
  margin-block: 0 0;
}
.home-spotlight-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  max-width: 1290px;
  margin: 0 auto;
  position: relative;
}
.home-spotlight-track::-webkit-scrollbar {
  display: none;
}
.home-spotlight-track:focus-visible {
  outline: 2px solid var(--brand-lime);
  outline-offset: 4px;
}
.home-spotlight-slide {
  scroll-snap-align: start;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
  padding: 80px 20px 60px;
}
.home-spotlight-badge-row {
  margin: 0 0 20px;
}
.home-spotlight-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  background: var(--brand-lime-light);
  color: var(--brand-dark-green);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  line-height: 16px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.home-spotlight-eyebrow {
  display: inline-block;
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(245, 242, 235, 0.55);
  text-decoration: none;
}
a.home-spotlight-eyebrow:hover,
a.home-spotlight-eyebrow:focus {
  color: var(--brand-cream);
  text-decoration: underline;
}
.home-spotlight-title {
  margin: 0 0 16px;
  font-size: 64px;
  line-height: 1;
  color: var(--brand-cream);
}
.home-spotlight-title a {
  color: inherit;
  text-decoration: none;
}
.home-spotlight-title a:hover {
  text-decoration: underline;
}
.home-spotlight-tagline {
  margin: 0 0 24px;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(245, 242, 235, 0.55);
  max-width: 440px;
}
.home-spotlight-price {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 24px;
  font-size: 32px;
  font-weight: 700;
  flex-wrap: wrap;
}
.home-spotlight-price .price-was {
  color: rgba(245, 242, 235, 0.55);
  margin-left: 0;
  font-size: 16px;
  font-weight: 400;
}
.home-spotlight-save {
  background: var(--brand-lime-light);
  color: var(--brand-dark-green);
  border-radius: var(--radius-pill);
  padding: 4px 10px;
  font-size: 12px;
  line-height: 16px;
  font-weight: 700;
}
.home-spotlight-buy {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 0 0 24px;
}
.home-spotlight-buy .qty-stepper {
  height: 56px;
  min-width: 116px;
  border: 0;
  border-radius: var(--radius-pill);
  background: rgba(245, 242, 235, 0.08);
  color: var(--brand-cream);
}
.home-spotlight-buy .qty-stepper button {
  color: var(--brand-cream);
  background: transparent;
  height: 56px;
  width: 40px;
  font-size: 18px;
}
.home-spotlight-buy .qty-stepper input {
  color: var(--brand-cream);
  background: transparent;
  height: 56px;
  width: 36px;
  font-weight: 500;
  font-size: 16px;
}
.home-spotlight-add {
  flex: 1 1 220px;
  height: 56px;
  background: var(--brand-lime-light);
  color: var(--brand-dark-green);
  border: 0;
  border-radius: var(--radius-pill);
  padding: 0 24px;
  font: inherit;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}
.home-spotlight-add:hover {
  filter: brightness(1.03);
}
.home-spotlight-soldout {
  margin: 0 0 24px;
  font-weight: 700;
  color: var(--brand-lime-light);
}
.home-spotlight-details {
  display: inline-block;
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--brand-cream);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.home-spotlight-details::after {
  content: " \2192";
  text-decoration: none;
  display: inline-block;
  margin-left: 4px;
}
.home-spotlight-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
  font-size: 13px;
  color: rgba(245, 242, 235, 0.55);
}
.home-spotlight-trust li::before {
  content: "\2713  ";
  color: var(--brand-cream);
  font-weight: 700;
}
.home-spotlight-art img {
  display: block;
  width: 100%;
  max-width: 560px;
  margin-inline: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 20px;
  background: var(--brand-white);
}
.home-spotlight .home-carousel-nav {
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 0;
  padding: 0 20px 40px;
}
.home-spotlight .home-carousel-btn {
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1.5px solid rgba(245, 242, 235, 0.55);
  color: var(--brand-cream);
}
.home-spotlight .home-carousel-btn:hover {
  background: rgba(245, 242, 235, 0.08);
  border-color: var(--brand-cream);
}
.home-carousel-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}
.home-carousel-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  background: rgba(245, 242, 235, 0.55);
  transition: width 0.3s ease, background 0.3s ease;
}
.home-carousel-dot[aria-current=true] {
  width: 28px;
  border-radius: 10px;
  background: var(--brand-lime-light);
}
@media (prefers-reduced-motion: reduce) {
  .home-carousel-dot {
    transition: none;
  }
}
@media (max-width: 900px) {
  .home-spotlight-slide {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 20px 40px;
  }
  .home-spotlight-art {
    order: -1;
  }
  .home-spotlight-art img {
    max-width: 322px;
  }
  .home-spotlight-title {
    font-size: 36px;
  }
  .home-spotlight-price {
    font-size: 28px;
  }
  .home-spotlight-buy {
    flex-direction: column;
    align-items: stretch;
  }
  .home-spotlight-buy .qty-stepper {
    align-self: center;
  }
  .home-spotlight-add {
    flex: 0 0 auto;
    width: 100%;
  }
  .home-spotlight-details {
    display: block;
    text-align: center;
  }
  .home-spotlight .home-carousel-nav {
    padding-bottom: 40px;
  }
}
.home-bundle {
  margin-inline: calc(50% - 50vw);
  width: 100vw;
  max-width: 100vw;
  background: var(--brand-dark-green) url(../img/bundle-banner.jpg) center / cover no-repeat;
  color: var(--brand-white);
  padding: 80px 40px 0;
  margin-block: 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.home-bundle:not(:has(.home-bundle-art)) {
  grid-template-columns: 1fr;
}
.home-bundle:not(:has(.home-bundle-art)) .home-bundle-copy {
  justify-self: center;
}
.home-bundle > * {
  max-width: 580px;
}
.home-bundle-copy {
  justify-self: end;
  width: 100%;
  padding-bottom: 40px;
}
.home-bundle-art {
  justify-self: start;
  width: 100%;
}
.home-bundle-badge {
  display: inline-block;
  margin: 0 0 15px;
  background: var(--brand-lime-light);
  color: var(--brand-dark-green);
  border-radius: var(--radius-pill);
  padding: 6px 15px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.5;
}
.home-bundle h2 {
  margin: 0 0 20px;
  font-size: 48px;
  line-height: 1;
  color: var(--brand-white);
}
.home-bundle p {
  margin: 0 0 0.9rem;
  max-width: 500px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--brand-white);
}
.home-bundle-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 0.6rem;
  background: var(--brand-lime-light);
  color: var(--brand-dark-green);
  padding: 10px 30px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 14px;
  line-height: 28px;
  min-height: 48px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.home-bundle-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(184, 232, 107, 0.35);
}
.home-bundle-cta-arrow {
  width: 12px;
  height: 12px;
  flex: none;
}
.home-bundle-art img {
  display: block;
  width: 100%;
  height: auto;
}
@media (max-width: 900px) {
  .home-bundle {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    padding: 60px 20px 0;
    text-align: center;
  }
  .home-bundle > * {
    max-width: none;
  }
  .home-bundle-copy,
  .home-bundle-art {
    justify-self: stretch;
  }
  .home-bundle-copy {
    padding-bottom: 0;
  }
  .home-bundle h2 {
    font-size: 28px;
  }
  .home-bundle p {
    margin-inline: auto;
  }
  .home-bundle-art {
    order: 1;
  }
}
.home-brands {
  margin: 0 0 40px;
  border-radius: 12px;
  position: relative;
}
.home-brand-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  position: relative;
  border-radius: 12px;
}
.home-brand-track::-webkit-scrollbar {
  display: none;
}
.home-brand-track:focus-visible {
  outline: 2px solid var(--brand-lime);
  outline-offset: 3px;
}
.home-brand-slide {
  scroll-snap-align: start;
  display: grid;
  grid-template-columns: minmax(0, 21fr) minmax(0, 19fr);
  align-items: stretch;
  min-height: 480px;
  padding: 0;
}
.home-brand-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 80px 32px 32px;
  background: var(--brand-cream);
  color: var(--brand-dark-green);
}
.home-brand-art {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background: var(--brand-white);
}
.home-brand-art img {
  display: block;
  width: 100%;
  max-height: 416px;
  margin-inline: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.home-brand-label {
  margin: 0 0 12px;
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--brand-dark-green);
}
.home-brand-name {
  margin: 0 0 20px;
  font-size: 60px;
  line-height: 64px;
  color: var(--brand-dark-green);
}
.home-brand-about {
  margin: 0 0 24px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--brand-dark-green);
  max-width: 500px;
}
.home-brand-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 52px;
  background: var(--brand-dark-green);
  color: var(--brand-white);
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 500;
  line-height: 28px;
  text-decoration: none;
}
.home-brand-cta:hover {
  background: #245029;
}
.home-brand-cta-arrow {
  width: 20px;
  height: 20px;
  flex: none;
}
.home-brands .home-carousel-nav {
  position: absolute;
  top: 24px;
  right: calc(47.5% + 24px);
  z-index: 1;
  margin: 0;
  gap: 4px;
}
.home-brands .home-carousel-btn {
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  font-size: 1.5rem;
}
.home-brands .home-carousel-btn:hover {
  background: rgba(26, 57, 31, 0.08);
}
@media (max-width: 900px) {
  .home-brand-slide {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .home-brand-art {
    order: -1;
    padding: 0;
    background: var(--brand-cream);
  }
  .home-brand-art img {
    height: 200px;
    max-height: none;
    width: 100%;
    padding: 16px;
  }
  .home-brand-copy {
    padding: 24px;
  }
  .home-brand-label {
    margin-bottom: 8px;
    padding-right: 88px;
  }
  .home-brand-name {
    font-size: 32px;
    line-height: 36px;
    margin-bottom: 16px;
  }
  .home-brand-cta {
    display: flex;
    width: 100%;
    justify-content: center;
  }
  .home-brands .home-carousel-nav {
    top: calc(200px + 20px);
    left: auto;
    right: 20px;
    transform: none;
  }
}
.home-testimonials {
  margin: 0;
  padding: 60px 0;
}
@media (max-width: 767px) {
  .home-testimonials {
    display: none;
  }
}
.home-testimonials h2 {
  margin: 0 auto 48px;
  font-size: 48px;
  line-height: 48px;
  max-width: 480px;
  text-align: center;
  color: var(--brand-dark-green);
}
.home-testimonial-strip {
  overflow: hidden;
  margin-inline: calc(50% - 50vw);
  width: 100vw;
  max-width: 100vw;
  padding-inline: 1.5rem;
}
.home-testimonial-track {
  display: flex;
  gap: 32px;
  width: max-content;
  animation: home-testimonial-scroll 50s linear infinite;
}
.home-testimonial-strip:hover .home-testimonial-track {
  animation-play-state: paused;
}
.home-testimonial-copy {
  display: flex;
  gap: 32px;
}
.home-testimonial {
  flex: 0 0 640px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--brand-cream);
  border-radius: 16px;
  margin: 0;
  padding: 48px;
}
.home-testimonial-stars {
  display: flex;
  gap: 4px;
  color: var(--brand-lime);
}
.home-testimonial-stars svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
.home-testimonial blockquote {
  margin: 0;
  font-size: 20px;
  line-height: 24px;
  font-weight: 500;
  color: var(--brand-dark-green);
}
.home-testimonial figcaption {
  margin-top: auto;
  font-weight: 400;
  font-size: 15px;
  color: rgba(0, 0, 0, 0.6);
}
@keyframes home-testimonial-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .home-testimonial-track {
    animation: none;
    width: auto;
    flex-wrap: wrap;
  }
  .home-testimonial-copy {
    display: none;
  }
}
.home-ugc {
  margin: 0;
  padding: 30px 20px 62px;
}
.home-ugc-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}
.home-ugc-head .home-carousel-nav {
  margin-top: 0;
}
.home-ugc-eyebrow {
  margin: 0 0 0.25rem;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-dark-green);
}
.home-ugc h2 {
  margin: 0 0 50px;
  font-size: 60px;
  line-height: 64px;
  color: var(--brand-dark-green);
}
.home-ugc-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 280px;
  gap: 10px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  padding-bottom: 0.5rem;
  position: relative;
}
.home-ugc-track:focus-visible {
  outline: 2px solid var(--brand-lime);
  outline-offset: 3px;
}
.home-ugc-card {
  scroll-snap-align: start;
  border: 1px solid var(--brand-hairline);
  border-radius: 10px;
  overflow: hidden;
  background: var(--brand-cream);
}
.home-ugc-video {
  position: relative;
  aspect-ratio: 9 / 16;
  background: #11220f;
}
.home-ugc-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.home-ugc-who {
  padding: 0.75rem;
}
.home-ugc-name {
  margin: 0 0 0.2rem;
  font-weight: 700;
  font-size: 0.9rem;
}
.home-ugc-quote {
  margin: 0;
  font-size: 0.8rem;
  color: #4a5c4d;
}
@media (max-width: 1023px) {
  .home-ugc h2 {
    font-size: 48px;
    line-height: 52px;
  }
}
@media (max-width: 767px) {
  .home-ugc {
    padding: 15px 18px 25px;
  }
  .home-ugc h2 {
    margin-bottom: 12px;
    font-size: 32px;
    line-height: 36px;
  }
  .home-ugc-track {
    grid-auto-columns: 200px;
  }
}
.home-faq {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 2.5rem;
  margin: 0 0 2.5rem;
}
.home-faq:not(:has(.home-faq-art)) {
  grid-template-columns: 1fr;
}
.home-faq-art img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
}
.home-faq h2 {
  margin: 0 0 1rem;
  font-size: 24px;
}
.home-faq-item {
  border-top: 1px solid var(--brand-hairline);
}
.home-faq-item:last-of-type {
  border-bottom: 1px solid var(--brand-hairline);
}
.home-faq-item summary {
  cursor: pointer;
  padding: 0.9rem 0;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.home-faq-item summary::-webkit-details-marker {
  display: none;
}
.home-faq-item summary::after {
  content: "+";
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 1;
}
.home-faq-item[open] summary::after {
  content: "\2212";
}
.home-faq-item summary:focus-visible {
  outline: 2px solid var(--brand-lime);
  outline-offset: 2px;
}
.home-faq-item p {
  margin: 0 0 1rem;
  color: #4a5c4d;
}
.home-faq-more {
  display: inline-block;
  margin-top: 1rem;
  color: var(--brand-dark-green);
  font-weight: 600;
}
@media (max-width: 900px) {
  .home-faq {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.quantity-breaks {
  margin: 0 0 1rem;
}
.quantity-breaks-title {
  margin: 0 0 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--brand-dark-green);
}
.quantity-breaks-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
}
.quantity-break {
  width: 100%;
  display: grid;
  grid-template-columns: 3.5rem 1fr auto;
  align-items: center;
  gap: 0.75rem;
  min-height: 44px;
  padding: 0.5rem 0.85rem;
  text-align: left;
  cursor: pointer;
  background: var(--brand-white);
  color: inherit;
  font: inherit;
  border: 1px solid var(--brand-hairline);
  border-radius: var(--radius);
}
.quantity-break:hover {
  border-color: var(--brand-lime);
}
.quantity-break:focus-visible {
  outline: 2px solid var(--brand-lime);
  outline-offset: 2px;
}
.quantity-break.is-active {
  border-color: var(--brand-dark-green);
  background: var(--brand-lime-light);
}
.quantity-break-qty {
  font-weight: 700;
}
.quantity-break-unit {
  color: var(--brand-ink);
}
.quantity-break-save {
  font-weight: 600;
  color: var(--brand-dark-green);
  white-space: nowrap;
}
.quantity-breaks-note {
  margin: 0.45rem 0 0;
  font-size: 0.85rem;
  color: #4a5c4d;
}
.back-in-stock {
  margin: 0 0 1rem;
}
.back-in-stock-form {
  padding: 0.9rem 1rem;
  border: 1px solid var(--brand-hairline);
  border-radius: var(--radius);
  background: var(--brand-cream);
}
.back-in-stock-title {
  margin: 0 0 0.25rem;
  font-weight: 700;
}
.back-in-stock-label {
  display: block;
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
  color: #4a5c4d;
}
.back-in-stock-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.back-in-stock-row input[type=email] {
  flex: 1 1 12rem;
  min-width: 0;
  min-height: 44px;
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--brand-hairline);
  border-radius: var(--radius);
  font: inherit;
}
.back-in-stock-row button {
  flex: 0 0 auto;
}
.back-in-stock-note {
  margin: 0.5rem 0 0;
  font-size: 0.9rem;
  color: var(--brand-dark-green);
}
.back-in-stock-note:empty {
  display: none;
}
.purchase-options {
  display: grid;
  gap: 8px;
  margin: 0 0 14px;
}
.purchase-option {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  border: 1.5px solid #e3e3e3;
  border-radius: 10px;
  padding: 12px 14px;
  cursor: pointer;
  background: #fff;
  transition: border-color .12s ease, background-color .12s ease;
}
.purchase-option:hover {
  border-color: #c9c9c9;
}
.purchase-option[data-selected=true] {
  border-color: #1f7a3d;
  background: #f4fbf6;
}
.purchase-option input {
  margin: 3px 0 0;
  flex: 0 0 auto;
}
.purchase-option__body {
  flex: 1 1 auto;
  min-width: 0;
}
.purchase-option__head {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: baseline;
}
.purchase-option__title {
  font-weight: 650;
}
.purchase-option__price {
  font-weight: 650;
}
.purchase-option__was {
  color: #767676;
  text-decoration: line-through;
  font-weight: 400;
}
.purchase-option__save {
  font-size: .78rem;
  font-weight: 650;
  letter-spacing: .02em;
  text-transform: uppercase;
  background: #1f7a3d;
  color: #fff;
  border-radius: 999px;
  padding: 2px 8px;
}
.purchase-option__note {
  display: block;
  font-size: .86rem;
  color: #555;
  margin: 4px 0 0;
  line-height: 1.45;
}
.subscription-terms {
  border: 1.5px solid #1f7a3d;
  background: #f4fbf6;
  border-radius: 10px;
  padding: 12px 14px;
  margin: 0 0 14px;
}
.subscription-terms h3 {
  margin: 0 0 6px;
  font-size: 1rem;
}
.subscription-terms p {
  margin: 0;
  font-size: .9rem;
  line-height: 1.5;
  color: #2c2c2c;
}
.subscription-card {
  border: 1px solid #e3e3e3;
  border-radius: 10px;
  padding: 14px 16px;
  margin: 0 0 12px;
  background: #fff;
}
.subscription-card__head {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: baseline;
  justify-content: space-between;
}
.subscription-card__title {
  font-weight: 650;
  margin: 0;
}
.subscription-card__status {
  font-size: .76rem;
  font-weight: 650;
  letter-spacing: .03em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 2px 9px;
  background: #eee;
  color: #333;
}
.subscription-card__status[data-status=active] {
  background: #1f7a3d;
  color: #fff;
}
.subscription-card__status[data-status=payment_failed],
.subscription-card__status[data-status=blocked] {
  background: #a6271a;
  color: #fff;
}
.subscription-card__status[data-status=paused] {
  background: #8a6d00;
  color: #fff;
}
.subscription-card__status[data-status=cancelled] {
  background: #666;
  color: #fff;
}
.subscription-card ul {
  margin: 8px 0;
  padding-left: 1.2rem;
}
.subscription-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}
.subscription-card__actions button {
  font-size: .9rem;
}
.subscription-card__warn {
  color: #a6271a;
  font-weight: 600;
  margin: 8px 0 0;
}
.subscription-restore {
  border: 1.5px dashed #1f7a3d;
  border-radius: 10px;
  padding: 14px 16px;
  margin: 0 0 14px;
}
@media (prefers-color-scheme: dark) {
  .purchase-option {
    background: #1a1a1a;
    border-color: #333;
  }
  .purchase-option[data-selected=true] {
    background: #10241a;
    border-color: #36a35b;
  }
  .purchase-option__note {
    color: #b5b5b5;
  }
  .purchase-option__was {
    color: #9a9a9a;
  }
  .subscription-terms {
    background: #10241a;
    border-color: #36a35b;
  }
  .subscription-terms p {
    color: #ddd;
  }
  .subscription-card {
    background: #1a1a1a;
    border-color: #333;
  }
  .subscription-card__status {
    background: #2a2a2a;
    color: #ddd;
  }
}
.option-controls {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 1.25rem;
  margin: 0 0 1.5rem;
}
.option-control {
  border: 0;
  padding: 0;
  margin: 0;
  min-width: 0;
  display: block;
}
.option-control .option-name {
  display: block;
  padding: 0;
  margin: 0 0 0.6rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--brand-dark-green);
}
.option-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.option-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  padding: 10px 18px;
  box-sizing: border-box;
  background: var(--brand-cream);
  border: 1.5px solid transparent;
  border-radius: 800px;
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
  color: var(--brand-dark-green);
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}
.option-pill:hover:not(.is-selected) {
  border-color: rgba(26, 57, 31, 0.3);
}
.option-pill.is-selected {
  background: var(--brand-dark-green);
  color: var(--brand-white);
  border-color: var(--brand-dark-green);
}
.option-pill.is-sold-out {
  background: transparent;
  color: rgba(26, 57, 31, 0.4);
  border-color: rgba(26, 57, 31, 0.12);
}
.option-pill.is-sold-out::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: 50%;
  height: 1.5px;
  background: rgba(26, 57, 31, 0.3);
  transform: rotate(-8deg);
  pointer-events: none;
}
.option-pill.is-sold-out.is-selected {
  background: rgba(26, 57, 31, 0.35);
  color: var(--brand-white);
  border-color: rgba(26, 57, 31, 0.35);
}
.option-pill.is-sold-out.is-selected::after {
  background: rgba(255, 255, 255, 0.5);
}
.option-pill.is-unreachable {
  background: transparent;
  color: rgba(26, 57, 31, 0.6);
  border: 1.5px dashed rgba(26, 57, 31, 0.3);
}
.option-pill.is-unreachable:hover {
  border-color: rgba(26, 57, 31, 0.5);
}
.option-pill:has(input:focus-visible) {
  outline: 2px solid var(--brand-lime);
  outline-offset: 2px;
}
.upsell-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}
.upsell-head .upsell-view-all {
  display: inline-block;
  padding: 8px 16px;
  background: var(--brand-dark-green);
  color: var(--brand-white);
  font-size: 14px;
  font-weight: 500;
  border-radius: var(--radius-pill);
  text-decoration: none;
}
.upsell-head .upsell-view-all:hover {
  opacity: 0.9;
}
.upsell-nav-btn {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-dark-green);
  cursor: pointer;
  background: none;
  border: 0;
  padding: 0;
}
.upsell-nav-btn:hover {
  color: #245029;
}
.upsell-nav-btn:focus-visible {
  outline: 2px solid var(--brand-lime);
  outline-offset: 2px;
  border-radius: 50%;
}
.upsell-head {
  margin-bottom: 1.5rem;
  align-items: center;
}
.upsell-head h2 {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--brand-dark-green);
  font-size: 30px;
  line-height: 1.05;
  letter-spacing: 0.01em;
}
@media (min-width: 768px) {
  .upsell-head h2 {
    font-size: 48px;
  }
}
.upsell-track {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  position: relative;
  padding-bottom: 0.25rem;
}
.upsell-track::-webkit-scrollbar {
  display: none;
}
.upsell-track > .product-card {
  flex: 0 0 308px;
  width: 308px;
  scroll-snap-align: start;
}
.upsell-track > .product-card .product-thumb {
  background: var(--brand-cream);
  border-radius: 12px;
}
.upsell-track:focus-visible {
  outline: 2px solid var(--brand-lime);
  outline-offset: 3px;
}
@media (max-width: 767px) {
  .upsell-track > .product-card {
    flex-basis: 167px;
    width: 167px;
  }
}
.product-shipping {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem 3rem;
}
.product-shipping-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 1024px) {
  .product-shipping-inner {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
  }
}
.product-shipping-text {
  order: 2;
  max-width: 100%;
  color: var(--brand-dark-green);
  font-size: 15px;
  line-height: 1.5;
}
@media (min-width: 1024px) {
  .product-shipping-text {
    order: 1;
    max-width: 480px;
    margin: auto 0;
  }
}
.product-shipping-text h2 {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--brand-dark-green);
  font-size: 32px;
  line-height: 1.25;
  margin: 0 0 16px;
}
@media (min-width: 750px) {
  .product-shipping-text h2 {
    font-size: 48px;
    line-height: 1.5;
    margin-bottom: 24px;
  }
}
.product-shipping-text p {
  margin: 0 0 16px;
}
.product-shipping-text a {
  color: var(--brand-dark-green);
  text-decoration: underline;
}
.product-shipping-text a:hover {
  text-decoration: none;
  opacity: 0.7;
}
.product-shipping-text .product-shipping-disclaimer {
  font-size: 14px;
  margin: 24px 0 0;
}
.product-shipping-map {
  order: 1;
  padding: 16px;
}
@media (min-width: 750px) {
  .product-shipping-map {
    padding: 40px 64px;
  }
}
@media (min-width: 1024px) {
  .product-shipping-map {
    order: 2;
  }
}
.product-shipping-map svg {
  width: 100%;
  height: auto;
  display: block;
}
.product-faqs {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem 3rem;
}
.product-faqs .home-faq h2 {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--brand-dark-green);
  font-size: 32px;
}
.sticky-buy {
  background: var(--brand-cream);
  border-top: 0;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.08);
  padding: 12px 1.5rem calc(12px + env(safe-area-inset-bottom, 0px));
}
.sticky-buy-inner {
  max-width: 1280px;
  gap: 40px;
}
.sticky-buy-title {
  font-size: 24px;
  line-height: 24px;
  font-weight: 900;
}
.sticky-buy-price {
  font-size: 17px;
  font-weight: 500;
  line-height: 24px;
  color: var(--brand-dark-green);
}
.sticky-buy-price .price-was {
  font-size: 14px;
  color: rgba(26, 57, 31, 0.5);
}
.sticky-buy .qty-stepper {
  height: 50px;
  min-width: 132px;
  justify-content: space-between;
  border: 1px solid rgba(26, 57, 31, 0.24);
  border-radius: 800px;
  background: transparent;
}
.sticky-buy .qty-stepper button {
  width: 44px;
  height: 48px;
  color: var(--brand-dark-green);
}
.sticky-buy .qty-stepper #sticky-qty {
  min-width: 1.5rem;
  text-align: center;
  font-weight: 500;
  color: var(--brand-dark-green);
}
.sticky-buy .primary {
  height: 48px;
  padding: 0 1.6rem;
  min-width: 200px;
  font-size: 17px;
  font-weight: 500;
}
@media (min-width: 900px) {
  .sticky-buy .primary {
    width: 350px;
  }
}
@media (max-width: 640px) {
  .sticky-buy-inner {
    gap: 12px;
  }
  .sticky-buy .primary {
    flex: 1 1 auto;
    min-width: 0;
    padding: 0 1rem;
  }
  .sticky-buy .qty-stepper {
    min-width: 112px;
  }
  .sticky-buy .qty-stepper button {
    width: 38px;
  }
  .sticky-buy-price {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.15;
  }
  .sticky-buy-price .price-was {
    margin: 0;
    font-size: 12px;
  }
}
body:has(.sticky-buy:not([hidden])) .smile-launcher-frame-container {
  bottom: calc(74px + 20px + env(safe-area-inset-bottom, 0px)) !important;
}
.product-buybox .price .price-was {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 400;
  color: rgba(26, 57, 31, 0.5);
  margin: 0 12px 0 0;
}
.sticky-buy-price .price-was {
  margin: 0 8px 0 0;
}
.page {
  color: var(--brand-dark-green);
}
.page h1 {
  color: var(--brand-dark-green);
  font-size: 40px;
  line-height: 44px;
  margin: 0 0 12px;
}
.page-body {
  font-size: 17px;
  line-height: 28px;
}
.page-body h2,
.page-body h3 {
  color: var(--brand-dark-green);
}
.page-body h2 {
  font-size: 24px;
  line-height: 24px;
  margin: 32px 0 16px;
}
.page-body h2:first-child {
  margin-top: 0;
}
.page-body p {
  margin: 0 0 16px;
}
.page-body ul,
.page-body ol {
  margin: 0 0 16px;
  padding-left: 24px;
}
.page-body li {
  margin-bottom: 8px;
}
.page-body a {
  color: var(--brand-dark-green);
  text-decoration: underline;
}
.page-body a:hover {
  opacity: 0.7;
}
.page-body strong {
  font-weight: 500;
}
@media (min-width: 768px) {
  .page h1 {
    font-size: 56px;
    line-height: 56px;
    margin-bottom: 16px;
  }
  .page-body h2 {
    font-size: 32px;
    line-height: 32px;
    margin: 40px 0 24px;
  }
  .page-body h2:first-child {
    margin-top: 0;
  }
}
.page--wide h1 {
  font-size: 30px;
  line-height: 1.3;
  margin: 0 0 24px;
}
.page--wide .page-body h2 {
  font-size: 20px;
  line-height: 1.3;
  margin: 0 0 16px;
}
.page--wide .page-body h3 {
  font-size: 24px;
  line-height: 1.3;
  margin: 24px 0 16px;
}
.page--wide .page-body p {
  max-width: 900px;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .page--wide h1 {
    font-size: 48px;
  }
  .page--wide .page-body h2 {
    font-size: 24px;
  }
  .page--wide .page-body h3 {
    font-size: 32px;
  }
}
.page-body table.page-lab-table th {
  font-size: 14px;
  line-height: 28px;
  font-weight: 600;
  color: var(--brand-dark-green);
  padding: 12px 0;
  border-bottom: 1px solid rgba(26, 57, 31, 0.2);
}
.page-body table.page-lab-table td {
  font-size: 15px;
  line-height: 28px;
  color: var(--brand-dark-green);
  padding: 12px 0;
  vertical-align: middle;
  border-bottom: 1px solid rgba(26, 57, 31, 0.12);
}
.page-body table.page-lab-table tr:last-child td {
  border-bottom: 0;
}
.page-body .page-col--narrow > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.page-body .page-col--narrow > div > span {
  font-size: 15px;
  line-height: 1.3;
}
.page-body .page-col--narrow > div > span + span {
  color: rgba(26, 57, 31, 0.64);
}
.page-body .page-col--download {
  width: 120px;
  min-width: 120px;
  text-align: right;
}
.page-body a.page-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-dark-green);
  color: var(--brand-white);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.3;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}
.page-body a.page-download:hover {
  opacity: 0.9;
}
.reviews-page {
  max-width: 944px;
  margin: 0 auto;
  padding: 24px 12px;
  color: var(--brand-dark-green);
}
.reviews-page h1 {
  color: var(--brand-dark-green);
  font-size: 40px;
  line-height: 44px;
  margin: 0 0 12px;
}
.reviews-subtitle {
  font-size: 17px;
  line-height: 28px;
  margin: 0 0 16px;
}
.reviews-page #yotpo-reviews-page {
  margin-top: 32px;
}
@media (min-width: 768px) {
  .reviews-page {
    padding: 40px 32px;
  }
  .reviews-page h1 {
    font-size: 56px;
    line-height: 56px;
    margin-bottom: 16px;
  }
  .reviews-page #yotpo-reviews-page {
    margin-top: 40px;
  }
}
#yotpo-reviews-page :is(h1, h2, h3, h4, h5, h6) {
  text-transform: none;
  letter-spacing: normal;
}
.yotpo-head {
  display: none !important;
  visibility: hidden;
}
.blog-title {
  text-transform: none;
  font-size: 30px;
  line-height: 39px;
  margin: 20px 0;
  font-weight: 400;
}
@media (min-width: 750px) {
  .blog-title {
    font-size: 40px;
    line-height: 52px;
  }
}
@media (max-width: 749px) {
  .blog-title {
    margin: 40px 0;
  }
}
.article-card {
  text-align: left;
}
.article-card h2 {
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 26px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  text-align: inherit;
  margin: 13px 0 18px;
}
.article-card .article-meta {
  margin: 0;
  padding-top: 4px;
  text-align: inherit;
  font-size: 18px;
  line-height: 21.6px;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: var(--brand-heading);
}
.article-card .article-excerpt {
  margin: 12px 0 0;
  text-align: inherit;
  font-size: 17px;
  line-height: 28px;
  color: var(--brand-dark-green);
}
@media (min-width: 750px) {
  .article-card h2 {
    font-size: 24px;
    line-height: 31.2px;
    margin-top: 17px;
  }
  .blog-articles--collage > *:nth-child(3n+1) .article-excerpt,
  .blog-articles--collage > *:nth-child(3n+2):last-child .article-excerpt {
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
  }
}
.article {
  max-width: 1050px;
  padding: 0 32px;
  margin: 50px auto 0;
  box-sizing: border-box;
}
.article h1 {
  color: var(--brand-dark-green);
  font-size: 30px;
  line-height: 39px;
  margin: 0 0 18px;
}
.article .article-meta {
  margin: 0;
  font-family: var(--font-display);
  font-size: 10px;
  line-height: 12px;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: var(--brand-ink);
}
.article-share {
  margin: 30px 0 0;
  position: relative;
}
.article-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  line-height: 28px;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--brand-heading);
}
.article-share-btn:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.article-share-btn svg {
  width: 13px;
  height: 12px;
  display: block;
}
.article-share-panel {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 8px;
  padding: 12px;
  background: #f5f2eb;
  border-radius: var(--radius);
}
.article-share-panel input {
  flex: 1 1 220px;
  min-width: 0;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid var(--brand-hairline);
  border-radius: var(--radius);
  background: #fff;
  font: inherit;
}
.article-share-panel .article-share-copy {
  min-height: 44px;
  padding: 0 16px;
  border: 0;
  border-radius: var(--radius-pill);
  cursor: pointer;
  background: var(--brand-dark-green);
  color: var(--brand-white);
  font: inherit;
  font-weight: 500;
}
.article-share-status {
  flex-basis: 100%;
  font-size: 14px;
  color: var(--brand-dark-green);
}
.article-share-status:empty {
  display: none;
}
.article-body {
  margin-top: 15px;
  font-size: 17px;
  line-height: 28px;
  color: var(--brand-dark-green);
}
.article-body p {
  margin: 0 0 18px;
}
.article-body h2,
.article-body h3,
.article-body h4 {
  color: var(--brand-dark-green);
  margin: 0 0 18px;
}
.article-body h2 {
  font-size: 20px;
  line-height: 26px;
}
.article-body h3 {
  font-size: 18px;
  line-height: 24px;
}
.article-body .article-body-lead {
  font-size: 30px;
  line-height: 39px;
}
.article-body strong {
  font-weight: 700;
}
.article-body a {
  color: var(--brand-dark-green);
}
.article-back {
  margin: 50px 0 32px;
  display: flex;
  justify-content: center;
}
.article-back a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  color: var(--brand-heading);
  text-decoration: none;
}
.article-back a:hover,
.article-back a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.article-back-arrow {
  display: inline-flex;
}
.article-back-arrow svg {
  width: 20px;
  height: 20px;
  display: block;
  transform: rotate(180deg);
}
main.article-main {
  padding-bottom: 0;
}
body:has(main.article-main) .site-footer {
  margin-top: 0;
}
@media (min-width: 750px) {
  .article h1 {
    font-size: 40px;
    line-height: 52px;
  }
  .article-body h2 {
    font-size: 24px;
    line-height: 31px;
  }
  .article-body h3 {
    font-size: 20px;
    line-height: 26px;
  }
  .article-body .article-body-lead {
    font-size: 40px;
    line-height: 52px;
  }
}
@media (max-width: 749px) {
  .article {
    padding: 0;
    margin: 44px -12px 0;
  }
  .article-hero-container {
    margin-left: -24px;
    margin-right: -24px;
  }
  .article-hero {
    height: 330px;
    border-radius: 0;
  }
}
.auth-page {
  max-width: 380px;
  margin: 0 auto;
  padding: 48px 16px 64px;
}
.auth-page h1 {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.3;
  text-transform: none;
  letter-spacing: 0;
  color: var(--brand-heading);
  margin: 0 0 4px;
}
.auth-subline {
  margin: 0 0 24px;
  font-size: 14px;
  color: #6b6b6b;
}
.auth-page form.checkout-form {
  justify-self: auto;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}
.auth-page .auth-links {
  margin: 20px 0 0;
  font-size: 14px;
}
.auth-page .auth-links a {
  color: var(--brand-dark-green);
}
.auth-page .migrated-note {
  max-width: none;
  margin-top: 20px;
  font-size: 14px;
}
.auth-page .migrated-note a {
  color: var(--brand-dark-green);
}
.auth-page .error-banner,
.auth-page .notice-banner {
  margin: 0 0 16px;
}
.auth-page .auth-hint {
  margin: 0 0 12px;
  font-size: 14px;
  color: #6b6b6b;
}
.auth-page .auth-or {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0;
  font-size: 13px;
  color: #6b6b6b;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.auth-page .auth-or::before,
.auth-page .auth-or::after {
  content: "";
  flex: 1;
  border-top: 1px solid var(--p-border, #ddd);
}
.auth-page .auth-alt {
  width: 100%;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid var(--brand-dark-green);
  border-radius: 9999px;
  background: #fff;
  color: var(--brand-dark-green);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}
.auth-page .auth-alt[aria-expanded=true] {
  margin-bottom: 16px;
}
.auth-page #code-email[readonly] {
  background: #f5f2eb;
  color: #444;
}
.mobile-drawer-account {
  padding-bottom: 16px;
}
.footer-column a {
  display: block;
  padding: 8px 0;
  font-size: 15px;
  line-height: 20px;
}
.footer-column li {
  margin-bottom: 8px;
}
.footer-column.footer-reach a {
  display: flex;
}
.footer-column.footer-reach li {
  margin-bottom: 0;
}
@media (max-width: 600px) {
  .footer-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
  }
  .footer-newsletter,
  .footer-reach {
    grid-column: 1 / -1;
  }
}
.account-page form.checkout-form {
  justify-self: auto;
  width: 100%;
  max-width: 420px;
  margin: 0;
  padding: 0;
}
.account-page .auth-hint {
  margin: 0;
  font-size: 14px;
  color: #444;
}
.subscription-card__actions button,
.subscription-restore > button {
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--brand-dark-green);
  border-radius: var(--radius-pill);
  background: #fff;
  color: var(--brand-dark-green);
  font: inherit;
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
}
.subscription-card__actions button:hover:not(:disabled),
.subscription-restore > button:hover:not(:disabled) {
  background: #f4fbf6;
}
.subscription-card__actions button:disabled {
  opacity: .5;
  cursor: not-allowed;
}
.subscription-panel {
  display: grid;
  gap: .75rem;
  max-width: 420px;
  margin-top: 12px;
  padding: 12px 14px;
  border: 1px solid var(--brand-lime-light);
  border-radius: var(--radius);
  background: #f8fbf3;
}
.subscription-panel__question {
  margin: 0;
  font-weight: 600;
  line-height: 1.45;
}
.subscription-panel input,
.subscription-panel select {
  padding: .65rem;
  border-radius: var(--radius);
  border: 1px solid var(--brand-lime-light);
  background: #fff;
  min-height: 44px;
  font: inherit;
  width: 100%;
  box-sizing: border-box;
}
.subscription-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.subscription-panel__actions button {
  min-height: 44px;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}
.subscription-panel__actions button[data-close] {
  padding: 0 16px;
  border: 1px solid var(--brand-dark-green);
  border-radius: var(--radius-pill);
  background: #fff;
  color: var(--brand-dark-green);
}
.subscription-panel__actions button:disabled {
  opacity: .5;
  cursor: not-allowed;
}
.subscription-card__outcome,
.form-outcome {
  margin: 10px 0 0;
  padding: 10px 12px;
  border-radius: var(--radius);
  font-weight: 600;
  line-height: 1.45;
}
.subscription-card__outcome[data-ok=true],
.form-outcome[data-ok=true] {
  background: var(--brand-lime-light);
  color: var(--brand-dark-green);
}
.subscription-card__outcome[data-ok=false],
.form-outcome[data-ok=false] {
  background: #fdecea;
  color: #a41c1c;
}
.subscription-card__outcome:focus,
.form-outcome:focus {
  outline: none;
}
.account-page form.checkout-form .form-outcome {
  margin: 0;
}
@media (prefers-color-scheme: dark) {
  .subscription-card__actions button,
  .subscription-restore > button,
  .subscription-panel__actions button[data-close] {
    background: #1a1a1a;
    color: #ddf3b5;
    border-color: #ddf3b5;
  }
  .subscription-panel {
    background: #10241a;
    border-color: #36a35b;
  }
  .subscription-panel input,
  .subscription-panel select {
    background: #1a1a1a;
    color: #eee;
    border-color: #333;
  }
}
.auth-page {
  padding-bottom: 128px;
}
main.home-page {
  max-width: 1290px;
  padding-inline: 0;
}
@media (max-width: 767px) {
  main.home-page {
    padding-inline: 12px;
  }
}
@media (max-width: 767px) {
  .home-hero-banner-responsive .home-hero-img {
    height: 706px;
    aspect-ratio: auto;
    object-fit: contain;
    background: #071409;
  }
}
@media (max-width: 599px) {
  .home-hero-banner-responsive .home-hero-img {
    height: 506px;
  }
}
.home-page .home-faq {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 16px;
  margin: 0 0 48px;
  align-items: start;
}
.home-page .home-faq:not(:has(.home-faq-art)) {
  grid-template-columns: 1fr;
}
.home-page .home-faq-art img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
}
.home-page .home-faq-body {
  background: var(--brand-cream);
  border-radius: 16px;
  padding: 40px;
  color: var(--brand-dark-green);
}
.home-page .home-faq h2 {
  margin: 0 0 24px;
  font-size: 48px;
  line-height: 48px;
  color: var(--brand-dark-green);
}
.home-page .home-faq-item {
  border-top: 0;
  border-bottom: 1px solid rgba(26, 57, 31, 0.12);
}
.home-page .home-faq-item:last-of-type {
  border-bottom: 0;
}
.home-page .home-faq-item summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  font-size: 20px;
  line-height: 24px;
  font-weight: 500;
  color: var(--brand-dark-green);
}
.home-page .home-faq-item summary::after {
  content: "";
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  margin: 6px 4px 0 0;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  font-size: 0;
  line-height: 0;
}
.home-page .home-faq-item[open] summary::after {
  content: "";
  transform: rotate(-135deg);
  margin-top: 10px;
}
.home-page .home-faq-item p {
  margin: 0;
  padding-bottom: 16px;
  font-size: 15px;
  line-height: 24px;
  color: var(--brand-dark-green);
}
@media (max-width: 1023px) {
  .home-page .home-faq {
    grid-template-columns: 1fr;
  }
  .home-page .home-faq-art img {
    height: 500px;
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .home-page .home-faq {
    margin-bottom: 32px;
  }
  .home-page .home-faq-art img {
    height: 250px;
  }
  .home-page .home-faq-body {
    padding: 24px;
  }
  .home-page .home-faq h2 {
    font-size: 40px;
    line-height: 44px;
    margin-bottom: 16px;
  }
  .home-page .home-faq-item summary {
    font-size: 17px;
    line-height: 28px;
  }
  .home-page .home-faq-item summary::after {
    margin-top: 8px;
  }
  .home-page .home-faq-item[open] summary::after {
    margin-top: 12px;
  }
  .home-page .home-faq-art picture {
    display: block;
  }
  .home-page .home-faq-art picture img {
    object-fit: contain;
    object-position: center;
  }
}
@media (max-width: 767px) {
  .home-tiles {
    padding: 32px 0;
  }
  .home-tiles h2,
  .home-row-head h2 {
    font-size: 30px;
    line-height: 32px;
  }
  .home-tiles-head,
  .home-row-head {
    margin-bottom: 24px;
  }
  .home-row {
    margin: 24px 0 48px;
  }
  .home-row-more {
    display: none;
  }
  .home-ugc-head {
    flex-wrap: nowrap;
    align-items: flex-end;
    gap: 16px;
    margin-bottom: 20px;
  }
  .home-ugc-head > div {
    flex: 1 1 auto;
    min-width: 0;
  }
  .home-ugc-head .home-carousel-nav {
    flex: none;
    margin: 0;
  }
}
.home-spotlight-price strong {
  font-weight: 700;
}
.footer-newsletter h2 {
  font-size: 48px;
  line-height: 48px;
  max-width: 624px;
}
@media (max-width: 600px) {
  .footer-newsletter h2 {
    font-size: 32px;
    line-height: 32px;
  }
}
.megamenu {
  left: auto;
  right: auto;
  top: calc(100% - 8px);
  width: 280px;
  min-width: 280px;
  border-top: 0;
  border-radius: 12px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}
#brands-menu.megamenu {
  width: 410px;
}
.megamenu-inner {
  display: block;
  max-width: none;
  padding: 24px;
}
.megamenu-inner-brands {
  padding: 32px;
}
.megamenu-heading {
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 32px;
  font-weight: 900;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--brand-dark-green);
}
.megamenu-column li + li {
  margin-top: 8px;
}
header.site-header .megamenu-column a {
  display: block;
  padding: 8px 0;
  font-size: 17px;
  line-height: 28px;
  font-weight: 400;
  color: var(--brand-dark-green);
}
header.site-header .megamenu-column a:hover {
  color: var(--brand-dark-green);
  text-decoration: underline;
}
.megamenu-inner-brands .megamenu-column ul {
  display: grid;
  grid-template-columns: repeat(2, 167px);
  grid-template-rows: repeat(8, auto);
  grid-auto-flow: column;
  column-gap: 12px;
  row-gap: 8px;
}
.megamenu-inner-brands .megamenu-column li + li {
  margin-top: 0;
}
.mobile-drawer {
  width: min(100vw, 480px);
  box-shadow: none;
}
.mobile-drawer-body {
  padding: 0 12px 2rem;
}
.mobile-drawer-section {
  padding: 24px 0;
}
.mobile-drawer-title {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 32px;
  font-weight: 900;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--brand-dark-green);
}
.mobile-drawer-tiles {
  margin-top: 0;
  gap: 8px;
}
.mobile-drawer-pills {
  margin-top: 0;
}
.mobile-drawer-brands {
  margin: 0;
  gap: 0 12px;
  grid-template-rows: repeat(5, auto);
  grid-auto-flow: column;
}
.mobile-drawer-links {
  margin: 0;
  gap: 0;
}
header.site-header .mobile-drawer-brands a,
header.site-header .mobile-drawer-links a {
  display: block;
  padding: 8px 0;
  font-size: 17px;
  line-height: 28px;
  color: var(--brand-dark-green);
}
header.site-header .mobile-drawer-all {
  display: block;
  margin-top: 24px;
  padding: 12px 16px;
  border-radius: var(--radius-pill);
  background: var(--brand-dark-green);
  color: var(--brand-white);
  font-size: 16px;
  line-height: 28px;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
}
header.site-header .mobile-drawer-signin {
  margin-top: 0;
  padding: 12px 16px;
  font-size: 16px;
  line-height: 28px;
  font-weight: 500;
}
.mobile-drawer-foot {
  background: var(--brand-cream);
  margin: 0 -12px;
  padding: 32px 12px 96px;
  border-bottom: 0;
}
.mobile-drawer-newsletter-title {
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 32px;
  font-weight: 900;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--brand-dark-green);
  text-align: center;
}
.mobile-drawer-newsletter-field {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 6px 6px 16px;
  border: 1px solid rgba(26, 57, 31, 0.3);
  border-radius: var(--radius-pill);
  background: var(--brand-white);
}
.mobile-drawer-newsletter-field input {
  flex: 1 1 auto;
  min-width: 0;
  border: 0;
  background: none;
  font: inherit;
  font-size: 16px;
  height: 38px;
  color: var(--brand-ink);
  outline: none;
}
.mobile-drawer-newsletter-field button {
  flex: none;
  height: 40px;
  padding: 0 16px;
  border: 0;
  border-radius: var(--radius-pill);
  background: var(--brand-dark-green);
  color: var(--brand-white);
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}
.mobile-drawer-newsletter-field:focus-within {
  border-color: var(--brand-dark-green);
}
.mobile-drawer-newsletter-status {
  margin: 8px 0 0;
  min-height: 1.2em;
  font-size: 14px;
  color: var(--brand-dark-green);
}
.mobile-drawer-reach {
  margin-top: 32px;
}
.mobile-drawer-reach .mobile-drawer-title {
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 12px;
}
.mobile-drawer-reach-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 4px;
}
header.site-header .mobile-drawer-reach-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 15px;
  line-height: 20px;
  color: var(--brand-dark-green);
}
.mobile-drawer-reach-links svg {
  flex: none;
}
main.catalogue-main {
  max-width: 1290px;
  padding: 0 12px 3rem;
}
main.catalogue-main h1.search-heading {
  margin-top: 24px;
}
@media (min-width: 768px) {
  main.catalogue-main h1.search-heading {
    margin-top: 48px;
  }
}
main.catalogue-main h1.brand-index-title {
  margin: 24px 0 24px;
  font-size: 30px;
  line-height: 32px;
  font-weight: 900;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--brand-dark-green);
}
@media (min-width: 768px) {
  main.catalogue-main h1.brand-index-title {
    margin-top: 48px;
    font-size: 48px;
    line-height: 48px;
  }
}
main.catalogue-main .brand-index {
  padding-top: 0;
}
main.catalogue-main .brand-index .home-tile-label {
  overflow-wrap: anywhere;
}
main.product-page {
  max-width: 1290px;
  padding: 0 16px 3rem;
}
main.product-page .breadcrumb {
  margin: 0;
  padding: 20px 0;
}
.product-buybox h1 {
  font-size: 30px;
  line-height: 32px;
  letter-spacing: normal;
  margin: 4px 0 16px;
}
@media (min-width: 768px) {
  .product-buybox h1 {
    font-size: 48px;
    line-height: 48px;
  }
}
.product-description-html {
  white-space: normal;
}
.product-buybox .product-description {
  font-size: 17px;
  line-height: 28px;
  color: var(--brand-dark-green);
}
.product-buybox .product-description,
.product-buybox .product-description-short {
  max-width: none;
}
.product-buybox .product-description-html p {
  margin: 0;
}
.product-buybox .product-description-html ul,
.product-buybox .product-description-html ol {
  margin: 0;
  padding-left: 1.25em;
}
.product-description.is-collapsed {
  display: none;
}
.product-meta-row .product-coa-link {
  text-decoration: underline;
}
.product-meta-row .product-coa-link:hover {
  text-decoration: none;
}
.product-buybox #variant-stock:empty {
  display: none;
}
.stars-fractional {
  position: relative;
  display: inline-block;
  white-space: nowrap;
  line-height: 1;
}
.stars-fractional .stars-track {
  display: inline-block;
  white-space: nowrap;
}
.stars-fractional .stars-fill {
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  white-space: nowrap;
}
.product-upsells {
  max-width: 1290px;
  padding: 0 12px 3rem;
}
@media (min-width: 1024px) {
  .product-upsells {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  .upsell-head {
    flex-wrap: nowrap;
  }
  .upsell-head .upsell-view-all {
    display: none;
  }
}
body.cart-drawer-open #smile-ui-container,
body.drawer-open #smile-ui-container,
body.search-open #smile-ui-container,
body.cart-drawer-open .smile-launcher-frame-container,
body.drawer-open .smile-launcher-frame-container,
body.search-open .smile-launcher-frame-container,
body.cart-drawer-open [class*=kl-teaser-],
body.drawer-open [class*=kl-teaser-],
body.search-open [class*=kl-teaser-],
body.cart-drawer-open #tidio-chat,
body.drawer-open #tidio-chat,
body.search-open #tidio-chat,
body.cart-drawer-open #tidio-chat-iframe,
body.drawer-open #tidio-chat-iframe,
body.search-open #tidio-chat-iframe {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}
body.cart-drawer-open #smile-ui-container *,
body.drawer-open #smile-ui-container *,
body.search-open #smile-ui-container *,
body.cart-drawer-open [class*=kl-teaser-] *,
body.drawer-open [class*=kl-teaser-] *,
body.search-open [class*=kl-teaser-] *,
body.cart-drawer-open #tidio-chat *,
body.drawer-open #tidio-chat *,
body.search-open #tidio-chat * {
  visibility: hidden !important;
  pointer-events: none !important;
}
body:has(main.auth-page) #smile-ui-container,
body:has(main.auth-page) .smile-launcher-frame-container,
body:has(main.auth-page) [class*=kl-teaser-],
body:has(main.auth-page) #tidio-chat,
body:has(main.auth-page) #tidio-chat-iframe {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}
body:has(main.auth-page) #smile-ui-container *,
body:has(main.auth-page) [class*=kl-teaser-] *,
body:has(main.auth-page) #tidio-chat * {
  visibility: hidden !important;
  pointer-events: none !important;
}
.cart-drawer-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 50%;
  background: #f2f1ec;
  font-size: 1.5rem;
}
.cart-drawer-close:hover,
.cart-drawer-close:focus-visible {
  background: #e6e4dc;
}
.cart-drawer-remove {
  padding: 10px;
  margin: -10px -10px 0 0;
}
.cart-drawer-qty button {
  width: 40px;
  height: 40px;
  font-size: 1.1rem;
}
.cart-drawer-qty span {
  min-width: 36px;
  font-size: 1rem;
}
.cart-drawer-upsell-add {
  min-height: 40px;
  padding: 0.55rem 1.1rem;
  font-size: 0.9rem;
  border-radius: var(--radius-pill);
}
.cart-drawer-viewcart {
  padding: 0.7rem 1rem;
  min-height: 44px;
  box-sizing: border-box;
  margin-top: 0.4rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cart-drawer-checkout,
.cart-drawer-continue {
  min-height: 52px;
  font-size: 1.05rem;
  border-radius: var(--radius-pill);
}
#cart-drawer-items .cart-drawer-line:last-child {
  border-bottom: 0;
}
.cart-drawer-upsells {
  margin-top: 0.25rem;
}
.cart-drawer.is-empty .cart-drawer-body {
  display: flex;
  flex-direction: column;
}
.cart-drawer.is-empty #cart-drawer-items {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}
.cart-drawer.is-empty .cart-drawer-empty {
  margin: auto 0;
  padding: 2rem 0;
  text-align: center;
  font-size: 1.15rem;
  color: var(--brand-ink);
}
.cart-drawer.is-empty .cart-drawer-foot {
  border-top: 0;
}
.cart-drawer-line-variant,
.cart-line-variant {
  margin: 0.15rem 0 0;
  color: #4a5c4d;
  font-size: 0.85rem;
}
.cart-drawer-line-gift .cart-drawer-line-foot {
  justify-content: flex-start;
}
.cart-drawer-line-gift .cart-drawer-line-foot .cart-drawer-code {
  margin-left: 0;
}
.cart-line {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.25rem 1rem;
  align-items: start;
  padding: 1rem 0;
  border-bottom: 1px solid var(--brand-lime-light);
}
.cart-line-thumb {
  width: 96px;
  height: 96px;
  object-fit: contain;
  border-radius: 8px;
  border: 1px solid #efeadf;
  background: var(--brand-white);
  display: block;
}
.cart-line-thumb-empty {
  background: #f4f2ec;
}
.cart-line-link {
  color: inherit;
  text-decoration: none;
}
.cart-line-link:hover {
  text-decoration: underline;
}
.cart-line-thumb-link {
  display: block;
}
.cart-line-main {
  min-width: 0;
}
.cart-line-title {
  margin: 0;
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.3;
  overflow-wrap: anywhere;
}
.cart-line-price {
  margin: 0.35rem 0 0;
  font-size: 1.05rem;
  color: var(--brand-ink);
}
.cart-line-each {
  color: #4a5c4d;
  font-size: 0.85rem;
}
.cart-line-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem 1rem;
  margin-top: 0.75rem;
}
.cart-qty {
  display: inline-flex;
  align-items: center;
  gap: 0;
  margin: 0;
  border: 1px solid #cfc9bb;
  border-radius: var(--radius);
  background: var(--brand-white);
}
.cart-qty button {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 0;
  background: var(--brand-white);
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
  padding: 0;
}
.cart-qty span {
  min-width: 36px;
  text-align: center;
  font-size: 1rem;
}
.cart-line-remove {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 40px;
  padding: 0 0.6rem;
  margin-left: auto;
  background: none;
  border: 0;
  border-radius: var(--radius);
  color: var(--brand-dark-green);
  font: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}
.cart-line-remove:hover,
.cart-line-remove:focus-visible {
  background: var(--brand-lime-light);
  text-decoration: none;
}
.cart-line-gift .cart-line-foot {
  margin-top: 0.5rem;
}
@media (max-width: 480px) {
  .cart-line-thumb {
    width: 72px;
    height: 72px;
  }
  .cart-line-title,
  .cart-line-price {
    font-size: 1rem;
  }
}
.cart-discount-row {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
  max-width: 420px;
}
.cart-discount-row input {
  flex: 1;
  min-width: 0;
  min-height: 44px;
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-pill);
  border: 1px solid #cfc9bb;
  font: inherit;
  font-size: 1rem;
}
.cart-apply-btn {
  min-height: 44px;
  padding: 0 1.2rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--brand-dark-green);
  background: var(--brand-white);
  color: var(--brand-dark-green);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}
.cart-apply-btn:hover {
  background: var(--brand-lime-light);
}
.upsell-card {
  display: flex;
  flex-direction: column;
}
.upsell-card > a {
  flex: 1 1 auto;
}
.add-upsell-btn {
  display: block;
  width: 100%;
  min-height: 44px;
  margin-top: 0.6rem;
  padding: 0.6rem 0.75rem;
  background: var(--brand-dark-green);
  color: var(--brand-white);
  border: 0;
  border-radius: var(--radius-pill);
  font: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
}
.add-upsell-btn:hover {
  background: #245029;
}
.cart-row .cart-row-tag {
  vertical-align: middle;
}
.footer-column h2 {
  font-size: 24px;
  line-height: 24px;
  margin-bottom: 20px;
}
@media (max-width: 600px) {
  .footer-newsletter h2 {
    text-align: center;
    max-width: none;
  }
}
.header-actions .header-adopted {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 10px;
  border-radius: var(--radius-pill);
  text-decoration: none;
}
.header-actions .header-adopted:hover {
  background: rgba(26, 57, 31, 0.08);
}
@media (max-width: 374px) {
  .header-actions .header-adopted {
    padding: 0 6px;
    margin: 0 -6px;
  }
}
@media (max-width: 1023px) {
  .home-page .home-faq-art img {
    object-position: top;
  }
}
@media (max-width: 479px) {
  .upsell-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  }
}
.cart-line-foot {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  margin-top: 0.75rem;
}
.cart-line-qtyrow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  min-width: 0;
}
.cart-line-remove {
  flex: none;
  margin-left: auto;
}
@media (max-width: 359px) {
  .cart-line-foot {
    flex-wrap: wrap;
  }
  .cart-line-remove {
    margin-left: 0;
  }
}
#totals .cart-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-top: 0.75rem;
  padding: 0.5rem 0 0;
  font-size: 1.25rem;
  font-weight: 700;
  text-align: left;
}
#totals .cart-total > strong {
  white-space: nowrap;
  flex: none;
}
#totals .cart-total-note {
  margin: 0.35rem 0 0;
  color: #4a5c4d;
  font-size: 0.9rem;
}
#totals .cart-row > span:first-child {
  min-width: 0;
}
#totals .cart-row > span:last-child {
  white-space: nowrap;
  flex: none;
  margin-left: 1rem;
}
.cart-checkout-row {
  margin: 1rem 0 0;
}
.cart-checkout-row > a {
  display: block;
  text-decoration: none;
}
#checkout-btn {
  display: block;
  width: 100%;
  min-height: 52px;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 0.75rem 1rem;
}
.cart-drawer-total > span:first-child {
  min-width: 0;
}
.cart-drawer-total > span:last-child,
.cart-drawer-total > strong {
  white-space: nowrap;
  flex: none;
  margin-left: 1rem;
}
.product-shipping {
  max-width: 1280px;
  padding: 0 24px 3rem;
}
@media (max-width: 749px) {
  .product-shipping {
    padding: 0 16px 3rem;
  }
}
.product-faqs {
  max-width: 1290px;
  margin: 0 auto;
  padding: 0 12px 3rem;
}
@media (min-width: 1024px) {
  .product-faqs {
    padding-left: 0;
    padding-right: 0;
  }
}
.product-faqs .home-faq {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 16px;
  margin: 0;
  align-items: start;
}
.product-faqs .home-faq:not(:has(.home-faq-art)) {
  grid-template-columns: 1fr;
}
.product-faqs .home-faq-art img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
}
.product-faqs .home-faq-body {
  background: var(--brand-cream);
  border-radius: 16px;
  padding: 40px;
  color: var(--brand-dark-green);
}
.product-faqs .home-faq h2 {
  margin: 0 0 24px;
  font-size: 48px;
  line-height: 48px;
  color: var(--brand-dark-green);
}
.product-faqs .home-faq-item {
  border-top: 0;
  border-bottom: 1px solid rgba(26, 57, 31, 0.12);
}
.product-faqs .home-faq-item:last-of-type {
  border-bottom: 0;
}
.product-faqs .home-faq-item summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  font-size: 20px;
  line-height: 24px;
  font-weight: 500;
  color: var(--brand-dark-green);
}
.product-faqs .home-faq-item summary::after {
  content: "";
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  margin: 6px 4px 0 0;
  border-right: 2px solid var(--brand-dark-green);
  border-bottom: 2px solid var(--brand-dark-green);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  font-size: 0;
  line-height: 0;
}
.product-faqs .home-faq-item[open] summary::after {
  content: "";
  transform: rotate(-135deg);
  margin-top: 10px;
}
.product-faqs .home-faq-item p {
  margin: 0;
  padding-bottom: 16px;
  font-size: 15px;
  line-height: 24px;
  color: var(--brand-dark-green);
}
@media (max-width: 1023px) {
  .product-faqs .home-faq {
    grid-template-columns: 1fr;
  }
  .product-faqs .home-faq-art img {
    height: 500px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .product-faqs .home-faq-art img {
    height: 250px;
  }
  .product-faqs .home-faq-body {
    padding: 24px;
  }
  .product-faqs .home-faq h2 {
    font-size: 40px;
    line-height: 44px;
    margin-bottom: 16px;
  }
  .product-faqs .home-faq-item summary {
    font-size: 17px;
    line-height: 28px;
  }
  .product-faqs .home-faq-item summary::after {
    margin-top: 8px;
  }
  .product-faqs .home-faq-item[open] summary::after {
    margin-top: 12px;
  }
}
.product-buybox .product-description-html :is(h1, h2, h3, h4, h5, h6) {
  font-family: var(--font-primary);
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
  text-transform: none;
  letter-spacing: normal;
  color: var(--brand-heading);
  margin: 15px 0;
}
.product-buybox .product-description-html ul,
.product-buybox .product-description-html ol {
  margin: 0 0 15px 20px;
  padding: 0;
}
.product-buybox .product-description-html li {
  margin: 0;
  padding: 0;
}
.product-buybox .product-description-short {
  font-size: 15px;
  line-height: 20px;
  font-weight: 500;
  margin: 0 0 8px;
  color: var(--brand-dark-green);
}
.product-buybox #description-toggle {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  margin: 0 0 20px;
  padding: 10px 0;
  font-size: 13px;
  line-height: 16px;
  font-weight: 500;
  text-underline-offset: 2px;
}
.stars {
  color: var(--brand-lime);
}
.checkout-discount-applied {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.checkout-discount-remove {
  min-height: 36px;
  padding: 0 0.9rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--brand-dark-green);
  background: var(--brand-white);
  color: var(--brand-dark-green);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
}
.checkout-discount-remove:hover,
.checkout-discount-remove:focus-visible {
  background: var(--brand-lime-light);
}
.checkout-discount-row input,
.checkout-discount-row button {
  min-height: 40px;
}
.checkout-discount-row button {
  padding: 0 1.1rem;
  border-radius: var(--radius);
  border: 1px solid var(--brand-dark-green);
  background: var(--brand-white);
  color: var(--brand-dark-green);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}
.checkout-discount-row button:hover,
.checkout-discount-row button:focus-visible {
  background: var(--brand-lime-light);
}
.summary-chip {
  display: inline-block;
  margin-left: 0.35rem;
  padding: 0.05rem 0.4rem;
  vertical-align: middle;
  background: var(--brand-lime-light);
  color: var(--brand-dark-green);
  border-radius: 9999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.summary-line-tag .summary-chip {
  margin-left: 0;
}
.summary-thumb-gift img {
  background: var(--brand-white);
}
.order-totals {
  max-width: none;
  margin-top: 1rem;
}
.order-totals .cart-total {
  padding: 0.75rem 0 0;
}
.order-totals .cart-row > span:first-child {
  min-width: 0;
}
.order-totals .cart-row > span:last-child {
  white-space: nowrap;
  flex: none;
  margin-left: 1rem;
}
.order-items .cart-row > span:last-child {
  white-space: nowrap;
  padding-left: 1rem;
}
.order-item-note {
  display: block;
  font-size: 0.85rem;
  color: #4a5c4d;
}
.order-still-to-come {
  margin: 0 0 1.5rem;
}
.order-continue {
  margin: 1.5rem 0 0;
}
.order-shipments {
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
}
.order-shipment {
  padding: 0.9rem 1rem;
  border: 1px solid #d9d4c7;
  border-radius: var(--radius);
  background: var(--brand-white);
}
.order-shipment h3 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
  font-family: inherit;
  letter-spacing: 0;
  text-transform: none;
}
.order-shipment p {
  margin: 0.15rem 0;
  line-height: 1.5;
  overflow-wrap: anywhere;
}
.order-shipment a {
  color: var(--brand-dark-green);
  font-weight: 600;
}
.order-shipment-contents {
  color: #4a5c4d;
  font-size: 0.95rem;
}
.order-history-parcels {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.95rem;
  color: #4a5c4d;
}
.order-history-parcels > span {
  display: block;
}
.order-history-parcels a {
  color: var(--brand-dark-green);
  font-weight: 600;
}
#orders .cart-row {
  flex-wrap: wrap;
  column-gap: 1rem;
  row-gap: 0.25rem;
  align-items: baseline;
}
#orders .cart-row > span:last-child {
  margin-left: auto;
  white-space: nowrap;
}
body:has(main.auth-page) [data-kl-scroll-locking-modal],
body:has(main.auth-page) [role=dialog][aria-modal]:has(form.klaviyo-form) {
  display: none !important;
}
body.klaviyo-prevent-body-scrolling:has(main.auth-page) {
  overflow: auto !important;
  position: static !important;
}
main.catalogue-main:has(.search-empty),
main.catalogue-main:has(.search-no-results) {
  padding-bottom: 0;
}
main.catalogue-main:has(.search-empty) .search-empty {
  padding-bottom: 96px;
}
main.catalogue-main .search-no-results {
  padding-bottom: 96px;
}
@media (max-width: 767px) {
  main.catalogue-main:has(.search-empty) .search-empty {
    padding-bottom: 72px;
  }
  main.catalogue-main .search-no-results {
    padding-bottom: 72px;
  }
}
main.catalogue-main:has(.grid-empty) {
  padding-bottom: 0;
}
main.catalogue-main:has(.grid-empty) .pagination {
  margin-top: 0;
}
body:has(main.catalogue-main .grid-empty) .site-footer {
  margin-top: 0;
}
.checkout-upsell-add {
  min-height: 40px;
  padding: 0 1.1rem;
}
.pager-btn {
  min-width: 40px;
  height: 40px;
}
body:has(.sticky-buy:not([hidden])) [class*=kl-teaser-] {
  bottom: calc(74px + env(safe-area-inset-bottom, 0px)) !important;
}
.cart-drawer-upsell-size,
.checkout-upsell-size {
  display: block;
  margin-top: 0.35rem;
  max-width: 100%;
}
.cart-drawer-upsell-size select,
.checkout-upsell-size select,
.upsell-card-size select {
  min-height: 40px;
  padding: 0.35rem 0.6rem;
  box-sizing: border-box;
  font: inherit;
  font-size: 0.95rem;
  color: var(--brand-ink);
  border: 1px solid #cfd6c9;
  border-radius: var(--radius);
  background: var(--brand-white);
}
.cart-drawer-upsell-size select,
.checkout-upsell-size select {
  width: 100%;
  max-width: 11rem;
}
.upsell-card-size {
  display: block;
  margin-top: 0.6rem;
}
.upsell-card-size select {
  width: 100%;
  min-height: 44px;
}
.checkout-upsell-main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.checkout-upsell-title {
  flex: none;
  white-space: normal;
  text-overflow: clip;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.not-found {
  max-width: none;
  margin: 0;
  padding: 70px 12px;
  color: var(--brand-ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.not-found-code {
  margin: 0;
  font-size: 17px;
  line-height: 28px;
  color: var(--brand-ink);
}
.not-found-title {
  margin: 50px 0 30px;
  font-family: "Assistant", var(--font-primary);
  font-size: 40px;
  line-height: 52px;
  font-weight: 400;
  color: #121212;
  letter-spacing: 0;
  text-transform: none;
}
.not-found-continue {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-height: 47px;
  margin: 20px 0 0;
  padding: 0 30px;
  border: 0;
  border-radius: 0;
  background: #121212;
  color: var(--brand-white);
  font-family: var(--font-primary);
  font-size: 15px;
  line-height: 18px;
  font-weight: 400;
  letter-spacing: 1px;
  text-decoration: none;
}
.not-found-continue:hover,
.not-found-continue:focus-visible {
  background: #000;
}
@media (max-width: 767px) {
  .not-found-title {
    margin: 30px 0 20px;
    font-size: 30px;
    line-height: 39px;
  }
  .not-found-continue {
    margin-top: 10px;
  }
}
body:has(main.not-found) .site-footer {
  margin-top: 0;
}
main.product-page .breadcrumb ol {
  font-size: 13px;
  line-height: 28px;
  color: rgba(26, 57, 31, 0.64);
}
main.product-page .breadcrumb a,
main.product-page .breadcrumb [aria-current=page],
main.product-page .breadcrumb li + li::before {
  color: rgba(26, 57, 31, 0.64);
}
.product-buybox .vendor {
  color: var(--brand-dark-green);
  font-size: 15px;
  line-height: 20px;
  font-weight: 500;
}
.smile-points {
  align-items: flex-start;
  gap: 10px;
  padding: 10px;
  margin: 0 0 1rem;
  border-radius: 3px;
  background: #f8f8f8;
  color: #121212;
  font-size: 17px;
  line-height: 28px;
  font-weight: 400;
}
.smile-points-icon {
  display: flex;
  align-items: center;
  height: 28px;
  font-size: 0;
}
.smile-points-icon svg {
  display: block;
  width: 20px;
  height: 20px;
}
.product-compliance {
  margin-top: 1.5rem;
  padding-top: 0;
  border-top: 0;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(26, 57, 31, 0.64);
}
.product-compliance-heading {
  color: rgba(26, 57, 31, 0.64);
}
@media (max-width: 767px) {
  .sticky-buy {
    padding-inline: 16px;
  }
  .sticky-buy-inner {
    gap: 16px;
  }
  .sticky-buy-price {
    display: none;
  }
  .sticky-buy .qty-stepper {
    min-width: 132px;
  }
  .sticky-buy .primary {
    flex: 1 1 auto;
    min-width: 0;
  }
}
.product-faqs .home-faq-art picture {
  display: block;
}
main.catalogue-main {
  padding-bottom: 16px;
}
body:has(main.catalogue-main) .site-footer {
  margin-top: 0;
}
.pagination {
  margin-top: 32px;
}
.pagination:empty {
  margin-top: 0;
}
.search-results {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
body:has(main.home-page) .site-footer {
  margin-top: 0;
}
.home-page .home-faq {
  margin-bottom: 36px;
}
.home-brands {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .home-page .home-faq {
    margin-bottom: 0;
  }
}
.site-footer nav {
  gap: 8px 24px;
  margin-bottom: 32px;
}
.site-footer nav a {
  font-size: 13px;
  line-height: 20px;
  color: rgba(0, 0, 0, 0.6);
}
.footer-legal,
.footer-copyright {
  font-size: 11px;
  line-height: 16px;
  color: rgba(0, 0, 0, 0.6);
}
.footer-notices {
  gap: 16px;
}
@media (max-width: 600px) {
  .site-footer nav {
    gap: 4px;
    margin-bottom: 32px;
  }
  .site-footer nav a {
    font-size: 13px;
    line-height: 20px;
  }
}
.home-ugc-who {
  display: flex;
  flex-direction: column;
  gap: 3.75px;
  padding: 10px;
}
.home-ugc-name {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 9.375px;
  line-height: 12.5px;
  color: var(--brand-dark-green);
  text-transform: none;
}
.home-ugc-quote {
  margin: 0;
  font-family: var(--font-primary);
  font-size: 8.125px;
  line-height: 10px;
  color: rgba(26, 57, 31, 0.55);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 767px) {
  .home-ugc-name {
    font-size: 8.75px;
  }
  .home-ugc-quote {
    font-size: 7.5px;
  }
}
@media (max-width: 767px) {
  .home-ugc-head {
    flex-wrap: wrap;
    gap: 8px 16px;
    margin-bottom: 12px;
  }
  .home-ugc-head > div {
    flex: 1 1 100%;
  }
  .home-ugc h2 {
    margin-bottom: 0;
  }
  .home-ugc-head .home-carousel-nav {
    margin-left: auto;
  }
}
@media (max-width: 767px) {
  .home-bundle p {
    font-size: 14px;
    line-height: 1.6;
  }
  .home-brand-about {
    font-size: 15px;
    line-height: 1.5;
  }
  .home-brand-cta {
    font-size: 16px;
    line-height: 28px;
    padding: 12px 20px;
  }
}
.buy-row .qty-stepper {
  height: 48px;
  min-width: 128px;
  justify-content: space-between;
  border: 0;
  border-radius: 800px;
  background: var(--brand-cream);
}
.buy-row .qty-stepper button {
  width: 44px;
  height: 48px;
  color: var(--brand-dark-green);
}
.buy-row .qty-stepper input {
  height: 48px;
  width: 40px;
  font-weight: 500;
  color: var(--brand-dark-green);
}
.buy-row #add-to-cart {
  height: 48px;
  padding: 0 1.6rem;
  font-size: 17px;
  font-weight: 500;
  line-height: 1;
}
@media (max-width: 640px) {
  .buy-row .qty-stepper {
    min-width: 128px;
  }
  .buy-row .qty-stepper button {
    width: 44px;
  }
  .buy-row .qty-stepper input {
    width: 40px;
  }
  .buy-row #add-to-cart {
    padding: 0 1rem;
  }
}
@media (min-width: 768px) {
  .product-faqs .home-faq-art {
    border-radius: 16px;
    overflow: hidden;
    max-height: 850px;
  }
  .product-faqs .home-faq-art img,
  .product-faqs .home-faq-art picture img {
    height: 850px;
    object-fit: cover;
    border-radius: 0;
  }
  .product-faqs .home-faq-body {
    margin-top: 32px;
  }
}
form.checkout-form label.check-row {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  cursor: pointer;
}
form.checkout-form label.check-row input[type=checkbox] {
  width: 20px;
  height: 20px;
  min-height: 20px;
  margin: 0;
  accent-color: var(--brand-dark-green);
}
.order-summary-foot {
  display: none;
}
.checkout-add-discount {
  display: none;
}
@media (max-width: 899px) {
  .order-summary-foot {
    display: block;
    margin-top: 0.25rem;
  }
  .order-summary-foot-toggle {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    min-height: 48px;
    padding: 0.25rem 0;
    margin: 0;
    background: none;
    border: 0;
    border-radius: 0;
    color: var(--brand-ink);
    font: inherit;
    text-align: left;
    cursor: pointer;
  }
  .order-summary-foot-thumb {
    flex: none;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    border: 1px solid #d9d4c7;
    background: var(--brand-white);
    overflow: hidden;
  }
  .order-summary-foot-thumb:empty {
    display: none;
  }
  .order-summary-foot-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }
  .order-summary-foot-label {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    line-height: 1.25;
  }
  .order-summary-foot-label strong {
    font-size: 1.05rem;
  }
  .order-summary-foot-count {
    font-size: 0.85rem;
    color: #4a5c4d;
  }
  .order-summary-foot-total {
    margin-left: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.1rem;
    line-height: 1.25;
    white-space: nowrap;
    font-size: 1.1rem;
  }
  .order-summary-foot-total .summary-was {
    font-size: 0.85rem;
    font-weight: 400;
    color: #4a5c4d;
    margin: 0;
  }
  .order-summary-foot-total .summary-currency {
    margin-right: 0.3rem;
  }
  .order-summary-foot .order-summary-toggle-chevron {
    flex: none;
    transition: transform 0.15s ease;
  }
  .order-summary-foot.is-open .order-summary-toggle-chevron {
    transform: rotate(180deg);
  }
  .order-summary-foot.is-open .order-summary-body {
    display: block;
    border: 1px solid #d9d4c7;
    border-radius: var(--radius);
    margin-bottom: 0.25rem;
  }
  .order-summary-foot + .checkout-pay {
    margin-top: 0.125rem;
  }
  .checkout-pay-amount {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
  }
  .checkout-add-discount {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    justify-self: start;
    min-height: 40px;
    padding: 0 14px;
    margin-top: 0.5rem;
    border: 1px solid #d9d4c7;
    border-radius: 9999px;
    background: var(--brand-white);
    color: var(--brand-ink);
    font: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
  }
  .checkout-add-discount:hover {
    background: #f5f4ef;
  }
  .checkout-trust-foot-slot .checkout-trust {
    border-top: 0;
    margin-top: 0.75rem;
    padding-top: 0;
    gap: 0.6rem;
  }
  .checkout-trust-foot-slot .checkout-trust-badge {
    font-size: 0.9rem;
  }
}
.checkout-pay {
  position: relative;
}
.checkout-pay-amount {
  font-weight: 700;
}
.cart-drawer-line {
  position: relative;
  grid-template-columns: auto minmax(0, 1fr);
}
.cart-drawer-line-title {
  padding-right: 32px;
}
.cart-drawer-remove {
  position: absolute;
  top: calc(1rem - 10px);
  right: -10px;
  margin: 0;
}
.checkout-grid:has(#checkout-empty:not([hidden])),
.checkout-grid:has(#checkout-restoring:not([hidden])) {
  grid-template-columns: minmax(0, 1fr);
  background: var(--brand-white);
}
#checkout-empty,
#checkout-restoring {
  grid-column: 1 / -1;
  box-sizing: border-box;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.5rem 1rem 3rem;
}
#checkout-empty .cart-empty,
#checkout-restoring .cart-empty {
  margin-top: 0;
}
.checkbox-row {
  min-height: 40px;
  padding: 0.25rem 0;
  gap: 12px;
  font-size: 0.95rem;
  cursor: pointer;
}
form.checkout-form .checkbox-row input[type=checkbox] {
  width: 20px;
  height: 20px;
  min-height: 0;
  margin: 0;
  padding: 0;
  flex: 0 0 auto;
  accent-color: var(--brand-dark-green);
  cursor: pointer;
}
form.checkout-form .shipping-option input[type=radio] {
  width: 20px;
  height: 20px;
  min-height: 0;
  margin: 0;
  padding: 0;
  flex: 0 0 auto;
  accent-color: var(--brand-dark-green);
  cursor: pointer;
}
.pager {
  gap: 8px;
}
.pager-btn {
  min-width: 40px;
  height: 40px;
  padding: 8px 12px;
  box-sizing: border-box;
  border: 1px solid rgba(26, 57, 31, 0.16);
  border-radius: 8px;
  background: transparent;
  color: var(--brand-dark-green);
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
}
button.pager-btn:hover {
  background: rgba(26, 57, 31, 0.06);
}
.pager-current {
  background: var(--brand-dark-green);
  border-color: var(--brand-dark-green);
  color: var(--brand-white);
  font-weight: 500;
}
.pager-gap {
  min-width: 40px;
  padding: 8px 12px;
  border-color: rgba(26, 57, 31, 0.16);
  background: transparent;
  opacity: 0.5;
}
.pager-arrow svg {
  display: block;
  width: 20px;
  height: 20px;
}
@media (max-width: 374px) {
  .pager {
    gap: 6px;
  }
}
.load-more {
  text-align: center;
}
.load-more-sentinel {
  height: 1px;
  margin-bottom: -1px;
}
.load-more-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  min-width: 200px;
  margin-top: 32px;
  padding: 8px 24px;
  box-sizing: border-box;
  border: 1px solid rgba(26, 57, 31, 0.16);
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--brand-dark-green);
  font: inherit;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
  cursor: pointer;
}
.load-more-button:hover {
  background: rgba(26, 57, 31, 0.06);
}
.load-more-button[aria-disabled=true] {
  opacity: 0.6;
  cursor: progress;
}
.load-more-status {
  margin: 16px 0 0;
  font-size: 15px;
  line-height: 1.4;
  color: var(--brand-ink);
}
.load-more-status:empty {
  margin: 0;
}
.results-count {
  margin: 0 0 2.5rem;
  text-align: center;
  font-size: 15px;
  line-height: 1.4;
  color: rgba(32, 30, 25, 0.7);
  font-variant-numeric: tabular-nums;
}
.results-count:empty {
  margin: 0;
}
.pagination:has(+ .results-count:not(:empty)) {
  margin-bottom: 12px;
}
@media (min-width: 1024px) {
  .home-page .home-faq-art {
    position: sticky;
    top: 0;
  }
}
main.catalogue-main.search-main {
  padding-bottom: 48px;
}
@media (max-width: 767px) {
  main.catalogue-main.search-main {
    padding-bottom: 24px;
  }
}
main.catalogue-main.search-main:has(.search-empty),
main.catalogue-main.search-main:has(.search-no-results) {
  padding-bottom: 0;
}
body:has(main.cart-page) #smile-ui-container,
body:has(main.cart-page) .smile-launcher-frame-container,
body:has(main.cart-page) [class*=kl-teaser-],
body:has(main.cart-page) #tidio-chat,
body:has(main.cart-page) #tidio-chat-iframe {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}
body:has(main.cart-page) #smile-ui-container *,
body:has(main.cart-page) [class*=kl-teaser-] *,
body:has(main.cart-page) #tidio-chat * {
  visibility: hidden !important;
  pointer-events: none !important;
}
[data-klaviyo-form-suppressed],
[data-klaviyo-form-suppressed] * {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}
body:has(main[data-klaviyo-forms=off]) #dynamic-react-root,
body:has(main[data-klaviyo-forms=off]) [data-kl-scroll-locking-modal],
body:has(main[data-klaviyo-forms=off]) [role=dialog][aria-modal]:has(form.klaviyo-form),
body:has(main[data-klaviyo-forms=off]) [class*=kl-teaser-] {
  display: none !important;
}
body.klaviyo-prevent-body-scrolling:has(main[data-klaviyo-forms=off]) {
  overflow: auto !important;
  position: static !important;
}
.checkout-preorder-notice {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--ink, #111);
}
.checkout-preorder-notice[hidden] {
  display: none;
}
