:root {
  --ink: #5e3023;
  --soft-ink: #76584c;
  --paper: #fff;
  --wash: #f7f0e8;
  --sage: #d5c9e1;
  --clay: #d5af98;
  --moss: #9b6d5d;
  --line: rgba(94, 48, 35, .18);
  --white: #fffaf4;
  --mist: #e3e4f0;
  --lavender: #d5c9e1;
  --rose: #d5af98;
  --cocoa: #5e3023;
  --font-main: "Elms Sans", "Segoe UI", Arial, sans-serif;
  --font-display: "Philosopher", "Times New Roman", serif;
  --shadow-soft: 0 18px 48px rgba(94, 48, 35, .09);
  --hero-overlay: rgba(94, 48, 35, .5);
  --site-header-height: 86px;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-main);
  line-height: 1.6;
}
body.nav-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 54px);
  background: rgba(237, 228, 216, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 32px rgba(94, 48, 35, .06);
  transition: background .22s ease, border-color .22s ease, box-shadow .22s ease, color .22s ease, backdrop-filter .22s ease;
}
.brand img {
  width: clamp(5rem, 10vw, 8rem);
  height: auto;
  transition: filter .22s ease;
}
.header-actions {
  display: none;
  align-items: center;
  gap: 8vw;
}
.header-left-actions {
  display: contents;
}
.header-search-action {
  display: inline-flex;
  align-items: center;
  margin-left: clamp(10px, 1.2vw, 18px);
}
.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px;
  border: 1px solid rgba(94, 48, 35, .18);
  border-radius: 999px;
  background: rgba(255, 250, 244, .62);
  color: var(--ink);
  white-space: nowrap;
}
.language-switcher a {
  display: inline-grid;
  min-width: 42px;
  min-height: 30px;
  place-items: center;
  padding: 0 10px;
  border-radius: 999px;
  color: inherit;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
}
.language-switcher a.is-active {
  background: var(--cocoa);
  color: var(--white);
}
.language-switcher--mobile {
  display: none;
}
.language-switcher__menu {
  display: none;
}
.header-search-action--mobile {
  display: none;
}
.site-nav { display: flex; align-items: center; gap: 4vw; font-size: 14px; font-weight: 700; letter-spacing: .02em; }
.site-nav a { color: var(--ink); font-size: medium; }
.site-nav a:hover { color: var(--moss); }
.nav-utility-links {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 1vw;
  margin-left: auto;
}
.nav-utility-links--mobile {
  display: none;
}
.nav-utility-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  z-index: 90;
  min-width: 170px;
  display: none;
  gap: 4px;
  padding: 10px;
  border: 1px solid rgba(94, 48, 35, .12);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 46px rgba(94, 48, 35, .18);
  color: var(--soft-ink);
}
.nav-utility-links.is-open .nav-utility-menu {
  display: grid;
}
.nav-utility-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 38px;
  padding: 8px 10px;
  border-radius: 6px;
  color: var(--soft-ink);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
}
.nav-utility-menu a:hover,
.nav-utility-menu a:focus-visible {
  background: var(--wash);
  color: var(--ink);
}
.nav-utility-menu i {
  width: 16px;
  color: inherit;
  text-align: center;
}
.account-status {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  white-space: nowrap;
}
.account-link--signed-in {
  gap: 8px;
  font-size: medium;
}
.account-link--signed-in i {
  font-size: 20px;
}
.account-greeting {
  color: inherit;
  font-weight: 800;
}
.account-logout-link {
  color: inherit;
  font-size: 14px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.site-search {
  display: inline-flex;
  align-items: center;
}
.search-toggle {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.header-search-overlay {
  position: absolute;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  width: 100%;
  min-height: 100%;
  background: var(--cocoa);
}
.header-search-overlay.is-open {
  display: flex;
}
.header-search-container {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 2vw;
  padding: 0 clamp(18px, 4vw, 54px) 0 calc(clamp(5rem, 10vw, 8rem) + clamp(38px, 7vw, 88px));
}
.header-search-form {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 44px;
  margin: 0;
  padding: 0 6px 0 16px;
  border: 0;
  border-radius: 999px;
  outline: 2px solid transparent;
  outline-offset: 2px;
  background: var(--white);
  box-shadow: 0 0 0 1px rgba(255, 250, 244, .28) inset;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform .28s ease, opacity .2s ease;
  will-change: transform, opacity;
}
.header-search-overlay.is-animate .header-search-form {
  opacity: 1;
  transform: scaleX(1);
}
.header-search-form:focus-within {
  box-shadow: 0 0 0 3px rgba(255, 250, 244, .4) inset;
}
.header-search-input {
  width: 100%;
  min-width: 0;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font: 500 16px/1.1 var(--font-main);
}
.header-search-input::placeholder {
  color: rgba(94, 48, 35, .62);
}
.header-search-submit {
  min-width: 44px;
  height: 44px;
  padding: 0 14px;
  border: 0;
  background: transparent;
  color: var(--soft-ink);
  cursor: pointer;
  font-size: 16px;
}
.header-search-submit:hover,
.header-search-submit:focus-visible {
  color: var(--ink);
}
.header-search-close {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  display: inline-grid;
  place-items: center;
  padding: 0;
  border: 2px solid var(--white);
  border-radius: 999px;
  background: rgba(255, 250, 244, .16);
  color: var(--white);
  cursor: pointer;
  font-size: 18px;
  transition: background .18s ease, color .18s ease;
}
.header-search-close:hover,
.header-search-close:focus-visible {
  background: rgba(255, 250, 244, .34);
}
.mobile-nav-head { display: none; }
.nav-dropdown {
  position: relative;
}
.nav-dropdown-trigger-row {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-dropdown::after {
  content: "";
  position: absolute;
  left: -18px;
  right: -18px;
  top: 100%;
  height: clamp(22px, 3vw, 38px);
}
.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: medium;
  justify-content: flex-start;
  text-align: left;
  transition: color .18s ease;
}
.nav-dropdown-trigger i { font-size: 11px; }
.mobile-nav-submenu-toggle {
  display: none;
}
.nav-dropdown-menu {
    position: fixed;
    top: calc(var(--site-header-height) - 2px);
    left: 0;
    right: 0;
    z-index: 29;
    width: 100vw;
    max-height: calc(100vh - var(--site-header-height) + 1px);
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
    gap: clamp(14px, 2vw, 28px);
    overflow-y: auto;
    padding: clamp(10px, 1.25vw, 16px) clamp(22px, 6vw, 92px) clamp(20px, 2.4vw, 32px);
    border-top: 0;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 250, 244, 0.96);
    box-shadow: 0 5px 5px rgba(94, 48, 35, .1);
    backdrop-filter: blur(18px);
    color: var(--ink);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .18s ease, transform .18s ease, visibility 0s linear .18s;
    visibility: hidden;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  transition-delay: 0s;
  visibility: visible;
}
.nav-dropdown-menu a {
  color: var(--ink);
  text-shadow: none;
}
.nav-dropdown-card {
  display: grid;
  flex: 0 1 clamp(150px, 14vw, 230px);
  align-content: start;
  justify-items: center;
  gap: 12px;
  min-height: 118px;
  padding: 14px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
}
.nav-dropdown-card:hover,
.nav-dropdown-card:focus-visible {
  border-color: rgba(94, 48, 35, .24);
  background: var(--white);
  color: var(--ink);
  transform: translateY(-2px);
}
.nav-dropdown-card__icon {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 50%;
  background: var(--wash);
  color: var(--ink);
  font-size: 20px;
}
.nav-dropdown-card__thumb {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  object-fit: cover;
  background: var(--wash);
}
.cart-link,
.nav-icon-link {
  --nav-count-size: 20px;
  --nav-count-top: -9px;
  --nav-count-right: -9px;
  position: relative;
  display: inline-flex;
  min-width: 28px;
  min-height: 28px;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.cart-link {
  color: var(--ink) !important;
}
.nav-icon-link {
  color: var(--ink);
}
.cart-link span,
.nav-icon-link > .nav-count {
  position: absolute;
  top: var(--nav-count-top);
  right: var(--nav-count-right);
  display: grid;
  min-width: var(--nav-count-size);
  height: var(--nav-count-size);
  padding: 0 5px;
  place-items: center;
  border-radius: 999px;
  background: var(--rose);
  color: var(--cocoa);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
}
.mobile-cart-link { display: none; }
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
}
.nav-toggle i {
  color: var(--ink);
  font-size: 20px;
  transition: color .18s ease;
}
.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 28;
  background: rgba(94, 48, 35, .42);
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease;
}
.nav-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

body.has-transparent-header .site-header {
  position: fixed;
  left: 0;
  right: 0;
}
body.has-transparent-header.header-at-top .site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  border-bottom-color: transparent;
  box-shadow: none;
  backdrop-filter: none;
}
body.has-transparent-header.header-at-top:not(.header-on-light) .brand img,
body.has-transparent-header.header-at-top.header-on-dark .brand img {
  filter: brightness(0) invert(1);
}
body.has-transparent-header.header-at-top:not(.header-on-light) .site-nav > a:not(.cart-link),
body.has-transparent-header.header-at-top:not(.header-on-light) .nav-dropdown-trigger,
body.has-transparent-header.header-at-top:not(.header-on-light) .nav-icon-link,
body.has-transparent-header.header-at-top:not(.header-on-light) .language-switcher,
body.has-transparent-header.header-at-top:not(.header-on-light) .account-status,
body.has-transparent-header.header-at-top:not(.header-on-light) .account-logout-link,
body.has-transparent-header.header-at-top:not(.header-on-light) .cart-link,
body.has-transparent-header.header-at-top:not(.header-on-light) .nav-toggle i,
body.has-transparent-header.header-at-top.header-on-dark .site-nav > a:not(.cart-link),
body.has-transparent-header.header-at-top.header-on-dark .nav-dropdown-trigger,
body.has-transparent-header.header-at-top.header-on-dark .nav-icon-link,
body.has-transparent-header.header-at-top.header-on-dark .language-switcher,
body.has-transparent-header.header-at-top.header-on-dark .account-status,
body.has-transparent-header.header-at-top.header-on-dark .account-logout-link,
body.has-transparent-header.header-at-top.header-on-dark .cart-link,
body.has-transparent-header.header-at-top.header-on-dark .nav-toggle i {
  color: var(--white) !important;
  text-shadow: 0 2px 14px rgba(58, 28, 20, .32);
}

body.has-transparent-header.header-at-top:not(.header-on-light) .cart-link span,
body.has-transparent-header.header-at-top:not(.header-on-light) .nav-icon-link > .nav-count,
body.has-transparent-header.header-at-top.header-on-dark .cart-link span,
body.has-transparent-header.header-at-top.header-on-dark .nav-icon-link > .nav-count {
  background: var(--white);
  color: var(--cocoa);
  text-shadow: none;
}
body.has-transparent-header.header-at-top.header-on-light .brand img {
  filter: none;
}
body.has-transparent-header.header-at-top.header-on-light .site-nav > a:not(.cart-link),
body.has-transparent-header.header-at-top.header-on-light .nav-dropdown-trigger,
body.has-transparent-header.header-at-top.header-on-light .nav-icon-link,
body.has-transparent-header.header-at-top.header-on-light .language-switcher,
body.has-transparent-header.header-at-top.header-on-light .account-status,
body.has-transparent-header.header-at-top.header-on-light .account-logout-link,
body.has-transparent-header.header-at-top.header-on-light .cart-link,
body.has-transparent-header.header-at-top.header-on-light .nav-toggle i {
  color: var(--ink) !important;
  text-shadow: 0 2px 16px rgba(255, 250, 244, .62);
}
body.has-transparent-header.header-at-top.header-on-light .cart-link span {
  background: var(--rose);
  color: var(--cocoa);
  text-shadow: none;
}
body.has-transparent-header.header-at-top.header-on-light .nav-icon-link > .nav-count {
  background: var(--rose);
  color: var(--cocoa);
  text-shadow: none;
}
body.has-transparent-header.header-at-top .brand.header-contrast-dark img {
  filter: brightness(0) invert(1);
}
body.has-transparent-header.header-at-top .brand.header-contrast-light img {
  filter: none;
}
body.has-transparent-header.header-at-top .site-nav > a.header-contrast-dark:not(.cart-link),
body.has-transparent-header.header-at-top .nav-dropdown-trigger.header-contrast-dark,
body.has-transparent-header.header-at-top .nav-icon-link.header-contrast-dark,
body.has-transparent-header.header-at-top .account-logout-link.header-contrast-dark,
body.has-transparent-header.header-at-top .cart-link.header-contrast-dark,
body.has-transparent-header.header-at-top .nav-toggle.header-contrast-dark i {
  color: var(--white) !important;
  text-shadow: 0 2px 14px rgba(58, 28, 20, .32);
}
body.has-transparent-header.header-at-top .site-nav > a.header-contrast-light:not(.cart-link),
body.has-transparent-header.header-at-top .nav-dropdown-trigger.header-contrast-light,
body.has-transparent-header.header-at-top .nav-icon-link.header-contrast-light,
body.has-transparent-header.header-at-top .account-logout-link.header-contrast-light,
body.has-transparent-header.header-at-top .cart-link.header-contrast-light,
body.has-transparent-header.header-at-top .nav-toggle.header-contrast-light i {
  color: var(--ink) !important;
  text-shadow: 0 2px 16px rgba(255, 250, 244, .62);
}
body.has-transparent-header.header-at-top .cart-link.header-contrast-dark span {
  background: var(--white);
  color: var(--cocoa);
  text-shadow: none;
}
body.has-transparent-header.header-at-top .nav-icon-link.header-contrast-dark > .nav-count {
  background: var(--white);
  color: var(--cocoa);
  text-shadow: none;
}
body.has-transparent-header.header-at-top .cart-link.header-contrast-light span {
  background: var(--rose);
  color: var(--cocoa);
  text-shadow: none;
}
body.has-transparent-header.header-at-top .nav-icon-link.header-contrast-light > .nav-count {
  background: var(--rose);
  color: var(--cocoa);
  text-shadow: none;
}
body.has-transparent-header.header-at-top .nav-dropdown-menu a {
  color: var(--ink);
  text-shadow: none;
}
body.header-submenu-open .site-header,
body.has-transparent-header.header-submenu-open.header-at-top .site-header {
  background: rgba(255, 250, 244, .96) !important;
  box-shadow: 0 12px 34px rgba(94, 48, 35, .1) !important;
  backdrop-filter: blur(18px) !important;
}
body.header-submenu-open .brand img,
body.has-transparent-header.header-submenu-open.header-at-top .brand img,
body.has-transparent-header.header-submenu-open.header-at-top .brand.header-contrast-dark img,
body.has-transparent-header.header-submenu-open.header-at-top .brand.header-contrast-light img {
  filter: none !important;
}
body.header-submenu-open .site-nav > a:not(.cart-link),
body.header-submenu-open .nav-dropdown-trigger,
body.header-submenu-open .nav-icon-link,
body.header-submenu-open .language-switcher,
body.header-submenu-open .account-status,
body.header-submenu-open .account-logout-link,
body.header-submenu-open .cart-link,
body.header-submenu-open .nav-toggle i,
body.has-transparent-header.header-submenu-open.header-at-top .site-nav > a:not(.cart-link),
body.has-transparent-header.header-submenu-open.header-at-top .nav-dropdown-trigger,
body.has-transparent-header.header-submenu-open.header-at-top .nav-icon-link,
body.has-transparent-header.header-submenu-open.header-at-top .language-switcher,
body.has-transparent-header.header-submenu-open.header-at-top .account-status,
body.has-transparent-header.header-submenu-open.header-at-top .account-logout-link,
body.has-transparent-header.header-submenu-open.header-at-top .cart-link,
body.has-transparent-header.header-submenu-open.header-at-top .nav-toggle i {
  color: var(--ink) !important;
  text-shadow: none !important;
}
body.header-submenu-open .cart-link span,
body.header-submenu-open .nav-icon-link > .nav-count,
body.has-transparent-header.header-submenu-open.header-at-top .cart-link span,
body.has-transparent-header.header-submenu-open.header-at-top .nav-icon-link > .nav-count {
  background: var(--rose);
  color: var(--cocoa);
  text-shadow: none;
}

.hero-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 6.7;
  min-height: 0;
  overflow: hidden;
  background: var(--wash);
}
.hero-track,
.hero-slide {
  position: absolute;
  inset: 0;
}
.hero-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 100%;
  padding: clamp(58px, 9vw, 128px) clamp(20px, 7vw, 96px);
  background-position: center;
  background-size: cover;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.035);
  transition: opacity .8s ease, transform 5.8s ease;
}
.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--hero-overlay);
  pointer-events: none;
}
.hero-slide--image-only::before {
  background: transparent;
}
.hero-slide[href] {
  color: inherit;
  cursor: pointer;
  text-decoration: none;
}
.hero-slide[href]:focus-visible {
  outline: 3px solid var(--moss);
  outline-offset: -8px;
}
.hero-slide.is-active {
  z-index: 1;
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}
@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    transition: none;
    transform: none;
  }
}
.hero-dots {
  position: absolute;
  left: clamp(20px, 7vw, 96px);
  bottom: 28px;
  z-index: 4;
  display: flex;
  gap: 9px;
}
.hero-dots button {
  width: 36px;
  height: 4px;
  min-height: 4px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(237, 228, 216, .7);
}
.hero-dots button.is-active {
  background: var(--paper);
}
.homepage-leaf-stage {
  position: relative;
  overflow: hidden;
}
.homepage-leaf-field {
  position: absolute;
  inset: 0;
  z-index: 6;
  overflow: hidden;
  pointer-events: none;
}
.homepage-leaf {
  position: absolute;
  top: var(--leaf-top, 0);
  width: var(--leaf-size, 120px);
  max-width: none;
  height: auto;
  opacity: var(--leaf-opacity, 1);
  pointer-events: none;
  user-select: none;
  will-change: transform;
  filter: drop-shadow(0 18px 26px rgba(94, 48, 35, .08));
}
.homepage-leaf--left {
  left: 0;
}
.homepage-leaf--right {
  right: 0;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
}
h1 { margin: 0 0 20px; font-size: clamp(48px, 8vw, 104px); }
h2 { margin: 0 0 14px; font-size: clamp(34px, 4vw, 58px); }
h3 { margin: 0 0 8px; font-size: 28px; }
.page-hero p, .section-heading p, .lead {
  max-width: 640px;
  color: var(--soft-ink);
  font-size: 18px;
}

.cart-summary { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-top: 28px; }
.button, button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid var(--ink);
  border-radius: 4px;
  background: var(--ink);
  color: var(--paper);
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}
.button:hover, button:hover {
  transform: translateY(-1px);
}
.button.secondary, .product-meta button {
  background: transparent;
  color: var(--ink);
}
.text-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--clay);
  font-weight: 700;
}

.product-detail, .checkout-layout, .shop-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: clamp(30px, 6vw, 84px);
  align-items: center;
}

.byo-product-detail .eyebrow {
    margin: 0;
    color: var(--moss);
    font-size: clamp(15px, 28.8px, 20px);
    font-weight: normal;
}

.product-detail, .checkout-layout, .shop-layout {
  padding: clamp(56px, 8vw, 110px) clamp(20px, 7vw, 96px);
}

.product-detail > img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
}

.additional-sections {
  display: grid;
  background: var(--paper);
  border-block: 1px solid var(--line);
}
.additional-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  min-height: clamp(360px, 42vw, 560px);
}
.additional-section + .additional-section {
  border-top: 1px solid var(--line);
}
.additional-section--reverse .additional-section__media {
  order: 2;
}
.additional-section--content-only {
  grid-template-columns: minmax(0, 1fr);
  min-height: 0;
}
.additional-section__media {
  position: relative;
  min-height: 320px;
  overflow: hidden;
}
.additional-section__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.additional-section__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: clamp(14px, 2vw, 22px);
  padding: clamp(34px, 6vw, 86px) 5%;
  background: var(--paper);
}
.additional-section__content h2 {
  margin: 0;
  max-width: 680px;
  text-transform:uppercase;
}
.additional-section__content .rich-content {
  max-width: 660px;
  color: var(--soft-ink);
}
.additional-section__content .rich-content strong,
.additional-section__content .rich-content b,
.content-page strong,
.content-page b {
  color: var(--ink);
  font-weight: bold;
}
.additional-section__content .rich-content > :first-child {
  margin-top: 0;
}
.additional-section__content .rich-content > :last-child {
  margin-bottom: 0;
}
.additional-section__content .button {
  margin-top: 4px;
}
.section, .content-page, .cart-page {
  padding: clamp(56px, 8vw, 110px) clamp(20px, 7vw, 96px);
}
.js [data-scroll-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .68s ease, transform .68s cubic-bezier(.2, .72, .22, 1);
  will-change: opacity, transform;
}
.js [data-scroll-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
.muted { background: var(--wash); }
.section-heading {
  margin-bottom: 24px;
  text-align: center;
}
.section-heading p {
  margin-left: auto;
  margin-right: auto;
}

.carousel { position: relative; }
.carousel-controls {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin: 0 0 14px;
}
.carousel-controls button {
  width: 42px;
  height: 42px;
  min-height: 42px;
  padding: 0;
  border-color: var(--line);
  background: var(--white);
  color: var(--ink);
}
.carousel-controls button:disabled { opacity: .38; cursor: not-allowed; }
.carousel-viewport { overflow: hidden; }
.carousel-track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-item {
  flex: 0 0 calc((100% - 66px) / 4);
  scroll-snap-align: start;
}
.product-carousel .carousel-item {
  flex-basis: calc((100% - 66px) / 4);
}
.product-carousel .carousel-track {
  align-items: stretch;
}
.product-carousel .product-card {
  align-self: stretch;
  height: auto;
}
.partners-carousel .carousel-track {
  align-items: stretch;
}
.partners-grid .carousel-item {
  flex-basis: calc((100% - 66px) / 4);
}
.partner-card {
  display: grid;
  min-height: 150px;
  place-items: center;
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
a.partner-card:hover,
a.partner-card:focus-visible {
  border-color: rgba(94, 48, 35, .28);
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}
.partner-card img {
  display: block;
  width: min(100%, 190px);
  max-height: 82px;
  object-fit: contain;
}
.partner-card span {
  font-weight: 800;
  text-align: center;
}
.testimonials-section {
  overflow: hidden;
  background: linear-gradient(180deg, var(--paper) 0%, var(--wash) 100%);
}
.testimonial-coverflow {
  position: relative;
  width: min(1120px, 100%);
  margin: 0 auto;
}
.testimonial-coverflow__viewport {
  position: relative;
  min-height: clamp(300px, 34vw, 390px);
  overflow: hidden;
  perspective: 1200px;
}
.testimonial-coverflow__track {
  position: relative;
  min-height: inherit;
  transform-style: preserve-3d;
}
.testimonial-card {
  position: absolute;
  top: 8px;
  left: 50%;
  display: grid;
  width: min(78vw, 500px);
  min-height: clamp(240px, 27vw, 320px);
  align-content: center;
  gap: 18px;
  padding: clamp(26px, 4vw, 46px);
  border: 1px solid rgba(94, 48, 35, .14);
  border-radius: 8px;
  background: rgba(255, 250, 244, .96);
  box-shadow: 0 10px 20px rgba(94, 48, 35, .1);
  color: var(--ink);
  text-align: center;
  transform: translateX(-50%);
  transition: transform .42s cubic-bezier(.2, .72, .22, 1), opacity .32s ease, box-shadow .32s ease;
  will-change: transform, opacity;
}
.testimonial-card.is-active {
  box-shadow: 0 5px 15px rgba(94, 48, 35, .1);
}
.testimonial-card__stars {
  display: flex;
  justify-content: center;
  gap: 7px;
  color: var(--clay);
  font-size: clamp(17px, 1.8vw, 22px);
}
.testimonial-card blockquote {
  margin: 0;
}
.testimonial-card footer {
    color: var(--ink);
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 1px;
}
.testimonial-card footer::before {
  content: "";
  display: block;
  width: 42px;
  height: 1px;
  margin: 0 auto 12px;
  background: var(--line);
}
.testimonial-coverflow__controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  z-index: 6;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  transform: translateY(-50%);
}
.testimonial-coverflow__controls button {
  width: 44px;
  height: 44px;
  min-height: 44px;
  padding: 0;
  border-color: var(--line);
  background: var(--white);
  color: var(--ink);
  pointer-events: auto;
  box-shadow: 0 12px 30px rgba(94, 48, 35, .12);
}
.testimonial-coverflow__dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 20px;
}
.testimonial-coverflow__dots button {
  width: 9px;
  height: 9px;
  min-height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(94, 48, 35, .26);
}
.testimonial-coverflow__dots button.is-active {
  width: 28px;
  background: var(--ink);
}
.carousel-pagination {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 22px;
}
.carousel-pagination button {
  width: 9px;
  height: 9px;
  min-height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(94, 48, 35, .26);
}
.carousel-pagination button.is-active {
  width: 28px;
  background: var(--ink);
}
.category-grid, .product-grid {
  display: flex;
  gap: 22px;
}
.category-card, .product-card, .form-panel, .order-summary {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(94, 48, 35, .06);
}
.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.product-card:hover,
.product-card:focus-within {
  border-color: rgba(94, 48, 35, .28);
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}
.product-card > a {
  display: block;
  flex: 0 0 auto;
}
.category-card {
  position: relative;
  display: block;
  min-height: 100%;
  background: var(--cocoa);
}
.category-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(94, 48, 35, .72), rgba(94, 48, 35, .08));
  pointer-events: none;
}
.category-card img, .product-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: var(--mist);
}
.category-card img {
  aspect-ratio: 5 / 4;
  height: 100%;
}
.category-card__base-image {
  transition: transform .55s ease;
}
.category-card__hover-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity .36s ease;
}
.category-card:hover .category-card__base-image,
.category-card:focus-visible .category-card__base-image {
  transform: scale(1.035);
}
.category-card:hover .category-card__hover-image,
.category-card:focus-visible .category-card__hover-image {
  opacity: 1;
}
.category-card div {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  padding: 22px;
  color: var(--paper);
}
.category-card h3 {
  text-shadow: 0 2px 14px rgba(58, 28, 20, .32);
  margin: 0;
}
.product-card > div {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 22px;
}
.product-card h3 {
  margin: 0 0 10px;
}
.product-card__excerpt {
  margin: 0;
}
.product-card__enquiry-label {
  color: var(--moss);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.product-card__enquiry-actions {
  display: flex;
  gap: 8px;
  margin-left: auto;
}
.product-card__enquiry-button {
  width: 38px;
  min-width: 38px;
  min-height: 38px;
  padding: 0;
  font-size: 13px;
}
.product-card__enquiry-button--text {
  width: auto;
  padding: 0 16px;
}
.product-card p, .content-page div { color: var(--soft-ink); }
.product-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 20px;
}
.product-meta form {
  margin: 0;
}
.wishlist-form {
  margin: 0;
}
.product-card__wishlist {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 4;
}
.wishlist-button {
  gap: 8px;
  min-height: 42px;
  padding: 0 15px;
  border-color: rgba(94, 48, 35, .2);
  border-radius: 999px;
  background: rgba(255, 250, 244, .9);
  color: var(--ink);
  box-shadow: 0 12px 28px rgba(94, 48, 35, .12);
  font-weight: 900;
}
.wishlist-button:hover,
.wishlist-button:focus-visible {
  border-color: var(--cocoa);
  background: var(--white);
  color: var(--cocoa);
}
.wishlist-button.is-active {
  border-color: var(--cocoa);
  background: var(--cocoa);
  color: var(--paper);
}
.product-card__wishlist .wishlist-button {
  width: 42px;
  min-width: 42px;
  padding: 0;
  backdrop-filter: blur(10px);
}
.product-card__wishlist .wishlist-button span {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.price {
  display: block;
  margin: 0 0 22px;
  font-size: 28px;
}
.product-meta .price,
.byo-cart__unit-price .price,
.byo-product-detail__price .price {
  margin: 0;
}
.price--sale {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
}
.price--sale del {
  color: var(--soft-ink);
  font-size: .82em;
  font-weight: 700;
}
.price--sale strong {
  color: #9a3a26;
}
.price--enquiry {
  color: var(--moss);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.page-hero {
  padding: clamp(20px, 5vw, 50px) clamp(20px, 7vw, 96px);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.page-hero.compact.has-background {
  position: relative;
  overflow: hidden;
  min-height: clamp(260px, 36vw, 430px);
  display: grid;
  align-content: end;
  background-position: center;
  background-size: cover;
  color: var(--paper);
}
.page-hero.compact.has-background .eyebrow,
.page-hero.compact.has-background h1,
.page-hero.compact.has-background p {
  max-width: 760px;
  color: inherit;
  text-shadow: 0 2px 18px rgba(58, 28, 20, .42);
}
.page-hero.compact h1 { font-size: clamp(42px, 6vw, 76px); }
.shop-layout {
  align-items: start;
  grid-template-columns: 230px 1fr;
}
.shop-layout .product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
}
.shop-layout .product-card { width: auto; }
.js [data-masonry-reveal] .product-card {
  opacity: 0;
  transform: translateY(34px) scale(.985);
  transition: opacity .58s ease, transform .58s cubic-bezier(.2, .72, .22, 1);
  transition-delay: var(--masonry-delay, 0ms);
  will-change: opacity, transform;
}
.js [data-masonry-reveal] .product-card:nth-child(3n + 2) {
  transform: translateY(52px) scale(.985);
}
.js [data-masonry-reveal] .product-card:nth-child(3n) {
  transform: translateY(22px) scale(.985);
}
.js [data-masonry-reveal] .product-card.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.shop-filter {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 8px;
}
.shop-filter a {
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
}
.shop-filter a:hover { border-color: var(--moss); color: var(--moss); }
.shop-filter a.active { background: var(--ink); color: var(--paper); }
.ingredients-hero {
  position: relative;
  min-height: clamp(520px, 68vw, 760px);
  display: grid;
  padding: clamp(64px, 8vw, 110px) clamp(20px, 7vw, 96px);
  overflow: hidden;
  background-image:
    radial-gradient(circle at 50% 34%, rgba(255, 250, 244, .86) 0 16%, rgba(255, 250, 244, .34) 34%, rgba(255, 250, 244, .04) 62%),
    linear-gradient(180deg, rgba(255, 250, 244, .28), rgba(94, 48, 35, .08)),
    var(--ingredients-hero-image);
  background-position: center;
  background-size: cover;
  color: var(--ink);
  text-align: center;
}
.ingredients-hero__content {
    position: absolute;
    z-index: 1;
    display: grid;
    justify-items: center;
    gap: clamp(10px, 1.4vw, 18px);
    max-width: 720px;
    text-shadow: 0 2px 22px rgba(255, 250, 244, .62);
    top: 2em;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
}
.ingredients-hero__content img {
  width: clamp(100px, 20vw, 250px);
  height: auto;
}
.ingredients-hero__content p {
  margin: 0;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: clamp(0.8rem, 1.6vw, 1.2rem);
}
.ingredients-hero__title{
  margin: 0;
  font-family: var(--font-main);
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  font-weight: normal;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1.1;
}
.ingredients-hero__title {
  display: grid;
  gap: 4px;
}
.ingredients-hero__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(12px, 2vw, 28px);
  margin-top: clamp(8px, 1vw, 14px);
}
.ingredients-hero__badges span {
    display: grid;
    justify-items: center;
    gap: 8px;
    max-width: 130px;
    font-size: clamp(0.2rem, 0.8vw, 0.8rem);
    line-height: 1.1;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
}
.ingredients-hero__badges i {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(94, 48, 35, .64);
  border-radius: 50%;
  font-size: 18px;
}
.ingredient-intro {
  display: grid;
  grid-template-columns: minmax(280px, .86fr) minmax(0, 1.4fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: center;
  padding: clamp(44px, 6vw, 78px) clamp(20px, 7vw, 96px);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, var(--paper), var(--wash));
}
.ingredient-intro__copy {
  max-width: 540px;
}
.ingredient-intro__copy h2,
.ingredient-standards__copy h2,
.ingredient-formula-cta h2 {
  color: #596438;
}
.ingredient-intro__copy p:not(.eyebrow),
.ingredient-standards__copy p {
  color: var(--soft-ink);
}
.ingredient-intro__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.ingredient-intro__actions a{
  gap:12px;
}
.ingredient-principles {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}
.ingredient-principles article {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 18px clamp(14px, 2vw, 28px);
  border-left: 1px solid var(--line);
  text-align: center;
}
.ingredient-principles i,
.ingredient-standards__list i {
  color: #596438;
  font-size: 34px;
}
.ingredient-principles h3,
.ingredient-standards__list h3 {
  margin: 0;
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 800;
}
.ingredient-principles p,
.ingredient-standards__list p {
  margin: 0;
  color: var(--soft-ink);
  font-size: 13px;
  line-height: 1.45;
}
.ingredient-library {
  display: grid;
  gap: clamp(26px, 4vw, 40px);
  padding: clamp(42px, 6vw, 78px) clamp(20px, 7vw, 96px);
  background: var(--paper);
}
.ingredient-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(10px, 1.6vw, 18px);
}
.ingredient-tabs button {
  min-width: clamp(150px, 14vw, 190px);
  min-height: 42px;
  border-color: var(--line);
  background: transparent;
  color: var(--ink);
}
.ingredient-tabs button.is-active {
  border-color: #596438;
  background: #596438;
  color: var(--paper);
}
.ingredient-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
}
.ingredient-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(94, 48, 35, .06);
  transform-origin: top left;
  transition: opacity .2s ease, transform .24s ease, filter .24s ease;
  will-change: transform, opacity;
}
.ingredient-card[hidden] {
  display: none;
}
.ingredient-grid.is-filtering .ingredient-card {
  filter: saturate(.98);
}
.ingredient-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--wash);
}
.ingredient-card > div {
  display: grid;
  gap: 8px;
  padding: 18px;
}
.ingredient-card h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(23px, 2vw, 31px);
}
.ingredient-card__botanical {
  margin: -4px 0 0;
  color: var(--soft-ink);
  font-size: 13px;
  font-style: italic;
}
.ingredient-card span {
  color: var(--ink);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}
.ingredient-card p {
  margin: 0;
  color: var(--soft-ink);
  font-size: 14px;
  line-height: 1.5;
}
.ingredient-standards {
  display: grid;
  grid-template-columns: minmax(240px, .72fr) minmax(0, 1.1fr) minmax(280px, .9fr);
  gap: clamp(26px, 5vw, 64px);
  align-items: start;
  padding: clamp(46px, 6vw, 76px) clamp(20px, 7vw, 96px);
  border-block: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(213, 175, 152, .26), rgba(247, 240, 232, .84)),
    var(--wash);
}
.ingredient-standards__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}
.ingredient-standards__list article {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 10px clamp(10px, 1.5vw, 20px);
  text-align: center;
}
.ingredient-faq {
  display: grid;
  gap: 8px;
}
.ingredient-faq h2 {
  margin-bottom: 8px;
  font-size: clamp(26px, 2.6vw, 40px);
}
.ingredient-faq details {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 250, 244, .72);
}
.ingredient-faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 16px;
  cursor: pointer;
  font-weight: 800;
}
.ingredient-faq summary::after {
  content: "+";
  font-size: 18px;
}
.ingredient-faq details[open] summary::after {
  content: "-";
}
.ingredient-faq details p {
  margin: 0;
  padding: 0 16px 16px;
  color: var(--soft-ink);
}
.ingredient-formula-cta {
  display: grid;
  grid-template-columns: minmax(240px, .7fr) repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(18px, 3vw, 28px);
  align-items: stretch;
  padding: clamp(42px, 6vw, 78px) clamp(20px, 7vw, 96px);
  background: var(--paper);
}
.ingredient-formula-cta > div {
  align-self: center;
}
.ingredient-formula-card {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) 26px;
  gap: 18px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--wash);
}
.ingredient-formula-card img {
  width: 150px;
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  object-fit: cover;
}
.ingredient-formula-card span {
  display: grid;
  gap: 4px;
}
.ingredient-formula-card strong {
  color: var(--ink);
}
.ingredient-formula-card small {
  color: var(--soft-ink);
}
.wishlist-page {
  display: grid;
  gap: clamp(28px, 5vw, 56px);
  padding: clamp(48px, 7vw, 92px) clamp(20px, 7vw, 96px);
}
.compact-heading {
  margin-bottom: 18px;
  text-align: left;
}
.compact-heading p {
  margin-left: 0;
  margin-right: 0;
}
.wishlist-notifications {
  display: grid;
  gap: 16px;
}
.wishlist-notifications__read {
  justify-self: start;
  margin: 0;
}
.wishlist-notifications__list {
  display: grid;
  gap: 12px;
}
.wishlist-notification {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(94, 48, 35, .05);
}
.wishlist-notification.is-unread {
  border-color: rgba(154, 58, 38, .36);
  background: #fff8f1;
}
.wishlist-notification img {
  width: 86px;
  aspect-ratio: 1 / 1;
  border-radius: 6px;
  object-fit: cover;
  background: var(--wash);
}
.wishlist-notification span {
  color: var(--soft-ink);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.wishlist-notification h3 {
  margin: 2px 0 4px;
  font-size: 22px;
}
.wishlist-notification p {
  margin: 0;
  color: var(--soft-ink);
}
.wishlist-products {
  display: grid;
}
.wishlist-grid {
  flex-wrap: wrap;
}
.wishlist-empty {
  width: min(720px, 100%);
}

@media (prefers-reduced-motion: reduce) {
  .js [data-scroll-reveal],
  .js [data-masonry-reveal] .product-card,
  .ingredient-grid .ingredient-card {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
  }
}

.buy-box, .form-panel {
  display: grid;
  gap: 16px;
}
label { display: grid; gap: 6px; font-weight: 700; }
input, textarea, select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 12px 13px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--moss);
  box-shadow: 0 0 0 3px rgba(213, 175, 152, .28);
  outline: none;
}
textarea { min-height: 120px; resize: vertical; }
.form-panel, .order-summary { padding: 24px; }
.checkout-layout { align-items: start; grid-template-columns: 1fr 360px; }
.order-summary { display: grid; gap: 14px; }
.order-summary div, .summary-total {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
}
.summary-total { border: 0; font-size: 20px; }

.cart-page table, .panel table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
}
th, td {
  padding: 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}
.notice {
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: 4px;
  background: var(--mist);
  color: var(--cocoa);
}
.notice.error { background: #f8e8e4; color: #7d2f21; }
.contact-page {
  padding: clamp(48px, 7vw, 92px) clamp(20px, 7vw, 96px);
}
.contact-page > h1 {
  display: none;
}
.contact-page__intro {
  width: min(960px, 100%);
  margin: 0 auto 40px;
}
.contact-page__intro h1 {
  max-width: 940px;
  margin: 0 0 10px;
  font-size: clamp(34px, 4.8vw, 58px);
  line-height: 1.05;
}
.contact-page__intro p:not(.eyebrow) {
  max-width: 860px;
  margin: 0;
  color: var(--soft-ink);
  font-size: 17px;
  line-height: 1.55;
}
.contact-page__grid {
  display: grid;
  grid-template-columns: minmax(280px, 430px) minmax(280px, 450px);
  gap: clamp(20px, 3vw, 34px);
  justify-content: center;
  align-items: stretch;
}
.contact-form-card,
.contact-info-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}
.contact-form-card {
  display: grid;
  gap: 14px;
  padding: clamp(22px, 3vw, 34px);
}
.contact-form-card input,
.contact-form-card textarea,
.contact-form-card select {
  min-height: 42px;
  border-color: #d8d0c6;
  background: #fff;
}
.contact-form-card textarea {
  min-height: 92px;
}
.contact-form-card .button {
  justify-self: center;
  min-width: 92px;
  background: var(--cocoa);
  border-color: var(--cocoa);
}
.contact-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--soft-ink);
  font-size: 14px;
  font-weight: 500;
}
.contact-consent input {
  width: auto;
  min-height: auto;
  margin-top: 4px;
}
.contact-info-card {
  display: grid;
  align-content: start;
  gap: clamp(24px, 4vw, 48px);
  padding: clamp(26px, 4vw, 44px);
  box-shadow: var(--shadow-soft);
}
.contact-info-card div {
  display: grid;
  gap: 3px;
}
.contact-info-card h2 {
  margin: 0;
  color: var(--cocoa);
  font-size: 17px;
  line-height: 1.2;
}
.contact-info-card p {
  margin: 0;
  color: var(--ink);
  line-height: 1.35;
}
.content-page {
  max-width: 1440px;
  margin: 0 auto;
}
.content-page h1 { font-size: clamp(42px, 6vw, 80px); }
.content-page:has(.story-intro) {
  max-width: none;
  padding: 0;
}
.content-page:has(.story-intro) > .eyebrow,
.content-page:has(.story-intro) > h1 {
  display: none;
}
.story-intro {
  position: relative;
  display: grid;
  min-height: min(620px, 72vh);
  align-content: center;
  overflow: hidden;
}
.story-intro::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: #ffffff;
  background: linear-gradient(90deg,rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 30%, rgba(255, 255, 255, 0) 50%);
}
.story-intro__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.story-intro__content {
  position: relative;
  z-index: 2;
  width: min(780px, 100%);
  padding: clamp(60px, 8vw, 120px) clamp(20px, 7vw, 96px);
}
.story-intro__content h2 {
  font-size: clamp(44px, 7vw, 92px);
}
.story-intro__content p {
  max-width: 760px;
  line-height: 1.8;
}
.story-intro__content p:has(strong) {
  font-size: clamp(19px, 2vw, 24px);
}
.story-intro > table {
  width: 100%;
  min-height: min(620px, 72vh);
  border-collapse: collapse;
  background-position: center;
  background-size: cover;
}
.story-intro td {
  padding: clamp(56px, 8vw, 120px) clamp(20px, 7vw, 96px);
  vertical-align: middle;
}
.story-intro td > * {
  max-width: 760px;
}

.cart-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--soft-ink);
  font-size: 14px;
  font-weight: 700;
}
.cart-breadcrumbs a { color: var(--ink); }
.cart-empty {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: clamp(44px, 7vw, 86px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  text-align: center;
}
.cart-empty h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 54px);
}
.cart-empty p {
  max-width: 520px;
  margin: 0;
  color: var(--soft-ink);
}
.byo-cart__table {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  overflow: hidden;
}
.byo-cart__row {
  display: grid;
  grid-template-columns: minmax(280px, 1.6fr) .7fr .65fr .8fr .35fr;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border-bottom: 1px solid var(--line);
}
.byo-cart__row:last-child { border-bottom: 0; }
.byo-cart__row--head {
  padding-block: 12px;
  background: var(--wash);
  color: var(--soft-ink);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.byo-cart__product {
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 16px;
  align-items: center;
}
.byo-cart__product-media {
  display: grid;
  width: 104px;
  aspect-ratio: 1 / 1;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  overflow: hidden;
}
.byo-cart__product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.byo-cart__product-placeholder {
  color: var(--soft-ink);
  font-size: 12px;
}
.byo-cart__product-copy {
  display: grid;
  gap: 6px;
}
.byo-cart__product-title {
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
}
.byo-cart__product-variation,
.byo-cart__product-meta {
  margin: 0;
  color: var(--soft-ink);
  font-size: 13px;
}
.byo-cart__product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.byo-cart__stock {
  color: var(--moss);
  font-weight: 800;
}
.byo-cart__stock.is-out-of-stock { color: #a83224; }
.byo-cart__qty input {
  max-width: 92px;
}
.byo-cart__line-total-content {
  display: flex;
  align-items: center;
  gap: 10px;
}
.byo-cart__line-total-price,
.byo-cart__unit-price {
  font-weight: 800;
}
.byo-cart__row-update,
.byo-cart__remove-btn {
  width: 42px;
  height: 42px;
  min-height: 42px;
  padding: 0;
  border-radius: 4px;
}
.byo-cart__row-update {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}
.byo-cart__remove-btn {
  border-color: #e3b5aa;
  background: #fff7f4;
  color: #a83224;
}
.byo-cart__footer {
  margin-top: 22px;
}
.byo-cart__summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}
.byo-cart__summary-row {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
}
.byo-cart__summary-row span {
  color: var(--soft-ink);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.auth-page {
  display: grid;
  place-items: center;
  padding: clamp(54px, 8vw, 110px) clamp(20px, 7vw, 96px);
}
.auth-card {
  width: min(520px, 100%);
  display: grid;
  gap: 16px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}
.auth-card h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 54px);
}
.auth-card p {
  margin: 0;
  color: var(--soft-ink);
}
.auth-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--soft-ink);
  font-size: 14px;
}
.auth-row a {
  color: var(--moss);
  font-weight: 700;
}
.auth-check {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}
.auth-check input {
  width: auto;
}
.account-details {
  display: grid;
  gap: 10px;
  margin: 0;
}
.account-details div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.account-details dt {
  color: var(--soft-ink);
  font-weight: 800;
}
.account-details dd {
  margin: 0;
  font-weight: 800;
}
.auth-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.order-tracking-page {
  display: grid;
  grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 46px);
  align-items: start;
  padding: clamp(42px, 7vw, 92px) clamp(20px, 7vw, 96px);
}
.order-tracking-list,
.order-tracking-detail,
.order-tracking-cards section,
.order-tracking-items,
.order-tracking-address {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 32px rgba(94, 48, 35, .05);
}
.order-tracking-list {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 10px;
  padding: 18px;
}
.order-tracking-list h2 {
  margin: 0 0 8px;
  font-size: 24px;
}
.order-tracking-list a {
  display: grid;
  gap: 4px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
}
.order-tracking-list a.is-active,
.order-tracking-list a:hover {
  border-color: var(--moss);
  background: var(--wash);
}
.order-tracking-list strong {
  color: var(--moss);
}
.order-tracking-list em {
  color: var(--soft-ink);
  font-size: 13px;
  font-style: normal;
}
.order-tracking-detail {
  display: grid;
  gap: 22px;
  padding: clamp(20px, 4vw, 34px);
}
.order-tracking-detail__head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
}
.order-tracking-detail__head h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
}
.order-tracking-detail__head p {
  margin: 6px 0 0;
  color: var(--soft-ink);
}
.order-tracking-detail__head > strong {
  color: var(--moss);
  font-size: 28px;
}
.order-document-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -8px 0 22px;
}
.order-document-actions .button {
  width: auto;
}
.order-timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.order-timeline li {
  display: grid;
  gap: 8px;
  justify-items: center;
  padding: 14px 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--soft-ink);
  text-align: center;
}
.order-timeline span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--wash);
  color: var(--soft-ink);
  font-weight: 900;
}
.order-timeline li.is-complete {
  border-color: #c9dec5;
  background: #f3f8f1;
  color: var(--moss);
}
.order-timeline li.is-complete span {
  background: var(--moss);
  color: var(--wash);
}
.order-timeline li.is-cancelled,
.order-timeline.is-cancelled li.is-cancelled {
  border-color: #efc9bd;
  background: #fff2ef;
  color: #8a2d1f;
}
.order-tracking-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.order-tracking-cards section,
.order-tracking-items,
.order-tracking-address {
  padding: 18px;
}
.order-tracking-cards h3,
.order-tracking-items h3,
.order-tracking-address h3 {
  margin: 0 0 12px;
  font-size: 24px;
}
.order-tracking-cards dl {
  display: grid;
  gap: 10px;
  margin: 0 0 14px;
}
.order-tracking-cards dl div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 9px;
  border-bottom: 1px solid var(--line);
}
.order-tracking-cards dt {
  color: var(--soft-ink);
  font-weight: 800;
}
.order-tracking-cards dd {
  margin: 0;
  text-align: right;
  font-weight: 800;
}
.order-tracking-cards p,
.order-tracking-address p {
  margin: 0;
  color: var(--soft-ink);
}
.order-tracking-items table {
  margin-top: 8px;
}

.byo-product-detail {
  display: grid;
  grid-template-columns: minmax(320px, .95fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 70px);
  padding: clamp(42px, 7vw, 92px) clamp(20px, 7vw, 96px);
}
.byo-product-detail__media-col {
  min-width: 0;
}
.byo-product-gallery__stage {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}
.byo-product-gallery__panel {
  display: none;
  min-height: 100%;
}
.byo-product-gallery__panel.is-active {
  display: grid;
}
.byo-product-gallery__image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.byo-product-gallery__video {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  background: var(--cocoa);
}
.byo-product-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}
.byo-product-gallery__thumbs button {
  position: relative;
  overflow: hidden;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 6px;
  background: var(--white);
  cursor: pointer;
}
.byo-product-gallery__thumbs button.is-active {
  border-color: var(--cocoa);
}
.byo-product-gallery__thumbs img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.byo-product-gallery__thumbs i {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: rgba(37, 33, 29, .78);
  color: var(--paper);
}
.byo-product-gallery__placeholder {
  display: grid;
  aspect-ratio: 16 / 9;
  place-items: center;
  color: var(--soft-ink);
  background: var(--wash);
}
.byo-product-detail__summary {
  display: grid;
  align-content: start;
  gap: 18px;
}
.byo-product-detail__breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  color: var(--soft-ink);
  font-size: 14px;
  font-weight: 700;
}
.byo-product-detail__breadcrumbs a { color: var(--ink); }
.byo-product-detail__title {
  margin: 0;
  font-size: clamp(42px, 5vw, 60px);
}
.byo-product-detail__excerpt {
  margin: 0;
  color: var(--soft-ink);
}
.byo-product-detail__suitable {
  display: grid;
  gap: 10px;
}
.byo-product-detail__suitable > span {
  color: var(--moss);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.byo-product-detail__suitable ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-left: 20px;
  color: var(--soft-ink);
}
.byo-product-detail__suitable li {
  padding-left: 4px;
  line-height: 1.55;
}
.byo-product-detail__suitable li::marker {
  color: var(--moss);
}
.byo-product-detail__price-stock {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}
.byo-product-detail__price {
  font-size: 30px;
}
.byo-product-detail__stock {
  padding: 10px 15px;
  border-radius: 999px;
  background: var(--cocoa);
  color: var(--paper);
  font-size: 13px;
  font-weight: 800;
}
.byo-product-detail__stock.is-out-of-stock {
  background: #fae7e2;
  color: #8a2d1f;
}
.byo-product-detail__meta {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
}
.byo-product-detail__meta td {
  padding: 13px 14px;
  border-bottom: 1px solid var(--line);
}
.byo-product-detail__meta tr:last-child td { border-bottom: 0; }
.byo-product-detail__meta td:first-child {
  width: 36%;
  color: var(--soft-ink);
}
.byo-product-detail__purchase {
  display: grid;
  gap: 14px;
  padding: 18px;
}
.byo-product-detail__cart-form {
  display: grid;
  gap: 12px;
  margin: 0;
}
.byo-product-variations {
  flex-basis: 100%;
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0 0 4px;
  border: 0;
}
.byo-product-variations legend {
  padding: 0;
  color: var(--soft-ink);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.byo-product-variations div {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.byo-product-variations button {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  font-weight: 800;
}
.byo-product-variations button.is-active {
  border-color: var(--cocoa);
  background: var(--cocoa);
  color: var(--paper);
}
.byo-product-detail__cart-qty {
  max-width: 130px;
}
.byo-product-detail__cart-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: end;
}
.wishlist-form--detail .wishlist-button {
  min-height: 46px;
  min-width: 188px;
  padding: 0 22px;
  border-color: var(--ink);
  border-radius: 4px;
  justify-content: center;
  background: var(--ink);
  color: var(--paper);
  box-shadow: none;
  font-weight: 700;
}
.wishlist-form--detail .wishlist-button:hover,
.wishlist-form--detail .wishlist-button:focus-visible,
.wishlist-form--detail .wishlist-button.is-active {
  border-color: var(--cocoa);
  background: var(--cocoa);
  color: var(--paper);
}

.byo-product-enquiry {
  display: grid;
  gap: 12px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 32px rgba(94, 48, 35, .05);
}
.byo-product-enquiry h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
}
.byo-product-enquiry p:not(.eyebrow) {
  margin: 0;
  color: var(--soft-ink);
}
.byo-product-enquiry__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}
.byo-product-enquiry__actions .button {
  width: auto;
  gap: 8px;
}
.byo-product-detail__content {
  grid-column: 1 / -1;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.byo-product-detail__content > h2 {
  font-size: clamp(25px, 4vw, 35px);
}
.byo-product-detail__wysiwyg {
  max-width: 860px;
  color: var(--soft-ink);
  line-height: 1.7;
}
.byo-product-detail__wysiwyg p {
  margin: 0 0 12px;
}
.byo-product-detail__wysiwyg h2,
.byo-product-detail__wysiwyg h3 {
  margin: 18px 0 10px;
  color: var(--ink);
  line-height: 1.25;
}
.byo-product-detail__wysiwyg h2 {
  font-size: clamp(26px, 3vw, 36px);
}
.byo-product-detail__wysiwyg h3 {
  font-size: clamp(22px, 2.4vw, 28px);
}
.byo-product-detail__wysiwyg ul,
.byo-product-detail__wysiwyg ol {
  margin: 0 0 12px 22px;
  padding: 0;
}
.byo-product-detail__wysiwyg li {
  margin: 3px 0;
  line-height: 1.55;
}
.byo-product-detail__wysiwyg blockquote {
  margin: 16px 0;
  padding: 10px 14px;
  border-left: 4px solid var(--rose);
  background: var(--wash);
}
.byo-product-detail__wysiwyg hr {
  margin: 18px 0;
  border: 0;
  border-top: 1px solid var(--line);
}
.byo-product-detail__wysiwyg img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 14px 0;
  border-radius: 6px;
}
.byo-product-detail__wysiwyg a {
  color: var(--moss);
  font-weight: 800;
  text-decoration: underline;
}
.byo-product-detail__wysiwyg strong,
.byo-product-detail__wysiwyg b {
  color: var(--ink);
  font-weight: bold;
}
.byo-product-detail__wysiwyg > :first-child {
  margin-top: 0;
}
.byo-product-detail__wysiwyg > :last-child {
  margin-bottom: 0;
}
.product-detail-list {
  display: grid;
  gap: 22px;
  width: min(980px, 100%);
  margin-top: 20px;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--wash);
}
.product-detail-list h3 {
  margin: 0 0 8px;
  color: var(--soft-ink);
  font-size: 22px;
  font-style: italic;
  font-weight: 800;
}
.product-detail-list p {
  margin: 0;
}
.product-detail-list ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding-left: 22px;
}
.product-detail-list li {
  padding-left: 2px;
  line-height: 1.55;
}
.product-detail-list strong {
  color: var(--ink);
  font-weight: 800;
}
.byo-checkout {
  padding: clamp(42px, 7vw, 92px) clamp(20px, 7vw, 96px);
}
.byo-checkout__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: clamp(24px, 4vw, 52px);
  align-items: start;
}
.byo-checkout__main,
.byo-checkout__summary {
  display: grid;
  gap: 18px;
}
.byo-checkout__panel,
.byo-checkout__summary {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 32px rgba(94, 48, 35, .05);
}
.byo-checkout__panel.is-readonly {
  background: var(--wash);
}
.byo-checkout__panel.is-readonly .byo-checkout__panel-head p::after {
  content: " Using billing details.";
  color: var(--cocoa);
  font-weight: 800;
}
.byo-checkout__panel-head {
  margin-bottom: 18px;
}
.byo-checkout__panel-head h2,
.byo-checkout__panel-head h3 {
  margin: 0 0 6px;
  font-size: 28px;
}
.byo-checkout__panel-head p {
  margin: 0;
  color: var(--soft-ink);
}
.byo-checkout__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.byo-checkout__field--full {
  grid-column: 1 / -1;
}
.byo-checkout__checkbox {
  display: flex;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.byo-checkout__checkbox input {
  width: auto;
}
.byo-checkout__sidebar {
  position: sticky;
  top: 112px;
}
.byo-checkout__summary-items {
  display: grid;
  gap: 12px;
}
.byo-checkout__summary-item,
.byo-checkout__summary-total,
.byo-checkout__summary-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.byo-checkout__summary-item span {
  display: block;
  color: var(--soft-ink);
  font-size: 13px;
}
.byo-checkout__summary-total {
  font-size: 18px;
  font-weight: 800;
}
.byo-checkout__summary-row--discount {
  color: var(--moss);
  font-weight: 800;
}
.byo-promo-code {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: end;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--wash);
}
.byo-promo-code .byo-checkout__field {
  min-width: 0;
}
.byo-promo-code .button-link {
  min-height: 44px;
  gap: 8px;
  padding: 0 14px;
  border-color: var(--cocoa);
  background: var(--cocoa);
  color: var(--paper);
}
.byo-promo-code__message {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--cocoa);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}
.byo-promo-code__message.is-error {
  color: #9a3f25;
}
.byo-checkout__shipping-note {
  margin: -4px 0 4px;
  color: var(--soft-ink);
  font-size: 13px;
}
.byo-checkout__summary .button {
  width: 100%;
}
.byo-payment-options {
  display: grid;
  gap: 10px;
}
.byo-payment-option {
  position: relative;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  column-gap: 10px;
  align-items: center;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  cursor: pointer;
}
.byo-payment-option input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}
.byo-payment-option span {
  display: grid;
  grid-row: span 2;
  justify-self: start;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--wash);
  color: var(--cocoa);
}
.byo-payment-option--stripe span {
  width: 58px;
  border-radius: 0;
  background: transparent;
  color: #635bff;
  font-size: 34px;
  justify-content: start;
}
.byo-payment-option strong,
.byo-payment-option em {
  display: block;
}
.byo-payment-option em {
  color: var(--soft-ink);
  font-size: 13px;
  font-style: normal;
}
.byo-payment-option input:checked + span {
  background: var(--cocoa);
  color: var(--paper);
}
.byo-payment-option--stripe input:checked + span {
  background: transparent;
  color: #635bff;
}
.byo-payment-option:has(input:checked) {
  border-color: var(--cocoa);
  background: var(--wash);
}
.byo-payment-option:has(input:checked) span {
  background: var(--cocoa);
  color: var(--paper);
}
.byo-payment-option--stripe:has(input:checked) span {
  background: transparent;
  color: #635bff;
}
.byo-checkout__payment-panel {
  display: grid;
  gap: 14px;
}
.byo-checkout__payment-panel[hidden] {
  display: none;
}
.byo-checkout__stripe-note {
  display: grid;
  gap: 4px;
  padding: 0 2px;
}
.byo-checkout__stripe-note strong,
.byo-checkout__stripe-note span {
  display: block;
}
.byo-checkout__stripe-note span {
  color: var(--soft-ink);
  font-size: 13px;
  line-height: 1.5;
}
.byo-checkout__payment-method {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--wash);
}
.byo-checkout__payment-method i {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--cocoa);
  color: var(--paper);
}
.byo-checkout__payment-method strong,
.byo-checkout__payment-method span {
  display: block;
}
.byo-checkout__payment-method span {
  color: var(--soft-ink);
  font-size: 13px;
}
.byo-checkout__payment-layout {
  display: grid;
  grid-template-columns: minmax(180px, 240px) minmax(0, 1fr);
  gap: 18px;
}
.byo-checkout__summary-payment {
  display: grid;
  gap: 14px;
  padding-top: 6px;
  border-top: 1px solid var(--line);
}
.byo-checkout__summary-payment .byo-checkout__panel-head {
  margin-bottom: 0;
}
.byo-checkout__summary-payment .byo-checkout__panel-head h2 {
  font-size: 22px;
}
.byo-checkout__payment-layout--summary {
  grid-template-columns: 1fr;
}
.byo-checkout__payment-layout--summary .byo-checkout__payment-qr {
  justify-items: center;
}
.byo-checkout__payment-layout--summary .byo-checkout__payment-qr img {
  max-width: 210px;
}
.byo-checkout__payment-qr {
  display: grid;
  gap: 10px;
  align-content: start;
}
.byo-checkout__payment-qr img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--wash);
}
.byo-checkout__payment-qr a {
  font-weight: 800;
}
.byo-checkout__payment-card {
  display: grid;
  gap: 14px;
}
.byo-checkout__payment-card dl {
  display: grid;
  gap: 8px;
  margin: 0;
}
.byo-checkout__payment-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}
.byo-checkout__payment-card dt {
  color: var(--soft-ink);
  font-weight: 800;
}
.byo-checkout__payment-card dd {
  margin: 0;
  font-weight: 800;
  text-align: right;
}
.byo-checkout__payment-card small {
  display: block;
  margin-top: 6px;
  color: var(--soft-ink);
}
.byo-receipt-upload {
  display: grid;
  gap: 9px;
  padding: 14px;
  border: 1px dashed var(--rose);
  border-radius: 8px;
  background: var(--wash);
  cursor: pointer;
}
.byo-receipt-upload > span {
  color: var(--soft-ink);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.byo-receipt-upload input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.byo-receipt-upload strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  border-radius: 6px;
  background: var(--cocoa);
  color: var(--paper);
}
.byo-receipt-upload em {
  color: var(--soft-ink);
  font-size: 13px;
  font-style: normal;
  overflow-wrap: anywhere;
}

.site-footer {
  padding: 58px clamp(20px, 7vw, 96px) 28px;
  border-top: 1px solid rgba(255,250,244,.12);
  background: var(--cocoa);
  color: var(--paper);
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.35fr) repeat(5, minmax(120px, 1fr));
  gap: clamp(24px, 4vw, 56px);
}
.footer-logo img {
  width: clamp(12rem, 15vw, 15rem);
  height: auto;
  filter: brightness(0) invert(1) sepia(.16) saturate(.55);
}

.footer-brand p {
    max-width: 350px;
    text-align: justify;
}

.footer-brand p, .footer-contact, .footer-col p {
  color: rgba(237,228,216,.76);
}
.footer-col h3 {
  margin: 0 0 16px;
  font: 800 13px/1.2 var(--font-main);
  font-family: var(--font-main);
  letter-spacing: .14em;
  text-transform: uppercase;
}
.footer-links {
  display: grid;
  gap: 9px;
}
.footer-social-links {
  display: grid;
  gap: 10px;
}
.footer-social-links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(237,228,216,.86);
}
.footer-social-links i {
  width: 18px;
  color: var(--paper);
  text-align: center;
}
.footer-links a,
.footer-contact a,
.footer-bottom a {
  color: rgba(237,228,216,.86);
}
.footer-links a:hover,
.footer-social-links a:hover,
.footer-contact a:hover,
.footer-bottom a:hover {
  color: var(--white);
}
.footer-social-links a:hover i {
  color: var(--white);
}
.footer-contact {
  display: grid;
  gap: 12px;
  margin: 0;
}
.footer-contact div {
  display: grid;
  gap: 2px;
}
.footer-contact dt {
  color: var(--paper);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.footer-contact dd { margin: 0; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 46px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,250,244,.14);
  color: rgba(237,228,216,.66);
}
.footer-bottom p { margin: 0; }
.footer-bottom div { display: flex; gap: 16px; }

@media (max-width: 1024px) {
  .hero-slider { aspect-ratio: 16 / 8; }
  .story-intro {
    min-height: 0;
    align-content: stretch;
    overflow: visible;
    background: var(--paper);
  }
  .story-intro::before {
    display: none;
  }
  .story-intro__image {
    position: static;
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    object-fit: cover;
  }
  .story-intro__content {
    width: min(760px, 100%);
    padding: clamp(34px, 7vw, 72px) clamp(20px, 7vw, 64px);
  }
  .story-intro__content h2 {
    font-size: clamp(38px, 8vw, 68px);
  }
  .category-grid .carousel-item {
    flex-basis: calc((100% - 22px) / 2);
  }
  .product-carousel .carousel-item {
    flex-basis: calc((100% - 22px) / 2);
  }
  .partners-grid .carousel-item {
    flex-basis: calc((100% - 22px) / 2);
  }
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .hero-slider { aspect-ratio: 16 / 9; }
  .nav-toggle { display: inline-flex; }
  .mobile-cart-link { display: none; }
  .desktop-cart-link { display: none; }
  .site-header {
    min-height: 72px;
    justify-content: flex-start;
    gap: 14px;
    background: var(--cocoa) !important;
    border-bottom-color: rgba(255, 250, 244, .18);
    box-shadow: 0 12px 34px rgba(58, 28, 20, .16);
    backdrop-filter: blur(14px);
  }
  body.has-transparent-header.header-at-top .site-header {
    background: var(--cocoa) !important;
    border-bottom-color: rgba(255, 250, 244, .18);
    box-shadow: 0 12px 34px rgba(58, 28, 20, .16);
    backdrop-filter: blur(14px);
    position: relative;
  }
  .site-header .brand {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1;
    transform: translate(-50%, -50%);
  }
  .site-header .brand img,
  body.has-transparent-header.header-at-top.header-on-light .brand img,
  body.has-transparent-header.header-at-top .brand.header-contrast-light img {
    width: clamp(5rem, 22vw, 6.8rem);
    filter: brightness(0) invert(1);
  }
  .header-actions {
    display: flex;
    margin-left: auto;
    gap: clamp(12px, 3vw, 18px);
    z-index: 2;
  }
  .header-left-actions {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: clamp(8px, 2.4vw, 12px);
  }
  .language-switcher--desktop {
    display: none;
  }
  .language-switcher--mobile {
    position: relative;
    display: inline-flex;
    min-height: 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--white);
  }
  .language-toggle {
    min-width: 34px;
    min-height: 34px;
    color: var(--white);
    font-size: 19px;
  }
  .language-switcher__menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    z-index: 90;
    min-width: 118px;
    display: none;
    gap: 4px;
    padding: 8px;
    border: 1px solid rgba(94, 48, 35, .12);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 18px 46px rgba(94, 48, 35, .18);
    color: var(--soft-ink);
  }
  .language-switcher--mobile.is-open .language-switcher__menu {
    display: grid;
  }
  .language-switcher__menu a {
    display: flex;
    align-items: center;
    min-height: 36px;
    padding: 8px 10px;
    border-radius: 6px;
    color: var(--soft-ink);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0;
    white-space: nowrap;
  }
  .language-switcher__menu a:hover,
  .language-switcher__menu a:focus-visible,
  .language-switcher__menu a.is-active {
    background: var(--wash);
    color: var(--ink);
  }
  .header-search-action--desktop {
    display: none;
  }
  .header-search-action--mobile {
    display: inline-flex;
    z-index: 2;
    margin-left: clamp(8px, 2vw, 12px);
  }
  .header-search-action .nav-icon-link {
    min-width: 34px;
    min-height: 34px;
    font-size: 18px;
  }
  .nav-toggle {
    z-index: 2;
    order: -1;
  }
  .nav-toggle i,
  .language-toggle,
  .header-actions .nav-utility-links--mobile .nav-icon-link,
  .header-search-action--mobile .nav-icon-link,
  body.has-transparent-header.header-at-top.header-on-light .nav-toggle i,
  body.has-transparent-header.header-at-top.header-on-light .language-toggle,
  body.has-transparent-header.header-at-top .nav-toggle.header-contrast-light i,
  body.has-transparent-header.header-at-top .language-toggle.header-contrast-light,
  body.has-transparent-header.header-at-top .header-search-action--mobile .nav-icon-link.header-contrast-light,
  body.has-transparent-header.header-at-top .header-actions .nav-icon-link.header-contrast-light {
    color: var(--white) !important;
    text-shadow: none;
  }
  .site-nav {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 60;
    width: min(86vw, 360px);
    height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 22px;
    background: var(--paper);
    border-right: 1px solid var(--line);
    box-shadow: 30px 0 80px rgba(94, 48, 35, .18);
    overflow-y: auto;
    transform: translateX(-105%);
    transition: transform .24s ease;
  }
  .site-nav.open { transform: translateX(0); }
  .mobile-nav-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
  }
  .mobile-nav-head img { width: 128px; }
  .mobile-nav-head button {
    width: 42px;
    height: 42px;
    min-height: 42px;
    padding: 0;
    background: none;
    color: var(--ink);
    border: none;
    font-size: large;
  }
  .site-nav > a,
  .site-nav > a,
  .nav-dropdown-trigger {
    width: 100%;
    justify-content: flex-start;
    padding: 13px 14px;
  }
  .nav-dropdown {
    display: grid;
    gap: 6px;
  }
  .nav-dropdown::after {
    display: none;
  }
  .nav-dropdown-trigger-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 42px;
    align-items: center;
    gap: 0;
  }
  .nav-dropdown-trigger {
    padding-right: 6px;
  }
  .nav-dropdown-trigger > i {
    display: none;
  }
  .mobile-nav-submenu-toggle {
    display: grid;
    width: 42px;
    height: 42px;
    min-height: 42px;
    place-items: center;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--ink);
    font-size: 13px;
    box-shadow: none;
  }
  .mobile-nav-submenu-toggle i {
    transition: transform .18s ease;
  }
  .nav-dropdown.is-open .mobile-nav-submenu-toggle i {
    transform: rotate(180deg);
  }
  .nav-dropdown-menu {
    display: grid;
    position: static;
    left: auto;
    right: auto;
    top: auto;
    z-index: auto;
    width: auto;
    max-height: none;
    min-width: 0;
    gap: 8px;
    margin: 0 0 4px 14px;
    padding: 8px 0 8px 12px;
    background: rgba(237, 228, 216, .34);
    backdrop-filter: none;
    box-shadow: none;
    border: 0;
    border-left: 1px solid rgba(94, 48, 35, .16);
    border-radius: 0;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    visibility: visible;
  }
  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu,
  .nav-dropdown.is-open .nav-dropdown-menu {
    transform: none;
  }
  .nav-dropdown:not(.is-open) .nav-dropdown-menu {
    display: none;
  }
  .nav-dropdown-menu a {
    padding: 0;
    border-radius: 0;
    color: var(--ink);
  }
  .nav-dropdown-card {
    display: flex;
    min-height: 0;
    width: 100%;
    flex: none;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    padding: 7px 8px;
    border: 0;
    border-radius: 6px;
    background: transparent;
    text-align: left;
    transform: none;
  }
  .nav-dropdown-card:hover,
  .nav-dropdown-card:focus-visible {
    background: rgba(255, 250, 244, .72);
    transform: none;
  }
  .nav-dropdown-card__icon {
    width: 34px;
    height: 34px;
    font-size: 14px;
  }
  .nav-dropdown-card__thumb {
    width: 58px;
    flex: 0 0 58px;
    border-radius: 6px;
  }
  .site-nav .nav-utility-links--desktop {
    display: none;
  }
  .header-actions .nav-utility-links--mobile {
    display: inline-flex;
    width: auto;
    flex-wrap: nowrap;
    justify-content: flex-end;
    gap: clamp(10px, 2.4vw, 14px);
    margin-left: 0;
    padding: 0;
  }
  .header-actions .nav-utility-links--mobile .nav-icon-link,
  .header-actions .nav-utility-links--mobile .cart-link {
    display: inline-flex;
    min-width: 34px;
    min-height: 34px;
    font-size: 18px;
  }
  .header-actions .nav-utility-links--mobile .account-status {
    width: auto;
    gap: 0;
  }
  .header-actions .nav-utility-links--mobile .account-greeting,
  .header-actions .nav-utility-links--mobile .account-logout-link {
    display: none;
  }
  .header-search-overlay {
    position: fixed;
    bottom: auto;
    min-height: 72px;
  }
  .header-search-container {
    gap: 12px;
    padding: 14px clamp(18px, 5vw, 32px);
  }
  .header-search-form {
    display: flex;
  }
  .account-status {
    width: 100%;
    flex-wrap: wrap;
    gap: 2vw;
  }
  .account-link--signed-in,
  .account-logout-link {
    min-height: 44px;
  }
  .account-logout-link {
    display: inline-flex;
    align-items: center;
  }
  .product-detail, .checkout-layout, .shop-layout {
    grid-template-columns: 1fr;
  }
  .contact-page__grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .contact-page__intro,
  .contact-page__grid {
    width: min(620px, 100%);
    margin-left: auto;
    margin-right: auto;
  }
  .additional-section {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .additional-section__media,
  .additional-section--reverse .additional-section__media {
    order: -1;
    min-height: 0;
  }
  .additional-section__media img {
    position: static;
    aspect-ratio: 16 / 9;
    width: 100%;
    height: auto;
  }
  .additional-section__content {
    padding: clamp(42px, 8vw, 74px) clamp(20px, 7vw, 96px);
  }
  .category-grid, .product-grid {
    display: flex;
  }
  .carousel-item {
    flex-basis: calc((100% - 22px) / 2);
  }
  .shop-layout .product-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .shop-filter { position: static; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ingredient-intro,
  .ingredient-standards,
  .ingredient-formula-cta {
    grid-template-columns: 1fr;
  }
  .ingredient-principles,
  .ingredient-standards__list,
  .ingredient-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .ingredient-principles article {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .ingredient-formula-card {
    grid-template-columns: 128px minmax(0, 1fr) 24px;
  }
  .ingredient-formula-card img {
    width: 128px;
  }
  .byo-cart__row--head {
    display: none;
  }
  .byo-cart__row {
    grid-template-columns: 1fr;
    gap: 12px;
    align-items: stretch;
    padding: 16px;
  }
  .byo-cart__product {
    grid-template-columns: 88px 1fr;
  }
  .byo-cart__product-media {
    width: 88px;
  }
  .byo-cart__unit-price,
  .byo-cart__qty,
  .byo-cart__line-total,
  .byo-cart__remove {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 10px;
    border-top: 1px solid var(--line);
  }
  .byo-cart__unit-price::before,
  .byo-cart__qty::before,
  .byo-cart__line-total::before,
  .byo-cart__remove::before {
    content: attr(data-label);
    color: var(--soft-ink);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
  }
  .byo-cart__summary {
    justify-content: stretch;
  }
  .byo-cart__summary > * {
    width: 100%;
  }
  .byo-cart__summary-row {
    justify-content: space-between;
  }
  .byo-product-detail,
  .byo-checkout__layout,
  .order-tracking-page,
  .order-tracking-cards {
    grid-template-columns: 1fr;
  }
  .byo-checkout__sidebar,
  .order-tracking-list {
    position: static;
  }
  .order-timeline {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .byo-product-detail__cart-form {
    align-items: stretch;
  }
}

@media (max-width: 620px) {
  .hero-slider { aspect-ratio: 4 / 5.5; }
  .hero-slide { align-items: center; }
  .wishlist-notification {
    grid-template-columns: 64px minmax(0, 1fr);
  }
  .wishlist-notification img {
    width: 64px;
  }
  .story-intro__image {
    aspect-ratio: 4 / 3;
  }
  .story-intro__content {
    padding: 32px 20px 44px;
  }
  .story-intro__content h2 {
    font-size: clamp(34px, 11vw, 48px);
  }
  .category-grid .carousel-item,
  .carousel-item { flex-basis: 100%; }
  .product-carousel .carousel-item { flex-basis: 100%; }
  .partners-grid .carousel-item { flex-basis: 100%; }
  .carousel-track { gap: 14px; }
  .shop-filter, .shop-layout .product-grid {
    grid-template-columns: 1fr;
  }
  .ingredients-hero {
    min-height: 620px;
    background-position: center top;
  }
  .ingredients-hero__content img {
    width: min(230px, 72vw);
  }
  .ingredients-hero__title,
  .ingredients-hero__title p {
    font-size: clamp(20px, 6vw, 28px);
  }
  .ingredients-hero__badges {
    gap: 14px;
  }
  .ingredients-hero__badges span {
    max-width: 96px;
    font-size: 10px;
  }
  .ingredient-principles,
  .ingredient-standards__list,
  .ingredient-grid,
  .ingredient-tabs {
    grid-template-columns: 1fr;
  }
  .ingredient-principles {
    display: grid;
  }
  .ingredient-tabs {
    display: grid;
  }
  .ingredient-tabs button {
    width: 100%;
    min-width: 0;
  }
  .ingredient-card > div {
    padding: 16px;
  }
  .ingredient-formula-card {
    grid-template-columns: 96px minmax(0, 1fr) 22px;
    gap: 12px;
    padding: 12px;
  }
  .ingredient-formula-card img {
    width: 96px;
  }
  .footer-grid, .footer-bottom {
    grid-template-columns: 1fr;
    display: grid;
  }
  .footer-bottom div { flex-wrap: wrap; }
  table { display: block; overflow-x: auto; }
  .byo-cart__product {
    grid-template-columns: 76px 1fr;
  }
  .byo-cart__product-media {
    width: 76px;
  }
  .byo-checkout__grid {
    grid-template-columns: 1fr;
  }
  .byo-promo-code {
    grid-template-columns: 1fr;
  }
  .byo-checkout__payment-layout {
    grid-template-columns: 1fr;
  }
  .order-timeline {
    grid-template-columns: 1fr;
  }
  .order-tracking-cards dl div,
  .order-tracking-detail__head {
    display: grid;
  }
  .order-tracking-cards dd {
    text-align: left;
  }
  .byo-product-detail__purchase,
  .byo-product-detail__cart-form,
  .byo-product-detail__cart-actions,
  .byo-product-detail__cart-actions .button,
  .byo-product-detail__wishlist,
  .wishlist-form--detail .wishlist-button {
    width: 100%;
  }
  .byo-product-detail__cart-qty {
    max-width: none;
  }
}
