:root,
html[data-theme="atelier-chrome"] {
  --ink: #171a1d;
  --ink-soft: #535b61;
  --paper: #ffffff;
  --surface: #f1f4f4;
  --line: #d9dfe0;
  --brand: #d7b65e;
  --teal: #236d69;
  --teal-dark: #174d4b;
  --red: #a93434;
  --green-soft: #e0efeb;
  --discount-bg: #285e50;
  --discount-ink: #fff8df;
  --card-tint: #f7f9f8;
  --shadow: 0 12px 32px rgba(18, 28, 33, 0.1);
  --site-width: 1320px;
}

/* Mobile account clarity and checkout identity/payment flow */
.wishlist-summary__icon { position: relative; }
.wishlist-summary__count {
  min-width: 16px;
  height: 16px;
  position: absolute;
  top: -5px;
  right: -5px;
  display: grid;
  place-items: center;
  padding: 0 4px;
  border: 2px solid #fff;
  border-radius: 9px;
  background: var(--brand);
  color: #fff;
  font-size: 8px;
  font-weight: 800;
  line-height: 1;
}
.wishlist-button .wishlist-icon {
  width: 18px;
  height: 18px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}
.wishlist-button.is-saved .wishlist-icon { fill: currentColor; }

.mobile-shop-nav__button.is-authenticated .mobile-shop-nav__icon--account {
  background: rgba(255, 255, 255, 0.13);
  border-color: currentColor;
}
.mobile-account-check {
  width: 13px;
  height: 13px;
  position: absolute;
  top: -4px;
  right: -6px;
  border: 2px solid #06473f;
  border-radius: 50%;
  background: #64d19d;
}
.mobile-account-check::after {
  content: "";
  width: 5px;
  height: 3px;
  position: absolute;
  left: 2px;
  top: 2px;
  border-left: 1.5px solid #073f38;
  border-bottom: 1.5px solid #073f38;
  transform: rotate(-45deg);
}

.checkout-dialog {
  max-height: min(860px, calc(100dvh - 32px));
  overflow: auto;
  overscroll-behavior: contain;
}
.checkout-dialog .dialog-header {
  position: sticky;
  z-index: 2;
  top: 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.checkout-account {
  margin-bottom: 16px;
  padding: 12px;
  background: #f2f8f5;
  border: 1px solid #c8ddd5;
  border-radius: 7px;
}
.checkout-account__guest,
.checkout-account__signed-in {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
}
.checkout-account__signed-in { grid-template-columns: auto minmax(0, 1fr); }
.checkout-account__icon,
.checkout-account__verified {
  width: 34px;
  height: 34px;
  position: relative;
  display: block;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #b7d3ca;
}
.checkout-account__icon::before {
  content: "";
  width: 8px;
  height: 8px;
  position: absolute;
  left: 12px;
  top: 7px;
  border: 1.5px solid var(--teal-dark);
  border-radius: 50%;
}
.checkout-account__icon::after {
  content: "";
  width: 16px;
  height: 8px;
  position: absolute;
  left: 8px;
  bottom: 5px;
  border: 1.5px solid var(--teal-dark);
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
}
.checkout-account__verified { background: var(--teal); border-color: var(--teal); }
.checkout-account__verified::after {
  content: "";
  width: 13px;
  height: 7px;
  position: absolute;
  left: 9px;
  top: 10px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}
.checkout-account strong,
.checkout-account small,
.checkout-account__signed-in span { display: block; }
.checkout-account strong { color: var(--ink); font-size: 12px; }
.checkout-account small,
.checkout-account__signed-in span { margin-top: 2px; color: var(--ink-soft); font-size: 9px; }
.checkout-account__button { min-height: 36px; padding-inline: 12px; white-space: nowrap; }
.checkout-account__guest-note {
  margin: 9px 0 -2px;
  color: var(--ink-soft);
  font-size: 9px;
  text-align: center;
}

.payment-methods__list { display: grid; gap: 8px; }
.payment-method { position: relative; cursor: pointer; }
.payment-method span { min-width: 0; flex: 1; }
.payment-method em {
  margin-left: auto;
  padding: 3px 6px;
  border-radius: 3px;
  background: #d9eee7;
  color: var(--teal-dark);
  font-size: 8px;
  font-style: normal;
  font-weight: 800;
  white-space: nowrap;
}
.payment-method--disabled em { background: #e6e9e8; color: #68716f; }
.payment-pending-note { max-width: 460px; margin-inline: auto; padding: 10px 12px; border: 1px solid #d9e4e1; border-radius: 6px; background: #f3f8f6; font-size: 11px; }

html[data-theme="noir-brass"] {
  --ink: #131416;
  --ink-soft: #625f58;
  --paper: #fbfaf7;
  --surface: #efede7;
  --line: #d7d2c8;
  --brand: #b98d3b;
  --teal: #3f5a58;
  --teal-dark: #293e3c;
  --red: #9e3d32;
  --green-soft: #e5e9e4;
  --discount-bg: #655126;
  --discount-ink: #fff7dc;
  --card-tint: #f3f1eb;
  --shadow: 0 14px 36px rgba(19, 20, 22, 0.14);
}

html[data-theme="mineral-spa"] {
  --ink: #14231f;
  --ink-soft: #53635e;
  --paper: #ffffff;
  --surface: #edf3f1;
  --line: #d4e0dc;
  --brand: #9bb6b0;
  --teal: #0a6b61;
  --teal-dark: #084b45;
  --red: #a8413c;
  --green-soft: #dcefe9;
  --discount-bg: #176257;
  --discount-ink: #f4fffb;
  --card-tint: #f2f7f5;
  --shadow: 0 12px 32px rgba(12, 61, 54, 0.1);
}

[hidden] { display: none !important; }
* { box-sizing: border-box; letter-spacing: 0; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: "Manrope", Arial, sans-serif; font-size: 15px; line-height: 1.55; }
body.drawer-open { overflow: hidden; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.site-width { width: min(calc(100% - 40px), var(--site-width)); margin-inline: auto; }
.skip-link { position: fixed; top: 8px; left: 8px; z-index: 1000; padding: 10px 14px; background: var(--ink); color: #fff; transform: translateY(-140%); }
.skip-link:focus { transform: translateY(0); }

.announcement { background: var(--ink); color: #fff; font-size: 12px; font-weight: 700; }
.announcement__inner { min-height: 32px; display: flex; align-items: center; justify-content: center; gap: 14px; }
.announcement__inner a { color: var(--brand); text-decoration: underline; text-underline-offset: 3px; }
.announcement__divider { width: 1px; height: 13px; background: #6b7074; }
.site-header { position: sticky; top: 0; z-index: 40; background: rgba(255, 255, 255, 0.97); border-bottom: 1px solid var(--line); backdrop-filter: blur(10px); }
.header-main { min-height: 78px; display: grid; grid-template-columns: auto auto minmax(260px, 1fr) auto auto auto; align-items: center; gap: 18px; }
.brand { display: inline-flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.brand__mark { width: 40px; height: 40px; display: grid; place-items: center; background: var(--brand); border: 2px solid var(--ink); border-radius: 6px; font-family: "Roboto Condensed", Arial, sans-serif; font-size: 18px; font-weight: 800; }
.brand__text { font-family: "Roboto Condensed", Arial, sans-serif; font-size: 24px; font-weight: 700; line-height: 1; }
.brand__text span { color: var(--teal); }
.location-button, .header-action, .cart-button { border: 0; background: transparent; cursor: pointer; }
.location-button { min-width: 144px; height: 46px; padding: 4px 8px; display: flex; align-items: center; gap: 9px; text-align: left; border-radius: 6px; }
.location-button:hover, .header-action:hover { background: var(--surface); }
.location-button small, .cart-button small { display: block; color: var(--ink-soft); font-size: 10px; line-height: 1.2; }
.location-button strong, .cart-button strong { display: block; max-width: 110px; overflow: hidden; font-size: 13px; line-height: 1.3; text-overflow: ellipsis; white-space: nowrap; }
.location-pin { position: relative; width: 17px; height: 21px; border: 2px solid var(--teal); border-radius: 10px 10px 12px 12px; }
.location-pin::after { content: ""; position: absolute; left: 5px; top: 5px; width: 3px; height: 3px; border: 1px solid var(--teal); border-radius: 50%; }
.chevron { width: 7px; height: 7px; margin-left: auto; border-right: 2px solid var(--ink-soft); border-bottom: 2px solid var(--ink-soft); transform: rotate(45deg) translateY(-2px); }
.search-box { height: 48px; display: flex; align-items: center; gap: 12px; padding: 0 14px; background: var(--surface); border: 1px solid transparent; border-radius: 7px; }
.search-box:focus-within { background: #fff; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(8, 127, 114, 0.12); }
.search-box input { min-width: 0; width: 100%; height: 100%; border: 0; outline: 0; background: transparent; }
.search-box input::placeholder { color: #7a8287; }
.search-box kbd { padding: 3px 7px; color: var(--ink-soft); background: #fff; border: 1px solid #d7dcde; border-bottom-width: 2px; border-radius: 4px; font-family: inherit; font-size: 10px; white-space: nowrap; }
.search-icon { position: relative; width: 17px; height: 17px; flex: 0 0 17px; border: 2px solid var(--ink-soft); border-radius: 50%; }
.search-icon::after { content: ""; position: absolute; right: -5px; bottom: -3px; width: 7px; height: 2px; background: var(--ink-soft); transform: rotate(45deg); }
.header-action { width: 62px; height: 52px; display: grid; place-items: center; gap: 1px; border-radius: 6px; font-size: 10px; font-weight: 700; }
.account-icon { position: relative; width: 17px; height: 17px; border: 2px solid var(--ink); border-radius: 50%; }
.account-icon::after { content: ""; position: absolute; left: 50%; top: 16px; width: 24px; height: 11px; border: 2px solid var(--ink); border-bottom: 0; border-radius: 12px 12px 0 0; transform: translateX(-50%); }
.cart-button { min-width: 126px; height: 50px; padding: 7px 12px; display: flex; align-items: center; justify-content: center; gap: 11px; background: var(--teal); color: #fff; border-radius: 7px; }
.cart-button:hover { background: var(--teal-dark); }
.cart-button small { color: #c9f0e9; }
.cart-icon { position: relative; width: 22px; height: 16px; border: 2px solid #fff; border-top: 0; transform: skew(-6deg); }
.cart-icon::before { content: ""; position: absolute; left: -5px; top: -6px; width: 8px; height: 2px; background: #fff; }
.cart-icon::after { content: ""; position: absolute; left: 2px; bottom: -7px; width: 4px; height: 4px; background: #fff; border-radius: 50%; box-shadow: 13px 0 0 #fff; }

.delivery-hero { min-height: 390px; background: linear-gradient(90deg, rgba(12, 27, 29, 0.92) 0%, rgba(18, 42, 43, 0.82) 43%, rgba(34, 46, 43, 0.18) 73%, rgba(255, 255, 255, 0.04) 100%), url("https://images.unsplash.com/photo-1620626011761-996317b8d101?auto=format&fit=crop&w=1800&q=86") center 56% / cover; color: #fff; }
.delivery-hero__inner { min-height: 390px; position: relative; display: flex; align-items: center; }
.delivery-hero__content { width: min(660px, 65%); padding: 50px 0 44px; }
.eyebrow { display: block; margin-bottom: 8px; color: var(--brand); font-size: 11px; font-weight: 800; text-transform: uppercase; }
.eyebrow--dark { color: var(--teal); }
.delivery-hero h1 { max-width: 620px; margin: 0; font-family: "Roboto Condensed", Arial, sans-serif; font-size: clamp(38px, 5vw, 64px); line-height: 0.98; }
.delivery-hero__content > p { max-width: 590px; margin: 20px 0 0; color: #e4e9e9; font-size: 17px; }
.hero-actions { margin-top: 26px; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.primary-link, .primary-button, .secondary-button, .checkout-button { min-height: 44px; border: 0; border-radius: 6px; font-weight: 800; cursor: pointer; }
.primary-link { display: inline-flex; align-items: center; padding: 0 18px; background: var(--brand); color: var(--ink); font-size: 15px; }
.primary-link:hover, .primary-button:hover { background: #ffe357; }
.secondary-link { padding: 10px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.58); font-size: 15px; font-weight: 700; }
.hero-stats { margin: 28px 0 0; display: flex; gap: 28px; }
.hero-stats div { display: flex; align-items: baseline; gap: 7px; }
.hero-stats dt { color: var(--brand); font-family: "Roboto Condensed", Arial, sans-serif; font-size: 22px; font-weight: 700; }
.hero-stats dd { margin: 0; color: #c7d0d2; font-size: 11px; }
.hero-promise { position: absolute; right: 0; bottom: 22px; width: 210px; padding: 13px 16px; display: flex; align-items: center; gap: 10px; background: rgba(255, 255, 255, 0.93); color: var(--ink); border-left: 5px solid var(--brand); box-shadow: var(--shadow); font-size: 11px; line-height: 1.3; }
.hero-promise__time { color: var(--teal); font-family: "Roboto Condensed", Arial, sans-serif; font-size: 20px; font-weight: 700; }

.category-section, .catalog-section, .seo-content { padding-block: 50px; }
.section-heading, .catalog-heading { display: flex; align-items: end; justify-content: space-between; gap: 24px; }
.section-heading h2, .catalog-heading h2, .project-band h2, .seo-content h2 { margin: 0; font-family: "Roboto Condensed", Arial, sans-serif; font-size: 32px; line-height: 1.1; }
.text-button { padding: 7px 0; border: 0; border-bottom: 2px solid var(--ink); background: transparent; font-weight: 800; cursor: pointer; }
.category-grid { margin-top: 24px; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.category-card { min-height: 210px; position: relative; overflow: hidden; padding: 0; border: 1px solid rgba(211, 217, 218, 0.9); border-radius: 8px; background: #1b2022; cursor: pointer; text-align: left; box-shadow: 0 8px 22px rgba(17, 25, 28, 0.08); }
.category-card img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; object-position: center; filter: saturate(0.9) contrast(1.04); transition: transform 260ms ease, filter 260ms ease; }
.category-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10, 15, 17, 0.02) 30%, rgba(10, 15, 17, 0.84) 100%); }
.category-card:hover { box-shadow: 0 14px 32px rgba(17, 25, 28, 0.16); }
.category-card:hover img { transform: scale(1.025); filter: saturate(1) contrast(1.06); }
.category-card__content { width: 100%; min-height: 210px; position: relative; z-index: 1; padding: 18px; display: flex; flex-direction: column; justify-content: flex-end; color: #fff; }
.category-card__content strong { font-family: "Roboto Condensed", Arial, sans-serif; font-size: 25px; line-height: 1.05; text-shadow: 0 1px 12px rgba(0, 0, 0, 0.28); }
.category-card__content span { margin-top: 5px; color: #edf1f1; font-size: 11px; font-weight: 700; }
.category-card.is-active { outline: 3px solid var(--brand); outline-offset: 2px; }

.benefit-band { overflow: hidden; background: var(--surface); border-block: 1px solid var(--line); }
.benefit-band__track { width: 100%; }
.benefit-band__group { width: min(calc(100% - 40px), var(--site-width)); min-height: 88px; margin-inline: auto; display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); align-items: center; }
.benefit-band__group--clone { display: none; }
.benefit-band__item { min-width: 0; min-height: 58px; padding: 0 18px; display: flex; align-items: center; justify-content: center; gap: 11px; border-right: 1px solid var(--line); white-space: nowrap; }
.benefit-band__item:first-child { padding-left: 0; }
.benefit-band__item:last-child { padding-right: 0; border-right: 0; }
.benefit-band p { min-width: 0; margin: 0; }
.benefit-band strong, .benefit-band small { display: block; }
.benefit-band strong { font-size: 13px; line-height: 1.25; }
.benefit-band small { margin-top: 3px; color: var(--ink-soft); font-size: 10px; line-height: 1.3; }
.benefit-icon { width: 34px; height: 34px; flex: 0 0 34px; background: var(--teal); -webkit-mask: center / contain no-repeat; mask: center / contain no-repeat; }
.benefit-icon--warranty { -webkit-mask-image: url("/images/icons/warranty.svg"); mask-image: url("/images/icons/warranty.svg"); }
.benefit-icon--returns { -webkit-mask-image: url("/images/icons/returns.svg"); mask-image: url("/images/icons/returns.svg"); }
.benefit-icon--service { -webkit-mask-image: url("/images/icons/service.svg"); mask-image: url("/images/icons/service.svg"); }
.benefit-icon--delivery { -webkit-mask-image: url("/images/icons/dispatch.svg"); mask-image: url("/images/icons/dispatch.svg"); }
.benefit-icon--secure { -webkit-mask-image: url("/images/icons/secure-checkout.svg"); mask-image: url("/images/icons/secure-checkout.svg"); }

@keyframes benefit-scroll {
  to { transform: translateX(-50%); }
}
.catalog-section { min-height: 800px; }
.catalog-heading > div:first-child { max-width: 760px; }
.catalog-heading p { margin: 9px 0 0; color: var(--ink-soft); }
.category-switcher[hidden] { display: none; }
.category-switcher {
  display: none;
  position: sticky;
  z-index: 24;
  top: 114px;
  margin: -10px 0 24px;
  padding: 8px 0;
  background: rgba(227, 238, 234, 0.98);
  border-top: 1px solid rgba(11, 117, 106, 0.14);
  border-bottom: 1px solid rgba(11, 117, 106, 0.24);
  box-shadow: 0 8px 20px rgba(8, 75, 68, 0.12);
  backdrop-filter: blur(10px);
}
.category-switcher__track {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-padding-inline: 2px;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}
.category-switcher__track::-webkit-scrollbar { display: none; }
.category-switcher__item {
  min-height: 48px;
  flex: 0 0 auto;
  padding: 5px 11px 5px 6px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  scroll-snap-align: start;
  border: 1px solid #abc6bd;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.94);
  color: #203a34;
  box-shadow: 0 2px 7px rgba(8, 75, 68, 0.06);
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}
.category-switcher__item:hover { border-color: var(--teal); background: #f8fbf9; color: var(--teal-dark); }
.category-switcher__item:focus-visible { outline: 3px solid rgba(184, 101, 72, 0.4); outline-offset: 2px; }
.category-switcher__item.is-active { border-color: var(--teal-dark); background: var(--teal-dark); color: #fff; box-shadow: 0 4px 12px rgba(8, 75, 68, 0.24); }
.category-switcher__icon {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  display: grid;
  place-items: center;
  border-radius: 4px;
  background: #d7e8e2;
  color: var(--teal-dark);
}
.category-switcher__item.is-active .category-switcher__icon { background: var(--brand); color: #fff; }
.category-switcher__svg {
  width: 22px;
  height: 22px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.select-control { display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700; }
.select-control select { height: 42px; padding: 0 34px 0 12px; border: 1px solid var(--line); border-radius: 6px; background: #fff; outline: 0; }
.select-control select:focus { border-color: var(--teal); }
.active-filter { width: fit-content; margin-top: 20px; padding: 7px 9px 7px 12px; align-items: center; gap: 10px; background: var(--green-soft); border: 1px solid #b8dfca; border-radius: 6px; color: var(--teal-dark); font-size: 12px; font-weight: 700; }
.active-filter:not([hidden]) { display: flex; }
.active-filter button { border: 0; background: transparent; color: var(--teal-dark); text-decoration: underline; cursor: pointer; }
.product-grid { margin-top: 24px; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.product-card { min-width: 0; min-height: 398px; position: relative; display: flex; flex-direction: column; overflow: hidden; background: #fff; border: 1px solid #cfd8d7; border-radius: 7px; box-shadow: 0 5px 16px rgba(19, 34, 36, 0.055); transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease; }
.product-card:hover { border-color: #9eb3af; box-shadow: 0 13px 28px rgba(17, 39, 39, 0.12); transform: translateY(-2px); }
.product-card__media { width: 100%; aspect-ratio: 16 / 11; position: relative; overflow: hidden; padding: 0; background: var(--card-tint); border: 0; border-bottom: 1px solid var(--line); color: inherit; cursor: pointer; }
.product-card__media::after { content: ""; position: absolute; inset: auto 0 0; height: 28%; background: linear-gradient(180deg, transparent, rgba(10, 24, 24, 0.08)); pointer-events: none; }
.product-card__media img, .product-card__media video { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.88) contrast(1.045) brightness(1.015); transition: transform 240ms ease, filter 240ms ease; }
.product-card__media video { pointer-events: none; }
.product-card:hover .product-card__media img, .product-card:hover .product-card__media video { transform: scale(1.025); filter: saturate(0.98) contrast(1.06) brightness(1.02); }
.product-card__badges { position: absolute; z-index: 1; left: 9px; top: 9px; display: flex; gap: 5px; flex-wrap: wrap; }
.product-badge { padding: 4px 7px; background: rgba(23, 26, 29, 0.9); color: #fff; border-radius: 4px; box-shadow: 0 2px 8px rgba(10, 18, 18, 0.12); font-size: 9px; font-weight: 800; text-transform: uppercase; }
.product-badge--saving { background: var(--discount-bg); color: var(--discount-ink); }
.product-badge--video { background: rgba(255, 255, 255, 0.92); color: var(--ink); }
.product-card__body { padding: 13px 13px 12px; display: flex; flex: 1; flex-direction: column; }
.product-card__topline { display: flex; align-items: center; justify-content: space-between; gap: 7px; color: var(--ink-soft); font-size: 9px; font-weight: 700; }
.rating { width: fit-content; display: inline-flex; align-items: center; gap: 3px; padding: 2px 5px; background: #fff8df; border-radius: 4px; color: #67530c; }
.rating::before { content: "\2605"; color: #bd9200; font-size: 12px; }
.product-card h3 { min-height: 39px; margin: 6px 0 0; overflow: hidden; font-size: 15px; line-height: 1.3; }
.product-card__details-button { padding: 0; border: 0; background: transparent; text-align: left; cursor: pointer; }
.product-card__details-button:hover h3 { color: var(--teal-dark); text-decoration: underline; text-underline-offset: 3px; }
.product-card__highlights { min-height: 23px; margin: 6px 0 0; padding: 0; display: flex; flex-wrap: wrap; align-content: flex-start; gap: 4px; list-style: none; }
.product-card__highlights li { padding: 3px 6px; background: var(--card-tint); border: 1px solid #e5eae9; border-radius: 4px; color: var(--ink-soft); font-size: 9px; line-height: 1.25; }
.product-card__stock { margin: 7px 0 0; display: flex; align-items: center; gap: 6px; color: var(--teal-dark); font-size: 10px; font-weight: 800; }
.product-card__stock::before { content: ""; width: 7px; height: 7px; background: var(--teal); border-radius: 50%; }
.product-card__stock.is-low { color: #8a5a06; }
.product-card__stock.is-low::before { background: #c38316; }
.product-card__stock.is-out { color: var(--red); }
.product-card__stock.is-out::before { background: var(--red); }
.product-card__footer { min-height: 48px; margin-top: auto; padding-top: 6px; display: flex; align-items: end; justify-content: space-between; gap: 8px; }
.product-price { display: flex; align-items: baseline; gap: 5px; white-space: nowrap; }
.product-price strong { font-family: "Roboto Condensed", Arial, sans-serif; font-size: 20px; line-height: 1; }
.product-price del { color: #7c8585; font-size: 9px; }

.add-button { width: 88px; height: 38px; flex: 0 0 88px; border: 1px solid var(--teal); border-radius: 5px; background: #edf7f4; color: var(--teal-dark); font-size: 14px; font-weight: 800; cursor: pointer; }
.add-button:hover { background: var(--teal); color: #fff; }
.add-button:disabled { border-color: var(--line); background: var(--surface); color: #8a9194; cursor: not-allowed; }
.quantity-stepper { width: 94px; height: 38px; display: grid; grid-template-columns: 31px 1fr 31px; align-items: center; overflow: hidden; border: 1px solid var(--teal); border-radius: 5px; background: var(--teal); color: #fff; }
.quantity-stepper button { height: 100%; border: 0; background: transparent; color: #fff; font-size: 19px; font-weight: 700; cursor: pointer; }
.quantity-stepper button:hover { background: rgba(0, 0, 0, 0.12); }
.quantity-stepper button.is-at-limit { background: rgba(255, 255, 255, 0.1); }
.quantity-stepper span { text-align: center; font-size: 12px; font-weight: 800; }
.product-skeleton { min-height: 398px; border: 1px solid var(--line); border-radius: 8px; background: linear-gradient(100deg, #eef1f2 20%, #f9fafa 40%, #eef1f2 60%); background-size: 220% 100%; animation: shimmer 1.2s infinite; }
@keyframes shimmer { to { background-position-x: -220%; } }
.empty-state { margin-top: 28px; padding: 60px 20px; background: var(--surface); border: 1px solid var(--line); text-align: center; }
.empty-state h3 { margin: 0; font-size: 21px; }
.empty-state p { margin: 8px 0 18px; color: var(--ink-soft); }

.project-band { background: var(--teal-dark); color: #fff; }
.project-band__inner { min-height: 245px; padding-block: 46px; display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(330px, 0.8fr); align-items: center; gap: 70px; }
.project-band h2 { max-width: 650px; font-size: 38px; }
.project-band p { max-width: 670px; margin: 12px 0 0; color: #cce3df; }
.project-form { padding-left: 34px; border-left: 1px solid rgba(255, 255, 255, 0.28); }
.project-form label, .checkout-form label { display: block; }
.project-form label span, .checkout-form label span, .coupon-form label { display: block; margin-bottom: 6px; font-size: 11px; font-weight: 800; }
.project-form input, .checkout-form input, .checkout-form textarea, .coupon-form input { width: 100%; border: 1px solid var(--line); border-radius: 6px; background: #fff; outline: 0; }
.project-form input, .checkout-form input { height: 46px; padding: 0 12px; }
.project-form input:focus, .checkout-form input:focus, .checkout-form textarea:focus, .coupon-form input:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(8, 127, 114, 0.12); }
.project-form .primary-button { width: 100%; margin-top: 10px; }
.project-form > p { min-height: 20px; margin: 7px 0 0; color: #fff; font-size: 11px; }
.primary-button { padding: 0 18px; background: var(--brand); color: var(--ink); }
.primary-button--light { background: #fff; }
.primary-button--wide { width: 100%; }
.secondary-button { padding: 0 16px; background: #fff; border: 1px solid var(--line); }
.secondary-button:hover { background: var(--surface); }
.seo-content { display: grid; grid-template-columns: 0.85fr 1.45fr; gap: 70px; align-items: start; }
.seo-content__columns { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; color: var(--ink-soft); }
.seo-content p { margin: 0; }

.mobile-shop-nav { display: none; }
.mobile-shop-nav__button { position: relative; border: 0; border-radius: 7px; background: transparent; color: #687271; transition: color 160ms ease, background 160ms ease, transform 160ms ease; }
.mobile-shop-nav__button.is-active { background: var(--green-soft); color: var(--teal-dark); }
.mobile-shop-nav__button.is-active::before { content: ""; width: 22px; height: 3px; position: absolute; top: -5px; left: 50%; border-radius: 0 0 3px 3px; background: var(--teal); transform: translateX(-50%); }
.mobile-shop-nav__button:active { transform: translateY(1px); }
.mobile-shop-nav__icon { width: 22px; height: 22px; position: relative; display: block; }
.mobile-shop-nav__icon--home::before { content: ""; width: 13px; height: 13px; position: absolute; left: 4px; top: 6px; border: 2px solid currentColor; border-top: 0; border-radius: 2px; }
.mobile-shop-nav__icon--home::after { content: ""; width: 12px; height: 12px; position: absolute; left: 5px; top: 1px; border-left: 2px solid currentColor; border-top: 2px solid currentColor; transform: rotate(45deg); }
.mobile-shop-nav__icon--categories { width: 7px; height: 7px; margin: 3px; border: 2px solid currentColor; border-radius: 2px; box-shadow: 11px 0 0 -2px var(--paper), 11px 0 0 0 currentColor, 0 11px 0 -2px var(--paper), 0 11px 0 0 currentColor, 11px 11px 0 -2px var(--paper), 11px 11px 0 0 currentColor; }
.mobile-shop-nav__icon--search { width: 17px; height: 17px; margin: 1px 0 0 1px; border: 2px solid currentColor; border-radius: 50%; }
.mobile-shop-nav__icon--search::after { content: ""; width: 8px; height: 2px; position: absolute; right: -6px; bottom: -3px; background: currentColor; transform: rotate(45deg); }
.mobile-shop-nav__icon--orders { width: 20px; height: 18px; margin-top: 2px; border: 2px solid currentColor; border-radius: 3px; }
.mobile-shop-nav__icon--orders::before { content: ""; width: 8px; height: 3px; position: absolute; left: 4px; top: -5px; border: 2px solid currentColor; border-bottom: 0; border-radius: 3px 3px 0 0; }
.mobile-shop-nav__icon--orders::after { content: ""; width: 8px; height: 2px; position: absolute; left: 4px; top: 6px; background: currentColor; box-shadow: 0 4px 0 currentColor; }
.mobile-shop-nav__icon--account { border: 1.7px solid currentColor; border-radius: 50%; }
.mobile-shop-nav__icon--account::before { content: ""; width: 6px; height: 6px; position: absolute; left: 6px; top: 3px; border: 1.5px solid currentColor; border-radius: 50%; }
.mobile-shop-nav__icon--account::after { content: ""; width: 12px; height: 6px; position: absolute; left: 3px; bottom: 3px; border: 1.5px solid currentColor; border-bottom: 0; border-radius: 8px 8px 0 0; }
.mobile-shop-nav__count { min-width: 17px; height: 17px; position: absolute; top: 3px; left: calc(50% + 5px); display: grid; place-items: center; padding: 0 4px; border: 2px solid #fff; border-radius: 9px; background: var(--teal); color: #fff; font-size: 9px; line-height: 1; }
.site-footer { padding: 50px 0 18px; background: #15191b; color: #dfe5e6; }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 50px; }
.brand--footer { color: #fff; }
.footer-grid > div:first-child p { max-width: 300px; color: #9da7aa; }
.footer-grid h3 { margin: 0 0 12px; color: #fff; font-size: 13px; }
.footer-grid a, .footer-grid button, .footer-grid p { display: block; margin: 0 0 8px; color: #aeb8ba; font-size: 12px; }
.footer-grid button { padding: 0; border: 0; background: transparent; cursor: pointer; }
.footer-grid a:hover, .footer-grid button:hover { color: var(--brand); }
.footer-bottom { margin-top: 34px; padding-top: 16px; display: flex; justify-content: space-between; border-top: 1px solid #303638; color: #7e898c; font-size: 10px; }

.drawer-backdrop { position: fixed; z-index: 80; inset: 0; background: rgba(15, 20, 22, 0.48); }
.cart-drawer { width: min(440px, 100vw); height: 100dvh; position: fixed; z-index: 90; top: 0; right: 0; display: flex; flex-direction: column; visibility: hidden; opacity: 0; pointer-events: none; background: #fff; box-shadow: -12px 0 34px rgba(20, 30, 35, 0.18); }
.cart-drawer.is-open { visibility: visible; opacity: 1; pointer-events: auto; }
.drawer-header, .dialog-header { min-height: 78px; padding: 15px 18px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); }
.drawer-header h2, .dialog-header h2 { margin: 0; font-family: "Roboto Condensed", Arial, sans-serif; font-size: 26px; }
.cart-drawer .drawer-header { min-height: 54px; padding: 6px 14px; }
.cart-drawer .drawer-header h2 { font-size: 23px; line-height: 1; }
.cart-drawer__scroll { min-height: 0; flex: 1 1 auto; overflow-y: auto; overscroll-behavior-y: contain; }
.icon-button { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: #fff; cursor: pointer; }
.close-button { font-size: 24px; line-height: 1; }
.icon-button:hover { background: var(--surface); }
.cart-delivery-note { margin: 14px 16px 0; padding: 11px 12px; display: flex; flex-direction: column; background: var(--green-soft); border-left: 4px solid var(--teal); font-size: 11px; }
.cart-delivery-note strong { font-size: 12px; }
.cart-lines { padding: 10px 16px 0; }
.cart-line { min-height: 94px; padding: 12px 0; display: grid; grid-template-columns: 70px minmax(0, 1fr); align-items: center; gap: 11px; border-bottom: 1px solid var(--line); }
.cart-line img { width: 70px; height: 70px; object-fit: contain; border: 1px solid var(--line); border-radius: 6px; background: #f5f8f7; }
.cart-line__details { min-width: 0; }
.cart-line h3 { margin: 0; font-size: 12px; line-height: 1.35; }
.cart-line__meta { margin-top: 7px; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.cart-line p { margin: 0; color: var(--ink); font-size: 12px; font-weight: 800; white-space: nowrap; }
.cart-line .quantity-stepper { width: 112px; height: 36px; flex: 0 0 auto; grid-template-columns: 32px minmax(42px, 1fr) 32px; }
.cart-line__availability { display: block; margin-top: 4px; color: var(--teal-dark); font-size: 12px; font-weight: 800; line-height: 1.3; }
.cart-line__availability[hidden] { display: none; }
.quantity-stepper input {
  width: 100%;
  height: 100%;
  padding: 0 2px;
  border: 0;
  border-inline: 1px solid var(--line);
  border-radius: 0;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  text-align: center;
  appearance: textfield;
}
.quantity-stepper input::-webkit-inner-spin-button,
.quantity-stepper input::-webkit-outer-spin-button { margin: 0; appearance: none; }
.cart-empty { margin: auto; padding: 30px 38px; text-align: center; }
.empty-cart-icon { width: 66px; height: 50px; position: relative; margin: 0 auto 18px; display: block; border: 3px solid var(--teal); border-top: 0; transform: skew(-7deg); }
.empty-cart-icon::before { content: ""; position: absolute; left: -13px; top: -11px; width: 20px; height: 3px; background: var(--teal); }
.empty-cart-icon::after { content: ""; position: absolute; left: 7px; bottom: -13px; width: 8px; height: 8px; background: var(--teal); border-radius: 50%; box-shadow: 40px 0 0 var(--teal); }
.cart-empty h3 { margin: 0; font-size: 17px; }
.cart-empty p { margin: 8px 0 18px; color: var(--ink-soft); font-size: 12px; }
.cart-checkout { margin-top: auto; padding: 14px 16px 16px; flex: 0 0 auto; border-top: 1px solid var(--line); background: #fff; }
.coupon-form > div { display: grid; grid-template-columns: 1fr auto; }
.coupon-form input { height: 40px; padding: 0 10px; border-radius: 6px 0 0 6px; }
.coupon-form button { padding: 0 15px; border: 0; background: var(--ink); color: #fff; border-radius: 0 6px 6px 0; font-size: 11px; font-weight: 800; cursor: pointer; }
.coupon-form p { min-height: 18px; margin: 5px 0 0; color: var(--teal-dark); font-size: 10px; }
.price-breakdown { margin: 0 0 12px; border-block: 1px solid var(--line); }
.price-breakdown > summary {
  min-height: 52px;
  padding: 8px 2px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 16px;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
}
.price-breakdown > summary::-webkit-details-marker { display: none; }
.price-breakdown > summary > span { min-width: 0; display: grid; gap: 2px; }
.price-breakdown > summary strong { font-size: 14px; }
.price-breakdown > summary small { color: var(--ink-soft); font-size: 11px; font-weight: 600; }
.price-breakdown > summary::after {
  content: "+";
  justify-self: center;
  color: var(--teal-dark);
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
}
.price-breakdown[open] > summary::after { content: "-"; }
.price-breakdown[open] > summary { border-bottom: 1px dashed var(--line); }
.price-summary { margin: 0; padding: 7px 2px 10px; }
.price-summary div { display: flex; justify-content: space-between; margin: 4px 0; color: var(--ink-soft); font-size: 11px; }
.price-summary div.is-saving { color: var(--teal-dark); }
.price-summary div.is-total { margin-top: 8px; color: var(--ink); font-size: 13px; font-weight: 800; }
.price-summary dt, .price-summary dd { margin: 0; }
.checkout-button { width: 100%; min-height: 48px; padding: 0 14px; display: grid; grid-template-columns: minmax(0, 1fr) max-content; align-items: center; gap: 10px; background: var(--teal); color: #fff; text-align: left; }
.checkout-button > span { min-width: 0; font-size: 13px; line-height: 1.25; }
.checkout-button > strong { justify-self: end; font-size: 15px; line-height: 1; white-space: nowrap; }
.checkout-button:disabled { cursor: wait; opacity: 0.84; }
.checkout-button:hover { background: var(--teal-dark); }
.payment-note, .form-help { margin: 7px 0 0; color: var(--ink-soft); font-size: 9px; text-align: center; }
.payment-methods { margin: 12px 0; padding: 0; border: 0; }
.payment-methods legend { margin-bottom: 7px; color: var(--ink); font-size: 11px; font-weight: 800; }
.payment-method { min-height: 56px; display: flex; align-items: center; gap: 10px; padding: 10px 12px; border: 1px solid var(--line); border-radius: 6px; background: #f5faf7; cursor: pointer; }
.payment-method input { width: 16px; height: 16px; accent-color: var(--teal); }
.checkout-form .payment-method span { display: grid; gap: 2px; }
.payment-method strong { color: var(--teal-dark); font-size: 12px; }
.payment-method small { color: var(--ink-soft); font-size: 10px; }

dialog { padding: 0; border: 0; border-radius: 8px; box-shadow: 0 24px 60px rgba(13, 22, 25, 0.24); }
dialog::backdrop { background: rgba(15, 20, 22, 0.57); backdrop-filter: blur(2px); }
.product-dialog { width: min(980px, calc(100% - 32px)); max-height: min(820px, calc(100dvh - 32px)); overflow: auto; }
.dialog-close { position: sticky; z-index: 2; top: 14px; float: right; margin: 14px 14px -52px 0; }
.product-detail { display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr); }
.product-detail__media { min-height: 560px; display: flex; flex-direction: column; background: var(--surface); }
.product-detail__main-media { min-height: 480px; display: flex; flex: 1; overflow: hidden; }
.product-detail__main-image { width: 100%; min-height: 480px; flex: 1; object-fit: cover; background: #e9eeed; }
.product-detail__thumbnails { padding: 10px; display: flex; gap: 8px; overflow-x: auto; background: var(--paper); border-top: 1px solid var(--line); }
.product-detail__thumbnail { width: 62px; height: 62px; padding: 0; flex: 0 0 62px; overflow: hidden; border: 1px solid var(--line); border-radius: 5px; background: var(--surface); }
.product-detail__thumbnail.is-active { border: 2px solid var(--teal); }
.product-detail__thumbnail img, .product-detail__thumbnail video { width: 100%; height: 100%; object-fit: cover; }
.product-detail__video-thumb { width: 100%; height: 100%; position: relative; display: block; overflow: hidden; }
.product-detail__video-thumb img { filter: brightness(0.72) saturate(0.78); }
.product-detail__video-thumb > span { width: 24px; height: 24px; position: absolute; left: 50%; top: 50%; display: grid; place-items: center; border-radius: 50%; background: rgba(255, 255, 255, 0.92); transform: translate(-50%, -50%); }
.product-detail__video-thumb > span::after { content: ""; width: 0; height: 0; margin-left: 2px; border-top: 5px solid transparent; border-bottom: 5px solid transparent; border-left: 8px solid var(--teal-dark); }
.product-detail__content { padding: 46px 38px 34px; }
.product-detail h2 { margin: 8px 0 0; font-family: "Roboto Condensed", Arial, sans-serif; font-size: 34px; line-height: 1.08; }
.product-detail__description { margin: 14px 0 0; color: var(--ink-soft); }
.product-detail__price { margin-top: 18px; display: flex; align-items: baseline; gap: 9px; }
.product-detail__price strong { font-family: "Roboto Condensed", Arial, sans-serif; font-size: 30px; }
.product-detail__price del { color: #858c90; font-size: 12px; }
.product-detail__add { margin-top: 18px; display: flex; align-items: center; gap: 12px; }
.product-detail__add .add-button, .product-detail__add .quantity-stepper { width: 140px; flex-basis: 140px; }
.product-detail h3 { margin: 24px 0 9px; font-size: 13px; }
.detail-highlights { margin: 0; padding-left: 18px; color: var(--ink-soft); font-size: 12px; }
.detail-specs { margin: 0; border-top: 1px solid var(--line); }
.detail-specs div { padding: 8px 0; display: grid; grid-template-columns: 110px 1fr; border-bottom: 1px solid var(--line); font-size: 11px; }
.detail-specs dt { color: var(--ink-soft); }
.detail-specs dd { margin: 0; font-weight: 700; }
.checkout-dialog { width: min(760px, calc(100% - 28px)); }
.checkout-form { padding: 0 24px 24px; }
.checkout-form > .checkout-account { margin: 18px 0 2px; }
.checkout-section { margin: 0; padding: 20px 0 0; border: 0; border-top: 1px solid var(--line); }
.checkout-section__heading { margin-bottom: 13px; display: flex; align-items: center; gap: 10px; }
.checkout-section__heading > span { width: 24px; height: 24px; flex: 0 0 24px; display: grid; place-items: center; border-radius: 50%; background: var(--teal-dark); color: #fff; font-size: 10px; font-weight: 800; }
.checkout-section__heading h3 { margin: 0; font-size: 14px; line-height: 1.2; }
.checkout-section__heading p { margin: 2px 0 0; color: var(--ink-soft); font-size: 9px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-grid--location { grid-template-columns: 0.82fr 1.09fr 1.09fr; }
.form-grid__wide { grid-column: 1 / -1; }
.checkout-field--locked > span { display: flex !important; align-items: center; justify-content: space-between; gap: 8px; }
.checkout-field--locked > span small { padding: 2px 5px; border-radius: 3px; background: #deece8; color: var(--teal-dark); font-size: 7px; font-weight: 800; letter-spacing: 0; text-transform: uppercase; }
.checkout-field--locked input[readonly] { background: #f1f5f3; color: #263c36; cursor: default; }
.checkout-field--locked input[readonly]:focus { border-color: var(--line); box-shadow: none; }
.checkout-location-status { min-height: 14px; margin: -5px 0 0; color: var(--ink-soft); font-size: 10px; }
.checkout-location-status:empty { display: none; }
.checkout-location-status[data-state="success"] { color: var(--teal-dark); }
.checkout-location-status[data-state="error"] { color: var(--red); }
.checkout-form textarea { min-height: 82px; padding: 10px 12px; resize: vertical; }
.checkout-business { margin-top: 20px; }
.checkout-business legend, .checkout-section.payment-methods legend { padding: 0 8px 0 0; color: var(--ink); font-size: 13px; font-weight: 800; }
.checkout-business legend small { margin-left: 5px; color: var(--ink-soft); font-size: 8px; font-weight: 700; text-transform: uppercase; }
.checkout-form .checkout-business__toggle { display: grid; grid-template-columns: 18px minmax(0, 1fr); align-items: center; gap: 10px; cursor: pointer; }
.checkout-form .checkout-business__toggle input { width: 18px; height: 18px; padding: 0; accent-color: var(--teal); }
.checkout-form .checkout-business__toggle > span { margin: 0; }
.checkout-business__toggle strong, .checkout-business__toggle small { display: block; }
.checkout-business__toggle strong { color: var(--teal-dark); font-size: 12px; }
.checkout-business__toggle small { margin-top: 2px; color: var(--ink-soft); font-size: 10px; font-weight: 500; }
.checkout-business__fields { margin-top: 12px; padding: 14px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; background: var(--surface); border-left: 3px solid var(--teal); }
.checkout-business__fields[hidden] { display: none; }
.checkout-business__fields p { grid-column: 1 / -1; margin: -2px 0 0; color: var(--ink-soft); font-size: 9px; }
.checkout-section.payment-methods { margin-top: 20px; }
.checkout-actions { margin-top: 20px; padding-top: 16px; display: grid; grid-template-columns: minmax(0, 1fr) minmax(220px, 0.72fr); align-items: center; gap: 14px; border-top: 1px solid var(--line); }
.checkout-actions .primary-button--wide { width: 100%; min-height: 48px; }
.checkout-review { margin: 0; padding: 0; display: flex; align-items: baseline; justify-content: space-between; gap: 20px; font-size: 13px; }
.checkout-review strong { color: var(--teal-dark); font-size: 20px; }
#checkoutStatus { min-height: 20px; margin: 9px 0 0; color: var(--red); font-size: 11px; text-align: center; }
.order-success { padding: 46px 30px; text-align: center; }
.order-success h3 { margin: 0; font-size: 24px; }
.order-success p { color: var(--ink-soft); }
.order-id { padding: 10px 14px; display: inline-block; background: var(--surface); border: 1px solid var(--line); font-weight: 800; }
.order-success__actions { margin-top: 20px; display: flex; justify-content: center; gap: 9px; }
.orders-dialog { width: min(650px, calc(100% - 28px)); max-height: min(760px, calc(100dvh - 32px)); overflow: hidden; }
.orders-dialog.is-account-mode { width: min(500px, calc(100% - 28px)); }
.orders-dialog__header { min-height: 86px; align-items: center; background: var(--paper); border-bottom: 1px solid var(--line); }
.account-dialog__heading { display: grid; gap: 4px; }
.account-dialog__brand { margin: 0; line-height: 0; }
.account-dialog__brand img { width: 132px; height: auto; display: block; }
.account-dialog__heading p { margin: 0; color: var(--teal-dark); font-size: 10px; font-weight: 800; text-transform: uppercase; }
.orders-dialog__body { max-height: calc(100dvh - 112px); overflow-y: auto; padding: 18px; background: var(--surface); }
.orders-dialog__view[hidden] { display: none; }
.customer-auth { margin: 0; }
.customer-auth__unavailable, .customer-auth__login, .customer-auth__registration, .customer-account { padding: 18px; background: var(--paper); border: 1px solid var(--line); border-radius: 8px; }
.customer-auth__unavailable { display: grid; gap: 4px; border-left: 4px solid var(--teal); }
.customer-auth__unavailable strong { font-size: 13px; }
.customer-auth__unavailable span { color: var(--ink-soft); font-size: 11px; }
.customer-auth__central { display: grid; gap: 18px; }
.customer-auth__central .customer-auth__intro { padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.customer-auth__central .primary-button { min-height: 48px; }
.customer-auth__intro { display: flex; align-items: center; gap: 13px; }
.customer-auth__intro > div { display: grid; gap: 2px; }
.customer-auth h3, .orders-section-heading h3 { margin: 0; font-size: 18px; }
.customer-auth__intro p, .customer-auth__registration p { margin: 4px 0 0; color: var(--ink-soft); font-size: 11px; line-height: 1.45; }
.customer-auth__form { margin-top: 16px; display: grid; gap: 10px; }
.customer-auth__form label, .customer-auth__registration label span { font-size: 10px; font-weight: 800; }
.customer-auth__phone { height: 46px; display: grid; grid-template-columns: 52px minmax(0, 1fr); align-items: center; overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: 6px; }
.customer-auth__phone:focus-within { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(8, 127, 114, 0.12); }
.customer-auth__phone span { height: 100%; display: grid; place-items: center; background: var(--green-soft); border-right: 1px solid var(--line); color: var(--teal-dark); font-size: 12px; font-weight: 800; }
.customer-auth__phone input, .customer-auth__registration input { width: 100%; height: 46px; padding: 0 12px; background: #fff; border: 1px solid var(--line); border-radius: 6px; outline: 0; }
.customer-auth__phone input { height: 100%; border: 0; border-radius: 0; }
.customer-auth__otp-heading { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.customer-auth__otp-heading span { color: var(--ink-soft); font-size: 9px; font-weight: 700; }
.customer-auth__otp-control { width: min(100%, 330px); position: relative; }
.customer-auth__otp-digits { --otp-length: 6; display: grid; grid-template-columns: repeat(var(--otp-length), minmax(0, 1fr)); gap: 8px; }
.customer-auth__otp-digit { height: 52px; display: grid; place-items: center; background: #fff; border: 1px solid #c9d5d2; border-radius: 6px; color: var(--teal-dark); font-size: 23px; font-weight: 800; line-height: 1; transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease, background 160ms ease; }
.customer-auth__otp-digit.is-filled { background: var(--green-soft); border-color: #a7c9c0; animation: customer-otp-pop 180ms ease both; }
.customer-auth__otp-digit.is-active { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(8, 127, 114, 0.13); transform: translateY(-2px); }
.customer-auth__otp-control.is-complete .customer-auth__otp-digit { border-color: var(--teal); }
.customer-auth__otp { width: 100%; height: 100%; position: absolute; z-index: 2; inset: 0; padding: 0; opacity: 0; border: 0; outline: 0; cursor: text; caret-color: transparent; font-size: 16px; }
.customer-auth__registration input:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(8, 127, 114, 0.12); }
.customer-auth__captcha { min-height: 0; overflow: hidden; }
.customer-auth__verified-number { display: flex; align-items: center; gap: 7px; color: var(--ink-soft); font-size: 10px; }
.customer-auth__verified-number strong { color: var(--ink); font-size: 11px; }
.customer-auth__verified-number button, .customer-auth__link { padding: 0; border: 0; background: transparent; color: var(--teal-dark); font-size: 10px; font-weight: 800; text-decoration: underline; text-underline-offset: 3px; cursor: pointer; }
.customer-auth__link { justify-self: center; }
.customer-auth__status { min-height: 16px; margin: 10px 0 0; color: var(--teal-dark); font-size: 10px; text-align: center; }
.customer-auth__status.is-error { color: var(--red); }
@keyframes customer-otp-pop {
  0% { transform: translateY(2px) scale(0.95); }
  100% { transform: translateY(0) scale(1); }
}
.customer-auth__registration { display: grid; gap: 12px; }
.customer-auth__registration label { display: grid; gap: 5px; }
.customer-sso-transition[hidden] { display: none; }
html.customer-sso-return-pending .customer-sso-transition[hidden] { display: grid !important; }
html.app-hydrating .customer-sso-transition[hidden] { display: grid !important; }
html.app-hydrating .customer-sso-transition {
  background: #f7f7f3;
  backdrop-filter: none;
}
html.app-hydrating body > :not(.customer-sso-transition):not(script):not(noscript) {
  visibility: hidden;
}
html.app-hydrating .customer-sso-transition { visibility: visible; }
.customer-sso-transition {
  position: fixed;
  z-index: 1400;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(247, 247, 243, 0.98);
  isolation: isolate;
}
.customer-sso-transition__mark {
  width: 180px;
  height: 180px;
  position: relative;
  display: grid;
  place-items: center;
}
.customer-sso-transition__mark img { width: 132px; height: auto; position: relative; z-index: 1; }
.customer-sso-transition__ring {
  width: 154px;
  height: 154px;
  position: absolute;
  border: 2px solid rgba(11, 117, 106, 0.15);
  border-top-color: var(--teal);
  border-radius: 50%;
  animation: customer-sso-ring 900ms linear infinite;
}
html.customer-sso-pending,
html.customer-sso-return-pending,
html.app-hydrating { overflow: hidden; }
.app-hydration-failure {
  margin: 16px auto;
  width: min(calc(100% - 32px), var(--site-width));
  padding: 14px 16px;
  display: grid;
  gap: 3px;
  border: 1px solid rgba(151, 65, 45, 0.25);
  border-radius: 12px;
  background: #fff4ef;
  color: #742f22;
}
.app-hydration-failure[hidden] { display: none; }
html.app-hydration-failed main,
html.app-hydration-failed footer,
html.app-hydration-failed .consent-banner,
html.app-hydration-failed .mobile-shop-nav { display: none !important; }
.visually-hidden { width: 1px; height: 1px; position: absolute; overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; }
@keyframes customer-sso-ring { to { transform: rotate(360deg); } }
.customer-account { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.customer-account > div { min-width: 0; display: flex; align-items: center; gap: 12px; }
.customer-account > div > div { min-width: 0; display: grid; gap: 2px; }
.customer-account > .customer-account__actions { flex: 0 0 auto; gap: 8px; }
.customer-account__actions .primary-button,
.customer-account__actions .secondary-button { min-height: 40px; padding-inline: 13px; white-space: nowrap; }
.customer-account span, .customer-account small { color: var(--ink-soft); font-size: 9px; }
.customer-account strong { overflow: hidden; font-size: 14px; text-overflow: ellipsis; white-space: nowrap; }
.orders-section-heading { margin: 0 0 10px; display: flex; align-items: end; justify-content: space-between; gap: 12px; }
.orders-section-heading .eyebrow { margin-bottom: 2px; font-size: 8px; }
.orders-section-heading small { color: var(--ink-soft); font-size: 9px; text-align: right; }
.orders-list { display: grid; gap: 12px; }
.orders-empty { padding: 56px 20px; background: var(--paper); border: 1px solid var(--line); border-radius: 8px; text-align: center; }
.orders-empty__icon { width: 56px; height: 50px; position: relative; margin: 0 auto 18px; display: block; border: 2px solid var(--teal); border-radius: 5px; }
.orders-empty__icon::before { content: ""; width: 28px; height: 10px; position: absolute; left: 12px; top: -8px; border: 2px solid var(--teal); border-bottom: 0; transform: skew(-18deg); }
.orders-empty__icon::after { content: ""; width: 22px; height: 2px; position: absolute; left: 15px; top: 22px; background: var(--teal); box-shadow: 0 7px 0 var(--teal); }
.orders-empty h3 { margin: 0; font-size: 19px; }
.orders-empty p { max-width: 390px; margin: 8px auto 20px; color: var(--ink-soft); font-size: 12px; }
.order-card { padding: 16px; background: var(--paper); border: 1px solid #cfd8d7; border-radius: 8px; box-shadow: 0 6px 18px rgba(19, 34, 36, 0.06); }
.order-card__head, .order-card__summary, .order-card__foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.order-card__head > div span, .order-card__head > div strong { display: block; }
.order-card__head > div span { margin-bottom: 3px; color: var(--ink-soft); font-size: 9px; text-transform: uppercase; }
.order-card__head > div strong { font-size: 13px; }
.order-status { padding: 5px 8px; background: var(--green-soft); border: 1px solid #b8dfca; border-radius: 5px; color: var(--teal-dark); font-size: 9px; font-weight: 800; text-transform: uppercase; }
.order-status.is-cancelled { background: #f5ecea; border-color: #e2c4bd; color: #8b4135; }
.order-cancel-button { margin-top: 11px; padding: 0; border: 0; background: transparent; color: var(--teal-dark); font: inherit; font-size: 11px; font-weight: 800; text-decoration: underline; text-underline-offset: 3px; cursor: pointer; }
.order-cancel-button:disabled { cursor: wait; opacity: 0.58; }
.order-card__summary { margin-top: 14px; padding: 11px 0; border-block: 1px solid var(--line); }
.order-card__summary p { min-width: 0; margin: 0; }
.order-card__summary p strong, .order-card__summary p span { display: block; }
.order-card__summary p strong { font-size: 11px; }
.order-card__summary p span { margin-top: 3px; overflow: hidden; color: var(--ink-soft); font-size: 10px; text-overflow: ellipsis; white-space: nowrap; }
.order-card__summary > strong { flex: 0 0 auto; font-family: "Roboto Condensed", Arial, sans-serif; font-size: 18px; }
.order-tracker { margin: 18px 0 14px; padding: 0; display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); list-style: none; }
.order-tracker li { min-width: 0; position: relative; display: grid; justify-items: center; gap: 6px; color: #87908f; text-align: center; }
.order-tracker li::before { content: ""; height: 2px; position: absolute; z-index: 0; left: 0; right: 50%; top: 6px; background: #d8dfde; }
.order-tracker li:first-child::before { display: none; }
.order-tracker li > span { width: 14px; height: 14px; position: relative; z-index: 1; display: block; border: 3px solid var(--paper); border-radius: 50%; background: #c9d1d0; box-shadow: 0 0 0 1px #c9d1d0; }
.order-tracker li.is-complete::before, .order-tracker li.is-current::before { background: var(--teal); }
.order-tracker li.is-complete > span, .order-tracker li.is-current > span { background: var(--teal); box-shadow: 0 0 0 1px var(--teal); }
.order-tracker li.is-current > span { box-shadow: 0 0 0 1px var(--teal), 0 0 0 5px rgba(8, 127, 114, 0.12); }
.order-tracker li.is-complete, .order-tracker li.is-current { color: var(--teal-dark); }
.order-tracker small { overflow: hidden; font-size: 8px; font-weight: 700; text-overflow: ellipsis; }
.order-card__foot { color: var(--ink-soft); font-size: 9px; }
.payment-status { padding-left: 10px; position: relative; font-weight: 800; }
.payment-status::before { content: ""; width: 6px; height: 6px; position: absolute; left: 0; top: 3px; border-radius: 50%; background: #bd8d22; }
.payment-status.is-paid::before { background: var(--teal); }
.order-card--unavailable p { margin-bottom: 0; color: var(--ink-soft); font-size: 11px; }
.shipment-tracking { margin: 15px -16px -16px; border-top: 1px solid #c9dad6; background: #f3f8f6; }
.shipment-tracking > summary { min-height: 64px; padding: 12px 16px; display: flex; align-items: center; justify-content: space-between; gap: 16px; color: var(--teal-dark); cursor: pointer; list-style: none; }
.shipment-tracking > summary::-webkit-details-marker { display: none; }
.shipment-tracking > summary::after { content: "+"; flex: 0 0 auto; font-size: 22px; font-weight: 400; line-height: 1; }
.shipment-tracking[open] > summary::after { content: "−"; }
.shipment-tracking > summary > span { min-width: 0; display: grid; grid-template-columns: auto 1fr; align-items: center; column-gap: 10px; }
.shipment-tracking > summary img { width: 72px; height: 24px; grid-row: 1 / 3; object-fit: contain; object-position: left center; }
.shipment-tracking > summary small { color: var(--ink-soft); font-size: 8px; font-weight: 800; text-transform: uppercase; }
.shipment-tracking > summary strong { margin-top: 2px; font-size: 12px; }
.shipment-tracking > summary em { margin-left: auto; padding: 5px 8px; border: 1px solid #b9d7cd; border-radius: 4px; background: #fff; color: var(--teal-dark); font-size: 9px; font-style: normal; font-weight: 800; }
.shipment-tracking__body { padding: 0 16px 16px; }
.shipment-tracking__summary { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-block: 1px solid #d5e2de; }
.shipment-tracking__summary p { min-width: 0; margin: 0; padding: 13px 12px 13px 0; }
.shipment-tracking__summary p + p { padding-left: 12px; border-left: 1px solid #d5e2de; }
.shipment-tracking__summary span, .shipment-tracking__summary strong, .shipment-tracking__summary small { display: block; }
.shipment-tracking__summary span { margin-bottom: 4px; color: var(--ink-soft); font-size: 8px; font-weight: 800; text-transform: uppercase; }
.shipment-tracking__summary strong { overflow-wrap: anywhere; font-size: 11px; }
.shipment-tracking__summary small { margin-top: 3px; color: var(--ink-soft); font-size: 9px; }
.shipment-tracking__progress { margin: 17px 0 20px; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 4px; }
.shipment-tracking__progress span { min-width: 0; position: relative; padding-top: 11px; color: #76817e; font-size: 8px; font-weight: 700; text-align: center; }
.shipment-tracking__progress span::before { content: ""; height: 4px; position: absolute; inset: 0 2px auto; border-radius: 2px; background: #d6dfdc; }
.shipment-tracking__progress span.is-complete { color: var(--teal-dark); }
.shipment-tracking__progress span.is-complete::before { background: var(--teal); }
.shipment-tracking__updates h4 { margin: 0 0 11px; font-size: 12px; }
.shipment-tracking__updates ol { margin: 0; padding: 0; list-style: none; }
.shipment-tracking__updates li { position: relative; margin-left: 6px; padding: 0 0 16px 20px; border-left: 2px solid #cbdad5; }
.shipment-tracking__updates li:last-child { padding-bottom: 0; border-left-color: transparent; }
.shipment-tracking__updates li::before { content: ""; width: 10px; height: 10px; position: absolute; left: -6px; top: 2px; border: 2px solid #f3f8f6; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 1px var(--teal); }
.shipment-tracking__updates strong, .shipment-tracking__updates time, .shipment-tracking__updates span { display: block; }
.shipment-tracking__updates strong { font-size: 10px; }
.shipment-tracking__updates time { margin-top: 2px; color: var(--ink-soft); font-size: 8px; }
.shipment-tracking__updates span { margin-top: 5px; color: var(--teal-dark); font-size: 9px; font-weight: 700; }
.shipment-tracking__updates span small { display: inline; margin-right: 5px; color: var(--ink-soft); font-size: 7px; text-transform: uppercase; }
.shipment-tracking__updates p { margin: 4px 0 0; color: var(--ink-soft); font-size: 9px; line-height: 1.45; }
.shipment-tracking__waiting { margin: 0; color: var(--ink-soft); font-size: 9px; }
.consent-banner { width: min(820px, calc(100% - 24px)); position: fixed; z-index: 110; left: 50%; bottom: 16px; padding: 18px; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 22px; background: #fff; border: 1px solid var(--line); border-left: 5px solid var(--brand); border-radius: 6px; box-shadow: 0 16px 50px rgba(11, 22, 25, 0.2); transform: translateX(-50%); }
.consent-banner h2 { margin: 0; font-size: 15px; }
.consent-banner p { margin: 4px 0 0; color: var(--ink-soft); font-size: 11px; }
.consent-actions { display: flex; gap: 8px; }
.toast-region { position: fixed; z-index: 120; right: 18px; bottom: 18px; display: grid; gap: 8px; pointer-events: none; }
.toast { width: min(330px, calc(100vw - 36px)); padding: 12px 14px; background: var(--ink); color: #fff; border-left: 4px solid var(--brand); box-shadow: var(--shadow); font-size: 12px; animation: toast-in 180ms ease; }
.toast--stock { min-height: 46px; display: grid; grid-template-columns: 20px 1fr; align-items: center; gap: 10px; background: #fff; color: var(--ink); border: 1px solid #bfd8d1; border-left: 4px solid var(--teal); border-radius: 7px; box-shadow: 0 12px 30px rgba(11, 46, 42, 0.16); font-size: 13px; font-weight: 800; }
.toast--stock::before { content: ""; width: 9px; height: 9px; justify-self: center; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 5px #e6f3ef; }
@keyframes toast-in { from { opacity: 0; transform: translateY(8px); } }
.noscript { padding: 14px; background: #fff2b3; color: var(--ink); text-align: center; }

html[data-theme="noir-brass"] .delivery-hero {
  background: linear-gradient(90deg, rgba(14, 14, 15, 0.97) 0%, rgba(22, 20, 17, 0.9) 48%, rgba(31, 25, 17, 0.2) 100%), url("https://images.unsplash.com/photo-1620626011761-996317b8d101?auto=format&fit=crop&w=1800&q=86") center 56% / cover;
}
html[data-theme="mineral-spa"] .delivery-hero {
  background: linear-gradient(90deg, rgba(10, 41, 37, 0.95) 0%, rgba(13, 61, 55, 0.85) 46%, rgba(17, 74, 66, 0.18) 100%), url("https://images.unsplash.com/photo-1620626011761-996317b8d101?auto=format&fit=crop&w=1800&q=86") center 56% / cover;
}
html[data-theme="noir-brass"] .product-card,
html[data-theme="noir-brass"] .site-header,
html[data-theme="noir-brass"] .cart-drawer,
html[data-theme="noir-brass"] dialog { background: var(--paper); }

.theme-dialog { width: min(760px, calc(100% - 28px)); }
.theme-dialog__body { padding: 22px; }
.theme-dialog__body > p { margin: 0 0 18px; color: var(--ink-soft); font-size: 12px; }
.theme-options { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.theme-option { min-height: 190px; padding: 16px; display: flex; flex-direction: column; align-items: stretch; border: 1px solid var(--line); border-radius: 8px; background: var(--paper); text-align: left; cursor: pointer; }
.theme-option:hover { border-color: var(--teal); box-shadow: var(--shadow); }
.theme-option.is-active { border: 2px solid var(--teal); padding: 15px; }
.theme-option__label { color: var(--teal); font-size: 10px; font-weight: 800; text-transform: uppercase; }
.theme-option strong { margin-top: 5px; font-family: "Roboto Condensed", Arial, sans-serif; font-size: 20px; }
.theme-option p { margin: 6px 0 14px; color: var(--ink-soft); font-size: 11px; line-height: 1.45; }
.theme-swatches { margin-top: auto; display: flex; gap: 6px; }
.theme-swatch { width: 31px; height: 31px; border: 1px solid rgba(18, 24, 26, 0.18); border-radius: 50%; }
.theme-option__status { margin-top: 10px; color: var(--teal-dark); font-size: 10px; font-weight: 800; }

@media (max-width: 1120px) {
  .header-main { grid-template-columns: auto auto minmax(220px, 1fr) auto auto; }
  .benefit-band__track { width: max-content; display: flex; animation: benefit-scroll 46s linear infinite; will-change: transform; }
  .benefit-band__track:hover, .benefit-band__track:active { animation-play-state: paused; }
  .benefit-band__group, .benefit-band__group--clone { width: max-content; min-height: 66px; margin: 0; display: flex; flex: 0 0 auto; }
  .benefit-band__item { min-height: 66px; padding: 0 22px; justify-content: flex-start; }
  .benefit-band__item:first-child, .benefit-band__item:last-child { padding-inline: 22px; }
  .account-button { display: none; }
  .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 860px) {
  .site-width { width: min(calc(100% - 28px), var(--site-width)); }
  .announcement__inner span:nth-of-type(2), .announcement__inner span:nth-of-type(3), .announcement__inner a, .location-button, .search-box kbd { display: none; }
  .header-main { min-height: auto; padding: 11px 0; grid-template-columns: minmax(0, 1fr) auto auto; gap: 10px; }
  .account-summary { display: none; }
  .brand { align-self: center; }
  .brand__mark { width: 36px; height: 36px; }
  .brand__text { font-size: 21px; }
  .cart-button { min-width: 112px; }
  .search-box { height: 43px; grid-column: 1 / -1; grid-row: 2; }
  .delivery-hero, .delivery-hero__inner { min-height: 370px; }
  .delivery-hero { background-position: 64% center; }
  .delivery-hero__content { width: 78%; }
  .delivery-hero h1 { font-size: 44px; }
  .hero-promise { display: none; }
  .category-grid { grid-template-columns: 1fr 1fr; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .project-band__inner, .seo-content { grid-template-columns: 1fr; gap: 28px; }
  .project-form { padding: 0; border: 0; }
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 1 / -1; }
  .product-detail { grid-template-columns: 1fr; }
  .product-detail__media { min-height: 360px; max-height: 430px; }
  .product-detail__main-media, .product-detail__main-image { min-height: 290px; }
}

@media (max-width: 760px) {
  body { padding-bottom: calc(66px + env(safe-area-inset-bottom)); }
  .mobile-shop-nav { min-height: 68px; position: fixed; z-index: 70; left: 0; right: 0; bottom: 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 4px; padding: 6px 8px calc(6px + env(safe-area-inset-bottom)); background: rgba(255, 255, 255, 0.97); border-top: 1px solid #cfd9d7; box-shadow: 0 -10px 30px rgba(16, 35, 35, 0.12); backdrop-filter: blur(16px); }
  .mobile-shop-nav__button { min-width: 0; min-height: 54px; display: grid; place-items: center; align-content: center; gap: 4px; font-size: 10px; font-weight: 800; }
  .orders-dialog { width: 100%; max-width: none; max-height: min(82dvh, 760px); inset: auto 0 0; margin: auto 0 0; border-radius: 8px 8px 0 0; }
  .orders-dialog.is-account-mode { width: 100%; }
  .orders-dialog__header { min-height: 76px; }
  .account-dialog__brand img { width: 118px; }
  .orders-dialog__body { max-height: calc(82dvh - 78px); padding: 12px; }
  .customer-auth__login { padding: 15px; }
  .customer-auth__otp-control { width: 100%; }
  .customer-auth__otp-digits { gap: 6px; }
  .customer-auth__otp-digit { height: 50px; font-size: 21px; }
  .consent-banner { bottom: calc(72px + env(safe-area-inset-bottom)); }
  .toast-region { bottom: calc(78px + env(safe-area-inset-bottom)); }
}

@media (max-width: 520px) {
  .customer-account { align-items: stretch; flex-direction: column; }
  .customer-account > .customer-account__actions { width: 100%; }
  .customer-account__actions .primary-button,
  .customer-account__actions .secondary-button { flex: 1 1 0; }
}

@media (max-width: 590px) {
  body { font-size: 15px; }
  .announcement__inner { justify-content: flex-start; }
  .delivery-hero, .delivery-hero__inner { min-height: 410px; }
  .delivery-hero { background: linear-gradient(90deg, rgba(15, 28, 31, 0.97), rgba(15, 28, 31, 0.76)), url("https://images.unsplash.com/photo-1620626011761-996317b8d101?auto=format&fit=crop&w=900&q=80") 62% center / cover; }
  .delivery-hero__content { width: 100%; padding: 38px 0; }
  .delivery-hero h1 { max-width: 360px; font-size: 40px; }
  .delivery-hero__content > p { font-size: 14px; }
  .hero-stats { gap: 16px; flex-wrap: wrap; }
  .section-heading, .catalog-heading { display: block; }
  .section-heading h2, .catalog-heading h2, .project-band h2, .seo-content h2 { font-size: 28px; }
  .section-heading .text-button, .catalog-controls { margin-top: 15px; }
  .category-grid { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .category-grid::-webkit-scrollbar { display: none; }
  .category-card { min-width: 250px; scroll-snap-align: start; }
  .benefit-band__group, .benefit-band__group--clone { min-height: 64px; }
  .benefit-band__item { min-height: 64px; padding-inline: 18px; gap: 9px; }
  .benefit-band__item:first-child, .benefit-band__item:last-child { padding-inline: 18px; }
  .benefit-icon { width: 30px; height: 30px; flex-basis: 30px; }
  .benefit-band strong { font-size: 12px; }
  .benefit-band small { font-size: 10px; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; align-items: stretch; }
  .product-card { min-height: 315px; display: flex; flex-direction: column; }
  .product-card__media { width: 100%; height: auto; min-height: 0; aspect-ratio: 4 / 3; border-right: 0; border-bottom: 1px solid var(--line); }
  .product-card__media img, .product-card__media video { width: 100%; height: 100%; object-fit: cover; }
  .product-card__body { min-width: 0; padding: 10px 9px 9px; }
  .product-card__topline { justify-content: flex-start; font-size: 11px; }
  .product-card__sku { display: none; }
  .product-card h3 { min-height: 36px; margin-top: 5px; font-size: 14px; line-height: 1.28; }
  .product-card__highlights { min-height: 21px; margin-top: 5px; }
  .product-card__highlights li { font-size: 10px; line-height: 1.35; }
  .product-card__highlights li:nth-child(n + 2) { display: none; }
  .product-card__stock { font-size: 11px; line-height: 1.35; }
  .product-card__footer { min-height: 66px; display: grid; grid-template-columns: 1fr; align-items: end; gap: 5px; }
  .product-price { gap: 5px; }
  .product-price del { font-size: 9px; }

  .add-button, .quantity-stepper { width: 100%; height: 36px; flex-basis: 100%; }
  .project-band__inner { padding-block: 36px; }
  .seo-content__columns, .footer-grid { grid-template-columns: 1fr; }
  .footer-grid { gap: 24px; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { display: block; }
  .footer-bottom span { display: block; margin-top: 5px; }
  .cart-line { grid-template-columns: 60px 1fr; }
  .cart-line img { width: 60px; height: 60px; }
  .cart-line .quantity-stepper { width: 112px; }
  .product-detail__content { padding: 30px 20px 24px; }
  .product-detail h2 { font-size: 29px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid__wide { grid-column: auto; }
  .theme-dialog__body { padding: 16px; }
  .theme-options { grid-template-columns: 1fr; }
  .theme-option { min-height: 160px; }
  .consent-banner { grid-template-columns: 1fr; gap: 14px; }
  .consent-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .consent-actions button { min-height: 46px; }
  .order-success__actions { display: grid; grid-template-columns: 1fr; }
  .order-card { padding: 14px 12px; }
  .order-card__head { align-items: flex-start; }
  .order-card__summary p { max-width: 68%; }
  .shipment-tracking { margin-inline: -12px; margin-bottom: -14px; }
  .shipment-tracking > summary { min-height: 68px; padding-inline: 12px; gap: 8px; }
  .shipment-tracking > summary img { width: 64px; }
  .shipment-tracking > summary em { max-width: 112px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .shipment-tracking__body { padding-inline: 12px; }
  .shipment-tracking__summary { grid-template-columns: 1fr; }
  .shipment-tracking__summary p { padding: 10px 0; }
  .shipment-tracking__summary p + p { padding-left: 0; border-top: 1px solid #d5e2de; border-left: 0; }
  .customer-sso-transition__mark { width: 150px; height: 150px; }
  .customer-sso-transition__mark img { width: 116px; }
  .customer-sso-transition__ring { width: 132px; height: 132px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .customer-sso-transition__ring { animation: none !important; border-color: rgba(11, 117, 106, 0.3); }
}

/* Gribon family storefront theme */
:root,
html[data-theme="atelier-chrome"] {
  --ink: #171a18;
  --ink-soft: #5e6661;
  --paper: #f7f7f3;
  --surface: #edf1ed;
  --line: #d7ddd8;
  --brand: #b86548;
  --teal: #0b756a;
  --teal-dark: #084b44;
  --navy: #08243d;
  --green-soft: #e3eeea;
  --discount-bg: #176a5f;
  --discount-ink: #ffffff;
  --card-tint: #f1f3f0;
  --shadow: 0 14px 34px rgba(26, 42, 35, 0.1);
  --site-width: 1380px;
}

body { background: var(--paper); font-family: "Manrope", Arial, sans-serif; }
.site-width { width: min(calc(100% - 56px), var(--site-width)); }
.announcement { background: var(--teal-dark); }
.announcement__inner a { color: #f0c6b5; }
.site-header { background: rgba(247, 247, 243, 0.96); border-bottom: 0; box-shadow: 0 1px 0 rgba(16, 48, 42, 0.12); }
.header-main { min-height: 74px; gap: 20px; }
.brand { min-width: 185px; display: grid; grid-template-columns: minmax(0, 170px); gap: 1px; }
.brand__logo { width: 170px; height: auto; }
.brand__descriptor { color: var(--ink-soft); font-size: 9px; font-weight: 700; line-height: 1; text-transform: uppercase; }
.location-button { min-width: 130px; }
.search-box { height: 46px; background: #ffffff; border-color: #dfe4df; box-shadow: 0 4px 16px rgba(18, 44, 38, 0.04); }
.search-box:focus-within { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(11, 117, 106, 0.12); }
.cart-button { background: var(--navy); }
.cart-button:hover { background: #0e3557; }
.cart-button small { color: #d4e5ee; }
.desktop-shop-nav { border-top: 1px solid rgba(16, 48, 42, 0.08); }
.desktop-shop-nav__inner { min-height: 42px; display: flex; align-items: center; justify-content: center; gap: 34px; }
.desktop-shop-nav__categories {
  min-width: 0;
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  gap: inherit;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
}
.desktop-shop-nav__categories::-webkit-scrollbar { display: none; }
.desktop-shop-nav__categories a,
.desktop-shop-nav__projects { flex: 0 0 auto; white-space: nowrap; }
.desktop-shop-nav a { position: relative; padding: 12px 0 10px; color: #3f4743; font-size: 12px; font-weight: 700; }
.desktop-shop-nav a::after { content: ""; height: 2px; position: absolute; left: 0; right: 100%; bottom: 5px; background: var(--brand); transition: right 160ms ease; }
.desktop-shop-nav a:hover::after, .desktop-shop-nav a.is-active::after { right: 0; }
.desktop-shop-nav a.is-active { color: var(--teal-dark); }

.delivery-hero { width: min(calc(100% - 56px), var(--site-width)); min-height: 505px; position: relative; isolation: isolate; overflow: hidden; margin: 16px auto 0; background: url("https://images.unsplash.com/photo-1620626011761-996317b8d101?auto=format&fit=crop&w=1800&q=88") center 56% / cover; border-radius: 8px; box-shadow: 0 24px 58px rgba(24, 40, 34, 0.16); }
.delivery-hero::before { content: ""; position: absolute; z-index: -1; inset: 0; background: rgba(8, 30, 31, 0.65); }
.delivery-hero__inner { min-height: 505px; padding: 0 clamp(36px, 6vw, 88px); }
.delivery-hero__content { width: min(670px, 64%); padding: 52px 0 48px; }
.eyebrow { color: #e8b49f; }
.eyebrow--dark { color: var(--brand); }
.delivery-hero h1 { max-width: 660px; font-family: "Manrope", Arial, sans-serif; font-size: 58px; font-weight: 800; line-height: 1.02; }
.delivery-hero__content > p { max-width: 590px; color: #e7efec; font-size: 16px; }
.primary-link { background: var(--teal); color: #ffffff; }
.primary-link:hover, .primary-button:hover { background: var(--teal-dark); color: #ffffff; }
.hero-stats dt { color: #f0b9a2; font-family: "Manrope", Arial, sans-serif; }
.hero-stats dd { color: #d8e3df; }
.hero-promise { width: 238px; right: 24px; bottom: 24px; border-left-color: var(--brand); border-radius: 6px; }
.hero-promise__time { color: var(--navy); font-family: "Manrope", Arial, sans-serif; }

.category-section, .catalog-section, .seo-content { padding-block: 58px; }
.section-heading h2, .catalog-heading h2, .project-band h2, .seo-content h2, .brand-standard h2 { font-family: "Manrope", Arial, sans-serif; font-weight: 800; }
.text-button { border-bottom-color: var(--brand); color: var(--teal-dark); }
.category-grid { margin-top: 26px; gap: 16px; }
.category-card { min-height: 262px; border: 0; border-radius: 8px; box-shadow: 0 10px 28px rgba(20, 37, 31, 0.12); }
.category-card::after { background: linear-gradient(180deg, rgba(5, 18, 18, 0.02) 26%, rgba(5, 18, 18, 0.86) 100%); }
.category-card__content { min-height: 262px; padding: 18px; }
.category-card__meta { margin-bottom: auto; display: flex; justify-content: space-between; color: rgba(255, 255, 255, 0.88); font-size: 9px; font-weight: 800; text-transform: uppercase; }
.category-card__content strong { font-family: "Manrope", Arial, sans-serif; font-size: 25px; }
.category-card__link { margin-top: 6px; display: flex; align-items: center; justify-content: space-between; color: #ffffff; font-size: 10px; font-weight: 800; }
.category-card.is-active { outline-color: var(--brand); }

.benefit-band { background: #e7eeeb; border-color: #cfdad5; }
.benefit-icon { background: var(--teal-dark); }
.catalog-section { min-height: 760px; }
.catalog-heading p { max-width: 620px; }
.product-grid { gap: 16px; }
.product-card { min-height: 372px; border-color: #dce2dd; border-radius: 8px; background: #ffffff; box-shadow: 0 7px 20px rgba(18, 42, 35, 0.07); }
.product-card:hover { border-color: #b6c7c0; box-shadow: 0 16px 34px rgba(18, 42, 35, 0.13); }
.product-card__media { background: #eef1ed; }
.product-card__media img, .product-card__media video { filter: saturate(0.9) contrast(1.03) brightness(1.02); }
.product-badge { background: rgba(8, 36, 61, 0.92); }
.product-badge--saving { background: var(--discount-bg); color: var(--discount-ink); }
.product-card__body { padding: 12px; }
.product-card h3 { font-size: 14px; }
.rating { background: #f6f0df; color: #645421; }
.product-card__highlights li { background: #f4f5f1; border-color: #e2e6e0; }
.product-price strong { font-family: "Manrope", Arial, sans-serif; font-size: 19px; }
.add-button { border-color: var(--teal-dark); background: var(--teal-dark); color: #ffffff; }
.add-button:hover { background: var(--navy); border-color: var(--navy); }

.brand-standard { background: var(--navy); color: #ffffff; }
.brand-standard__inner { min-height: 250px; padding-block: 50px; display: grid; grid-template-columns: 0.85fr 1.4fr; align-items: center; gap: 74px; }
.brand-standard__intro h2 { max-width: 500px; margin: 0; font-size: 36px; line-height: 1.12; }
.brand-standard__points { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.brand-standard__points div { min-height: 112px; padding: 10px 26px; border-left: 1px solid rgba(255, 255, 255, 0.2); }
.brand-standard__points strong, .brand-standard__points span { display: block; }
.brand-standard__points strong { font-size: 13px; }
.brand-standard__points span { margin-top: 8px; color: #c4d3dd; font-size: 11px; line-height: 1.55; }
.project-band { background: var(--teal-dark); }
.project-band p { color: #d2e5df; }
.site-footer { background: #10201d; }
.brand--footer { min-width: 0; }
.brand__logo--footer { width: 150px; filter: brightness(0) invert(1); }

@media (max-width: 1120px) {
  .desktop-shop-nav__inner { gap: 24px; }
  .brand-standard__inner { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 860px) {
  .site-width { width: min(calc(100% - 28px), var(--site-width)); }
  .header-main { min-height: auto; padding-block: 10px; }
  .brand { min-width: 0; grid-template-columns: minmax(0, 145px); }
  .brand__logo { width: 145px; }
  .brand__descriptor { display: none; }
  .desktop-shop-nav { display: none; }
  .delivery-hero { width: min(calc(100% - 28px), var(--site-width)); min-height: 470px; margin-top: 12px; background-position: 62% center; }
  .delivery-hero::before { background: rgba(8, 30, 31, 0.7); }
  .delivery-hero__inner { min-height: 470px; padding-inline: 38px; }
  .delivery-hero__content { width: 82%; }
  .delivery-hero h1 { font-size: 44px; }
  .brand-standard__points { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  body { padding-bottom: calc(84px + env(safe-area-inset-bottom)); }
  .mobile-shop-nav { min-height: 66px; left: 10px; right: 10px; bottom: 8px; padding: 5px; background: rgba(6, 71, 63, 0.96); border: 1px solid rgba(255, 255, 255, 0.16); border-radius: 8px; box-shadow: 0 14px 36px rgba(7, 29, 27, 0.3); }
  .mobile-shop-nav__button { min-height: 54px; color: rgba(255, 255, 255, 0.94); border-radius: 7px; }
  .mobile-shop-nav__button.is-active { background: var(--paper); color: var(--teal-dark); }
  .mobile-shop-nav__button.is-active::before { display: none; }
  .mobile-shop-nav__count { background: var(--brand); }
  .consent-banner { bottom: calc(86px + env(safe-area-inset-bottom)); }
  .toast-region { bottom: calc(92px + env(safe-area-inset-bottom)); }
}

@media (max-width: 590px) {
  .site-width { width: calc(100% - 20px); }
  .announcement { overflow: hidden; }
  .announcement__inner { min-height: 30px; justify-content: center; white-space: nowrap; }
  .header-main { padding-block: 9px; }
  .brand { grid-template-columns: minmax(0, 122px); }
  .brand__logo { width: 122px; }
  .cart-button { min-width: 102px; height: 44px; padding-inline: 9px; }
  .cart-icon { transform: scale(0.9) skew(-6deg); }
  .search-box { height: 42px; }
  .delivery-hero, .delivery-hero__inner { min-height: 540px; }
  .delivery-hero { width: calc(100% - 20px); margin-top: 10px; background-position: 68% center; }
  .delivery-hero::before { background: rgba(7, 27, 29, 0.74); }
  .delivery-hero__inner { padding-inline: 20px; align-items: stretch; }
  .delivery-hero__content { width: 100%; padding: 52px 0 46px; display: flex; flex-direction: column; justify-content: flex-end; }
  .delivery-hero h1 { max-width: 340px; font-size: 40px; line-height: 1.03; }
  .delivery-hero__content > p { margin-top: 16px; font-size: 14px; }
  .hero-actions { margin-top: 22px; display: grid; grid-template-columns: 1fr; gap: 9px; }
  .primary-link, .secondary-link { min-height: 46px; display: flex; align-items: center; justify-content: center; padding: 0 16px; border: 1px solid rgba(255, 255, 255, 0.62); border-radius: 6px; }
  .primary-link { border-color: var(--teal); }
  .hero-stats { margin-top: 22px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .hero-stats div { display: block; }
  .hero-stats dt { font-size: 18px; }
  .hero-stats dd { font-size: 9px; line-height: 1.25; }
  .category-section, .catalog-section, .seo-content { padding-block: 44px; }
  .section-heading h2, .catalog-heading h2, .project-band h2, .seo-content h2, .brand-standard h2 { font-size: 28px; }
  .category-grid { width: calc(100% + 10px); margin-right: -10px; padding-right: 10px; gap: 12px; }
  .category-card { min-width: min(78vw, 310px); min-height: 300px; }
  .category-card__content { min-height: 300px; padding: 16px; }
  .category-card__content strong { font-size: 25px; }
  .product-grid { gap: 10px; }
  .product-card { min-height: 300px; }
  .product-card__body { padding: 9px 8px 8px; }
  .product-card h3 { min-height: 36px; font-size: 13px; }
  .product-card__topline { font-size: 10px; }
  .product-card__highlights li { font-size: 9px; }
  .product-price strong { font-size: 16px; }
  .add-button, .quantity-stepper { height: 35px; }
  .brand-standard__inner { padding-block: 42px; gap: 26px; }
  .brand-standard__points { grid-template-columns: 1fr; }
  .brand-standard__points div { min-height: 0; padding: 15px 0; border-left: 0; border-top: 1px solid rgba(255, 255, 255, 0.18); }
  .brand-standard__points strong { font-size: 13px; }
}





/* Product-first storefront layout */
.wishlist-summary { min-width: 92px; min-height: 44px; display: flex; align-items: center; justify-content: center; gap: 7px; border: 0; background: transparent; color: var(--ink); cursor: pointer; }
.wishlist-summary:hover, .wishlist-summary.is-active { color: var(--teal-dark); }
.wishlist-summary__icon { width: 27px; height: 27px; display: grid; place-items: center; border: 1px solid rgba(8, 75, 68, 0.18); border-radius: 50%; background: rgba(255, 255, 255, 0.86); color: var(--teal-dark); box-shadow: 0 3px 10px rgba(20, 42, 35, 0.06); }
.wishlist-summary__icon svg { width: 17px; height: 17px; display: block; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.9; }
.wishlist-summary.is-active .wishlist-summary__icon svg { fill: rgba(8, 75, 69, 0.12); }
.wishlist-summary > span:last-child { display: grid; text-align: left; }
.wishlist-summary small { color: var(--ink-soft); font-size: 8px; font-weight: 700; }
.wishlist-summary strong { font-size: 11px; }
.account-summary { min-width: 84px; min-height: 44px; display: flex; align-items: center; justify-content: center; gap: 7px; border: 0; background: transparent; color: var(--ink); cursor: pointer; }
.account-summary:hover { color: var(--teal-dark); }
.account-summary__icon { width: 27px; height: 27px; position: relative; display: block; border: 1px solid rgba(8, 75, 68, 0.18); border-radius: 50%; background: rgba(255, 255, 255, 0.86); box-shadow: 0 3px 10px rgba(20, 42, 35, 0.06); }
.account-summary__icon::before { content: ""; width: 7px; height: 7px; position: absolute; left: 9px; top: 5px; border: 1.5px solid var(--teal-dark); border-radius: 50%; }
.account-summary__icon::after { content: ""; width: 13px; height: 7px; position: absolute; left: 6px; bottom: 4px; border: 1.5px solid var(--teal-dark); border-bottom: 0; border-radius: 9px 9px 0 0; }
.account-summary__icon--large { width: 38px; height: 38px; flex: 0 0 38px; background: var(--green-soft); }
.account-summary__icon--large::before { width: 9px; height: 9px; left: 13px; top: 7px; }
.account-summary__icon--large::after { width: 18px; height: 9px; left: 9px; bottom: 6px; }
.account-summary > span:last-child { display: grid; text-align: left; }
.account-summary small { max-width: 68px; overflow: hidden; color: var(--ink-soft); font-size: 8px; font-weight: 700; text-overflow: ellipsis; white-space: nowrap; }
.account-summary strong { font-size: 11px; }

.delivery-hero { height: clamp(300px, 27vw, 380px); min-height: 0; }
.delivery-hero__inner { height: 100%; min-height: 0; }
.delivery-hero__content { padding-block: 32px; }
.delivery-hero h1 { max-width: 620px; font-size: 46px; }
.delivery-hero__content > p { margin-top: 12px; }
.hero-actions { margin-top: 18px; }
.hero-stats { margin-top: 20px; }
.hero-promise { bottom: 18px; }

.collection-hero { height: 310px; min-height: 0; margin-top: 16px; display: grid; grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.82fr); overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: 8px; box-shadow: 0 16px 38px rgba(20, 37, 31, 0.1); }
.collection-hero__media { min-height: 310px; overflow: hidden; background: var(--surface); }
.collection-hero__media img { width: 100%; height: 100%; display: block; object-fit: cover; }
.collection-hero__content { padding: 34px clamp(28px, 4vw, 54px); display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.collection-hero h1 { margin: 8px 0 0; font-size: 42px; line-height: 1.05; }
.collection-hero p { max-width: 520px; margin: 12px 0 20px; color: var(--ink-soft); }
.breadcrumbs { margin-bottom: 22px; display: flex; gap: 7px; color: var(--ink-soft); font-size: 10px; font-weight: 700; }
.breadcrumbs a { color: var(--teal-dark); }

.category-section { padding-bottom: 42px; }
.category-card { text-decoration: none; }
.category-card:focus-visible { outline: 3px solid var(--brand); outline-offset: 3px; }
.category-card, .category-card__content { min-height: 215px; }
.category-card__content { padding: 15px; }

.catalog-section { min-height: 0; padding-bottom: 42px; }
.product-grid, .product-rail { margin-top: 22px; padding: 2px 3px 18px; display: grid; grid-template-columns: none; grid-auto-flow: column; grid-auto-columns: minmax(288px, 318px); align-items: stretch; gap: 16px; overflow-x: auto; overscroll-behavior-inline: contain; scroll-snap-type: x proximity; scrollbar-color: #a9b8b2 transparent; scrollbar-width: thin; }
.product-grid::after, .product-rail::after { content: ""; width: 1px; }
.product-card { width: 100%; min-width: 0; min-height: 382px; scroll-snap-align: start; }
.product-card__media-wrap { position: relative; }
.product-card__media { display: block; aspect-ratio: 4 / 3; }
.product-card__social { min-width: 0; margin-left: auto; display: inline-flex; align-items: center; justify-content: flex-end; gap: 6px; }
.wishlist-button { width: 30px; height: 30px; position: static; flex: 0 0 30px; display: grid; place-items: center; padding: 0; border: 1px solid rgba(8, 75, 68, 0.2); border-radius: 50%; background: #f4f8f6; color: var(--teal-dark); box-shadow: 0 2px 7px rgba(15, 33, 29, 0.07); cursor: pointer; }
.wishlist-button:hover, .wishlist-button.is-saved { background: var(--teal-dark); color: #fff; }
.wishlist-button:focus-visible { outline: 3px solid rgba(184, 101, 72, 0.45); outline-offset: 2px; }
.product-badge { padding: 3px 6px; border-radius: 3px; box-shadow: 0 2px 6px rgba(10, 18, 18, 0.08); font-size: 8px; letter-spacing: 0; }
.product-badge--saving { background: rgba(11, 117, 106, 0.92); }
.product-card__footer { display: grid; grid-template-columns: 1fr; gap: 8px; }
.add-button, .product-card .quantity-stepper { width: 100%; flex-basis: 100%; }

.category-product-shelves { padding-bottom: 54px; }
.category-product-shelves[hidden] { display: none; }
.product-shelf { padding: 42px 0 30px; border-top: 1px solid var(--line); }
.shelf-heading { display: flex; align-items: end; justify-content: space-between; gap: 20px; }
.shelf-heading h2 { margin: 3px 0 0; font-size: 28px; line-height: 1.1; }
.shelf-heading .text-button { text-decoration: none; }

.project-form { display: grid; gap: 10px; }
.project-form label span { margin-bottom: 5px; display: block; color: #dcece7; font-size: 9px; font-weight: 800; text-transform: uppercase; }
.project-form input, .project-form select { width: 100%; height: 42px; padding: 0 11px; border: 1px solid rgba(255, 255, 255, 0.35); border-radius: 5px; background: rgba(255, 255, 255, 0.98); color: var(--ink); }
.project-form .primary-button { min-height: 44px; margin-top: 2px; }

@media (max-width: 1120px) {
  .wishlist-summary { display: none; }
  .product-grid, .product-rail { grid-auto-columns: minmax(246px, 270px); }
}

@media (max-width: 860px) {
  .wishlist-summary { display: flex; }
  .account-summary { display: none; }
  .delivery-hero { height: 330px; min-height: 0; }
  .delivery-hero__inner { min-height: 0; }
  .delivery-hero__content { width: 76%; }
  .delivery-hero h1 { font-size: 38px; }
  .collection-hero { height: 280px; grid-template-columns: 1fr 1fr; min-height: 0; }
  .collection-hero__media { min-height: 280px; }
  .collection-hero__content { padding: 26px; }
  .collection-hero h1 { font-size: 34px; }
}

@media (max-width: 590px) {
  .wishlist-summary { width: 54px; min-width: 54px; height: 44px; min-height: 44px; padding: 1px 0 0; display: grid; grid-template-rows: 24px 11px; place-items: center; align-content: center; gap: 1px; }
  .wishlist-summary > span:last-child { display: block; line-height: 1; text-align: center; }
  .wishlist-summary small { display: none; }
  .wishlist-summary strong { display: block; font-size: 9px; line-height: 11px; text-align: center; }
  .wishlist-summary__icon { width: 24px; height: 24px; border: 0; background: transparent; box-shadow: none; }
  .wishlist-summary__icon svg { width: 22px; height: 22px; stroke-width: 1.8; }
  .delivery-hero, .delivery-hero__inner { height: 285px; min-height: 0; }
  .delivery-hero { background-position: 64% center; }
  .delivery-hero__content { width: 100%; padding: 24px 0; justify-content: center; }
  .delivery-hero h1 { max-width: 320px; font-size: 31px; }
  .delivery-hero__content > p { max-width: 320px; margin-top: 9px; font-size: 12px; }
  .hero-actions { margin-top: 15px; display: flex; flex-wrap: wrap; }
  .primary-link, .secondary-link { min-height: 40px; padding-inline: 12px; font-size: 13px; }
  .hero-stats, .hero-promise { display: none; }
  .collection-hero { width: calc(100% - 20px); height: auto; min-height: 0; grid-template-columns: 1fr; }
  .collection-hero__media { min-height: 0; aspect-ratio: 16 / 7; }
  .collection-hero__content { padding: 22px 18px 24px; }
  .collection-hero h1 { font-size: 30px; }
  .breadcrumbs { margin-bottom: 14px; }
  .category-card, .category-card__content { min-height: 220px; }
  .product-grid, .product-rail { width: calc(100% + 10px); margin-right: -10px; padding-right: 8px; grid-template-columns: none; grid-auto-columns: calc((100vw - 42px) / 2); gap: 10px; }
  .product-grid::after, .product-rail::after { width: 8px; }
  .product-card { min-height: 322px; }
  .product-card__media { aspect-ratio: 1 / 1; }
  .wishlist-button { width: 29px; height: 29px; flex-basis: 29px; }
  .product-card__footer { min-height: 72px; }
  .add-button { font-size: 12px; }
  .category-product-shelves { width: calc(100% - 20px); }
  .product-shelf { padding-block: 34px 22px; }
  .shelf-heading h2 { font-size: 24px; }
  .project-form { margin-top: 4px; }
}

body.is-category-page .collection-hero,
body.is-category-page .benefit-band,
body.is-category-page .brand-standard,
body.is-category-page .project-band,
body.is-category-page .seo-content { display: none !important; }
body.is-category-page .catalog-section { min-height: 0; padding-top: 36px; padding-bottom: 58px; }
body.is-category-page .product-grid {
  width: 100%;
  margin-right: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: row;
  grid-auto-columns: auto;
  gap: 18px;
  overflow: visible;
  scroll-snap-type: none;
}
body.is-category-page .product-grid::after { display: none; }
body.is-category-page .product-card { min-height: 382px; }

@media (max-width: 1120px) {
  body.is-category-page .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 15px; }
}

@media (max-width: 860px) {
  .category-switcher:not([hidden]) { display: block; }
  .category-switcher { top: 64px; }
  body.is-category-page .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
}

@media (max-width: 590px) {
  .category-section .section-heading { display: flex; align-items: flex-end; gap: 12px; }
  .category-section .section-heading > div { min-width: 0; }
  .category-section .section-heading .text-button { flex: 0 0 auto; margin-top: 0; white-space: nowrap; }
  body.is-category-page .catalog-section { padding-top: 22px; }
  .category-switcher { top: 62px; margin: -6px -10px 20px; padding: 7px 10px; }
  .category-switcher__track { gap: 6px; }
  .category-switcher__item { min-height: 44px; padding: 4px 9px 4px 5px; gap: 7px; font-size: 10px; }
  .category-switcher__icon { width: 32px; height: 32px; flex-basis: 32px; }
  .category-switcher__svg { width: 20px; height: 20px; }
  body.is-category-page .product-grid { width: 100%; margin-right: 0; padding: 0; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  body.is-category-page .product-card { min-height: 340px; }
}
/* Larger cards keep product imagery and purchasing controls prominent. */
body.is-storefront-home .catalog-heading { display: none; }
body.is-storefront-home .catalog-section { padding-top: 28px; }
.product-grid, .product-rail { grid-auto-columns: min(680px, 53.5vw); gap: 20px; }
.product-card { min-height: 510px; }
.product-card__media { aspect-ratio: 1 / 1; }
.product-card__body { padding: 16px 16px 14px; }
.product-card__topline { font-size: 10px; }
.product-card h3 { min-height: 50px; margin-top: 8px; font-size: 19px; line-height: 1.28; }
.product-card__highlights { min-height: 29px; margin-top: 8px; gap: 5px; }
.product-card__highlights li { padding: 4px 7px; font-size: 10px; }
.product-card__footer { min-height: 96px; padding-top: 12px; gap: 10px; }
.product-price { gap: 7px; }
.product-price strong { font-size: 24px; }
.product-price del { font-size: 11px; }
.product-card .add-button, .product-card .quantity-stepper { min-height: 46px; }
.shelf-heading h2 { margin: 0; }
body.is-category-page .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
body.is-category-page .product-card { min-height: 510px; }

@media (max-width: 1120px) {
  .product-grid, .product-rail { grid-auto-columns: 53.5vw; }
  body.is-category-page .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 860px) {
  body.is-category-page .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 590px) {
  .product-grid, .product-rail { grid-auto-columns: 56vw; gap: 10px; }
  .product-card, body.is-category-page .product-card { min-height: 360px; }
  .product-card__body { padding: 10px 9px 9px; }
  .product-card__topline { font-size: 10px; }
  .product-card h3 { min-height: 40px; margin-top: 6px; font-size: 15px; line-height: 1.3; }
  .product-card__highlights { min-height: 24px; margin-top: 6px; }
  .product-card__highlights li { padding: 3px 5px; font-size: 9px; }
  .product-card__footer { min-height: 82px; padding-top: 8px; gap: 7px; }
  .product-price { gap: 4px; }
  .product-price strong { font-size: 18px; }
  .product-price del { font-size: 8px; }
  .product-card .add-button, .product-card .quantity-stepper { min-height: 42px; }
}
.detail-highlights { margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 7px; color: var(--ink); list-style: none; }
.detail-highlights li { min-height: 42px; padding: 9px 10px 9px 30px; position: relative; display: flex; align-items: center; background: #eef6f3; border: 1px solid #c7ddd6; border-left: 3px solid var(--teal); border-radius: 5px; font-size: 11px; font-weight: 700; line-height: 1.35; }
.detail-highlights li::before { content: ""; width: 8px; height: 4px; position: absolute; left: 11px; top: 50%; border-left: 2px solid var(--teal); border-bottom: 2px solid var(--teal); transform: translateY(-65%) rotate(-45deg); }

@media (max-width: 760px) {
  .mobile-shop-nav { min-height: 58px; left: 12px; right: 12px; bottom: 8px; gap: 3px; padding: 4px; border-radius: 7px; }
  .mobile-shop-nav__button { min-height: 48px; padding: 3px 2px; grid-template-rows: 21px 12px; align-content: center; justify-items: center; gap: 2px; overflow: hidden; border-radius: 5px; }
  .mobile-shop-nav__button > span:last-of-type { width: 100%; display: block; overflow: hidden; color: inherit; font-size: 10px; font-weight: 800; line-height: 12px; letter-spacing: 0; text-align: center; text-overflow: clip; white-space: nowrap; }
  .mobile-shop-nav__icon { width: 20px; height: 20px; margin: 0; flex: 0 0 20px; }
  .mobile-shop-nav__icon--categories { width: 20px; height: 20px; margin: 0; border: 0; border-radius: 0; box-shadow: none; background: linear-gradient(currentColor 0 0) 1px 1px / 7px 7px no-repeat, linear-gradient(currentColor 0 0) 12px 1px / 7px 7px no-repeat, linear-gradient(currentColor 0 0) 1px 12px / 7px 7px no-repeat, linear-gradient(currentColor 0 0) 12px 12px / 7px 7px no-repeat; }
  .mobile-shop-nav__count { top: 1px; left: calc(50% + 4px); }
}

@media (max-width: 590px) {
  .detail-highlights { grid-template-columns: 1fr; }
}
/* Homepage category gateway */
body.is-storefront-home .catalog-section { display: none; }
body.is-storefront-home .category-section {
  padding-block: 46px 66px;
  scroll-margin-top: 112px;
}
body.is-storefront-home .category-grid {
  width: 100%;
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  overflow: visible;
}
body.is-storefront-home .category-card,
body.is-storefront-home .category-card__content {
  width: 100%;
  min-width: 0;
  min-height: 190px;
  height: 190px;
  aspect-ratio: auto;
  scroll-snap-align: none;
}
body.is-storefront-home .category-card {
  border: 0;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(20, 37, 31, 0.12);
}
body.is-storefront-home .category-card::after {
  background: linear-gradient(90deg, rgba(5, 18, 18, 0.88) 0%, rgba(5, 18, 18, 0.58) 42%, rgba(5, 18, 18, 0.08) 76%);
}
body.is-storefront-home .category-card img {
  object-position: center 48%;
  filter: saturate(0.92) contrast(1.06);
}
body.is-storefront-home .category-card__content {
  padding: 24px 30px;
  justify-content: center;
  align-items: flex-start;
}
body.is-storefront-home .category-card__meta {
  margin: 0 0 9px;
  display: block;
  color: rgba(255, 255, 255, 0.74);
  font-size: 9px;
}
body.is-storefront-home .category-card__meta span { margin: 0; }
body.is-storefront-home .category-card__content strong {
  max-width: 420px;
  font-size: 31px;
}
body.is-storefront-home .category-card__link {
  width: min(290px, 100%);
  margin-top: 12px;
  padding-top: 9px;
  border-top: 1px solid rgba(255, 255, 255, 0.32);
  font-size: 10px;
}

.tiles-preview {
  scroll-margin-top: 112px;
  padding-block: 68px;
  background: #edf2f0;
  border-block: 1px solid #d5dfdc;
}
.tiles-preview__inner {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
  align-items: center;
  gap: 64px;
}
.tiles-preview__content { max-width: 520px; }
.tiles-preview h2 {
  max-width: 480px;
  margin: 0;
  font-size: 42px;
  line-height: 1.08;
}
.tiles-preview__content > p {
  margin: 16px 0 0;
  color: var(--ink-soft);
  font-size: 15px;
}
.tiles-preview__uses {
  margin: 26px 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-block: 1px solid #cad6d2;
}
.tiles-preview__uses span {
  padding: 12px 10px;
  border-right: 1px solid #cad6d2;
  color: var(--teal-dark);
  font-size: 10px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}
.tiles-preview__uses span:first-child { padding-left: 0; text-align: left; }
.tiles-preview__uses span:last-child { padding-right: 0; border-right: 0; text-align: right; }
.tiles-preview .primary-link {
  background: var(--teal-dark);
  color: #fff;
}
.tiles-preview .primary-link:hover { background: var(--teal); }
.tiles-preview__media {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  border-radius: 8px;
  box-shadow: 0 24px 52px rgba(28, 45, 39, 0.16);
}
.tiles-preview__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-band { scroll-margin-top: 112px; background: #083f3a; }
.project-band__inner {
  min-height: 0;
  padding-block: 66px;
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(340px, 0.78fr);
  align-items: center;
  gap: 68px;
}
.project-band__content { max-width: 760px; }
.project-band h2 {
  max-width: 720px;
  font-size: 42px;
  line-height: 1.08;
}
.project-band__content > p {
  max-width: 700px;
  margin-top: 16px;
  color: #cfe3de;
}
.project-steps {
  margin: 30px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  list-style: none;
}
.project-steps li {
  min-width: 0;
  padding-top: 14px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 9px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}
.project-steps li > span {
  color: #f0b9a2;
  font-size: 10px;
  font-weight: 800;
}
.project-steps strong,
.project-steps small { display: block; }
.project-steps strong { font-size: 11px; line-height: 1.3; }
.project-steps small {
  margin-top: 4px;
  color: #a9cac3;
  font-size: 9px;
  line-height: 1.4;
}
.project-enquiry {
  padding: 26px;
  background: #fff;
  color: var(--ink);
  border-radius: 8px;
  box-shadow: 0 22px 52px rgba(2, 28, 25, 0.24);
}
.project-enquiry__label {
  color: var(--teal);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}
.project-enquiry h3 {
  margin: 4px 0 18px;
  font-size: 24px;
  line-height: 1.2;
}
.project-form {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 11px;
  border: 0;
}
.project-form label span {
  margin-bottom: 5px;
  color: #45605a;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}
.project-form input,
.project-form select {
  width: 100%;
  height: 44px;
  padding: 0 11px;
  border: 1px solid #cfdad6;
  border-radius: 5px;
  background: #fff;
  color: var(--ink);
  outline: 0;
}
.project-form input:focus,
.project-form select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(8, 127, 114, 0.12);
}
.project-form .primary-button {
  width: 100%;
  min-height: 44px;
  margin: 2px 0 0;
  background: var(--teal-dark);
  color: #fff;
}
.project-form .primary-button:hover { background: var(--teal); }
.project-form > p {
  min-height: 16px;
  margin: 0;
  color: var(--teal-dark);
  font-size: 10px;
}
.project-form .project-form__honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.project-form .primary-button:disabled {
  cursor: wait;
  opacity: 0.68;
}
.project-form > p.is-success { color: #075f52; font-weight: 800; }
.project-form > p.is-error { color: #9b2c2c; font-weight: 700; }

@media (max-width: 960px) {
  .tiles-preview__inner { grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr); gap: 34px; }
  .tiles-preview h2 { font-size: 36px; }
  .project-band__inner { grid-template-columns: 1fr; gap: 38px; }
  .project-band__content { max-width: none; }
}

@media (max-width: 590px) {
  body.is-storefront-home .category-section { padding-block: 30px 40px; }
  body.is-storefront-home .category-grid { margin-top: 16px; gap: 10px; }
  body.is-storefront-home .category-card,
  body.is-storefront-home .category-card__content {
    min-height: 164px;
    height: 164px;
  }
  body.is-storefront-home .category-card::after {
    background: linear-gradient(90deg, rgba(5, 18, 18, 0.9) 0%, rgba(5, 18, 18, 0.62) 52%, rgba(5, 18, 18, 0.12) 88%);
  }
  body.is-storefront-home .category-card__content { padding: 18px; }
  body.is-storefront-home .category-card__meta { margin-bottom: 6px; font-size: 8px; }
  body.is-storefront-home .category-card__content strong { font-size: 26px; }
  body.is-storefront-home .category-card__link {
    width: min(230px, 82%);
    margin-top: 9px;
    padding-top: 7px;
    font-size: 9px;
  }

  .tiles-preview { padding-block: 44px; }
  .tiles-preview__inner { grid-template-columns: 1fr; gap: 26px; }
  .tiles-preview__media { order: -1; }
  .tiles-preview h2 { font-size: 32px; }
  .tiles-preview__content > p { margin-top: 12px; font-size: 13px; }
  .tiles-preview__uses { margin: 20px 0; }
  .tiles-preview__uses span { padding: 10px 5px; font-size: 8px; }

  .project-band__inner { padding-block: 46px; gap: 30px; }
  .project-band h2 { font-size: 32px; }
  .project-band__content > p { font-size: 13px; }
  .project-steps { margin-top: 24px; grid-template-columns: 1fr; gap: 12px; }
  .project-steps li { padding-top: 10px; }
  .project-steps strong { font-size: 11px; }
  .project-steps small { font-size: 9px; }
  .project-enquiry { padding: 20px 18px; }
  .project-enquiry h3 { font-size: 22px; }
}
@media (max-width: 590px) {
  body.is-storefront-home .delivery-hero,
  body.is-storefront-home .delivery-hero__inner {
    height: auto;
    min-height: 430px;
  }
  body.is-storefront-home .delivery-hero__content {
    min-height: 430px;
    padding-block: 34px;
    justify-content: center;
  }
}

/* Premium homepage carousel and coordinated surfaces */
body.is-storefront-home .delivery-hero {
  height: 390px;
  min-height: 0;
  position: relative;
  background: #122725;
}
body.is-storefront-home .delivery-hero::before { display: none; }
.hero-carousel__track {
  width: 100%;
  height: 100%;
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  overscroll-behavior-x: contain;
}
.hero-carousel__track::-webkit-scrollbar { display: none; }
.hero-slide {
  width: 100%;
  height: 100%;
  min-width: 100%;
  position: relative;
  isolation: isolate;
  flex: 0 0 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  overflow: hidden;
}
.hero-slide__image {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -2;
  inset: 0;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.88) contrast(1.06);
}
.hero-slide:nth-child(2) .hero-slide__image { object-position: center 43%; }
.hero-slide:nth-child(3) .hero-slide__image { object-position: center 52%; }
.hero-slide:nth-child(4) .hero-slide__image { object-position: center 55%; }
.hero-slide::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 23, 23, 0.9) 0%, rgba(5, 23, 23, 0.75) 44%, rgba(5, 23, 23, 0.2) 78%);
}
body.is-storefront-home .hero-slide .delivery-hero__inner {
  height: 100%;
  min-height: 0;
  padding: 0 clamp(34px, 5vw, 72px);
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
}
body.is-storefront-home .hero-slide .delivery-hero__content {
  width: min(650px, 66%);
  min-height: 0;
  padding: 30px 0 54px;
  display: block;
}
.hero-slide .eyebrow { color: #f0c6b4; }
.hero-slide h1,
.hero-slide h2 {
  max-width: 650px;
  margin: 0;
  color: #fff;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 45px;
  font-weight: 800;
  line-height: 1.04;
}
.hero-slide .delivery-hero__content > p {
  max-width: 570px;
  margin: 13px 0 0;
  color: #e1ece8;
  font-size: 14px;
  line-height: 1.55;
}
.hero-slide .hero-actions {
  margin-top: 18px;
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 9px;
}
.hero-slide .hero-actions .primary-link,
.hero-slide .hero-actions .secondary-link {
  min-height: 42px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 5px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  white-space: nowrap;
}
.hero-slide .hero-actions .primary-link { border-color: var(--teal); background: var(--teal); }
.hero-slide .hero-actions .primary-link:hover { border-color: #0c695f; background: #0c695f; }
.hero-slide .hero-actions .secondary-link:hover { background: rgba(255, 255, 255, 0.12); }
.hero-carousel__toolbar {
  min-height: 34px;
  position: absolute;
  z-index: 4;
  right: clamp(22px, 3vw, 40px);
  bottom: 16px;
  left: clamp(34px, 5vw, 72px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  pointer-events: none;
}
.hero-carousel__dots,
.hero-carousel__controls { display: flex; align-items: center; gap: 7px; pointer-events: auto; }
.hero-carousel__dot {
  width: 16px;
  height: 3px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.42);
  cursor: pointer;
  transition: width 180ms ease, background-color 180ms ease;
}
.hero-carousel__dot.is-active { width: 32px; background: #fff; }
.hero-carousel__controls button {
  width: 34px;
  height: 34px;
  padding: 0 0 3px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 50%;
  background: rgba(7, 26, 26, 0.54);
  color: #fff;
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
}
.hero-carousel__controls button:hover { background: rgba(7, 26, 26, 0.86); }

body.is-storefront-home .category-section .section-heading > div { max-width: 720px; }
body.is-storefront-home .category-section .section-heading p {
  max-width: 620px;
  margin: 11px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.tiles-preview {
  padding-block: 66px;
  background: #17211f;
  border-color: #2d3936;
  color: #fff;
}
.tiles-preview__inner { grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr); gap: 58px; }
.tiles-preview .eyebrow { color: #f0c6b4; }
.tiles-preview h2 { max-width: 560px; color: #fff; }
.tiles-preview__content > p { max-width: 560px; color: #c7d2ce; line-height: 1.65; }
.tiles-preview__uses {
  margin: 24px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  border: 0;
}
.tiles-preview__uses span,
.tiles-preview__uses span:first-child,
.tiles-preview__uses span:last-child {
  padding: 8px 11px;
  border: 1px solid #46534f;
  border-radius: 3px;
  color: #edf3f0;
  font-size: 9px;
  text-align: left;
}
.tiles-preview .primary-link { border: 1px solid #e7bca9; background: #e7bca9; color: #18211f; }
.tiles-preview .primary-link:hover { border-color: #fff; background: #fff; color: #18211f; }
.tiles-preview__media {
  position: relative;
  aspect-ratio: 16 / 10;
  border: 1px solid #3b4744;
  box-shadow: 0 26px 56px rgba(0, 0, 0, 0.28);
}
.tiles-preview__media img { filter: saturate(0.82) contrast(1.04); }
.tiles-preview__media figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 11px 13px;
  background: rgba(19, 30, 27, 0.9);
  border-left: 3px solid #e7bca9;
  color: #fff;
}
.tiles-preview__media figcaption span,
.tiles-preview__media figcaption strong { display: block; }
.tiles-preview__media figcaption span { color: #c7d2ce; font-size: 8px; font-weight: 700; text-transform: uppercase; }
.tiles-preview__media figcaption strong { margin-top: 3px; font-size: 11px; }

@media (max-width: 760px) {
  body.is-storefront-home .delivery-hero { height: 370px; min-height: 0; }
  body.is-storefront-home .hero-slide .delivery-hero__inner {
    height: 100%;
    min-height: 0;
    padding-inline: 20px;
  }
  body.is-storefront-home .hero-slide .delivery-hero__content {
    width: 100%;
    min-height: 0;
    padding: 25px 0 55px;
  }
  .hero-slide::after { background: linear-gradient(90deg, rgba(5, 23, 23, 0.91) 0%, rgba(5, 23, 23, 0.7) 70%, rgba(5, 23, 23, 0.38) 100%); }
  .hero-slide h1,
  .hero-slide h2 { max-width: 340px; font-size: 31px; line-height: 1.05; }
  .hero-slide .delivery-hero__content > p { max-width: 340px; margin-top: 10px; font-size: 11px; line-height: 1.48; }
  .hero-slide .hero-actions { width: 100%; margin-top: 15px; gap: 7px; }
  .hero-slide .hero-actions .primary-link,
  .hero-slide .hero-actions .secondary-link {
    min-width: 0;
    min-height: 40px;
    padding-inline: 8px;
    flex: 1 1 0;
    font-size: 10px;
  }
  .hero-carousel__toolbar { right: 18px; bottom: 13px; left: 20px; }
  .hero-carousel__controls button { width: 31px; height: 31px; font-size: 22px; }
  .hero-carousel__dot { width: 12px; }
  .hero-carousel__dot.is-active { width: 25px; }

  body.is-storefront-home .category-section .section-heading { display: block; }
  body.is-storefront-home .category-section .section-heading p { margin-top: 8px; font-size: 11px; }

  .tiles-preview { padding-block: 46px; }
  .tiles-preview__inner { grid-template-columns: 1fr; gap: 28px; }
  .tiles-preview__media { order: -1; aspect-ratio: 4 / 3; }
  .tiles-preview h2 { font-size: 31px; }
  .tiles-preview__content > p { font-size: 12px; }
  .tiles-preview__uses { margin: 19px 0; }
  .tiles-preview__uses span,
  .tiles-preview__uses span:first-child,
  .tiles-preview__uses span:last-child { padding: 7px 8px; font-size: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-carousel__track { scroll-behavior: auto; }
  .hero-carousel__dot { transition: none; }
}

/* Synchronized category image stories */
.category-card__media {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  background: #eef2f0;
}
.category-card__frame {
  position: absolute;
  inset: 0;
  opacity: 0;
  background: #eef2f0;
  transition: opacity 700ms ease;
}
.category-card__frame.is-active { opacity: 1; }
.category-card__frame img,
body.is-storefront-home .category-card__frame img {
  position: absolute;
  object-position: center 50%;
}
.category-card__frame .category-card__product,
body.is-storefront-home .category-card__frame .category-card__product {
  width: 100%;
  height: 100%;
  inset: 0;
  padding: 10px 10px 54px;
  object-fit: contain;
  opacity: 1;
  transform: none;
  filter: saturate(0.98) contrast(1.02);
  transition: filter 260ms ease;
}
.category-card:hover .category-card__frame.is-active .category-card__product {
  transform: none;
  filter: saturate(1.03) contrast(1.04);
}
body.is-storefront-home .category-card::after {
  z-index: 1;
  background: linear-gradient(180deg, transparent 58%, rgba(39, 35, 28, 0.18) 100%);
  pointer-events: none;
}
body.is-storefront-home .category-card__content {
  z-index: 2;
  padding: 0 24px 20px;
  justify-content: flex-end;
  align-items: flex-start;
}
body.is-storefront-home .category-card__content strong {
  max-width: calc(100% - 10px);
  min-height: 42px;
  margin: 0;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(155, 190, 171, 0.82);
  border-radius: 5px;
  background: rgba(220, 239, 230, 0.96);
  box-shadow: 0 8px 22px rgba(35, 30, 22, 0.14);
  color: var(--teal-dark);
  font-size: 20px;
  line-height: 1.1;
  text-shadow: none;
  backdrop-filter: blur(8px);
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}
body.is-storefront-home .category-card__content strong::after {
  content: "\2192";
  margin-left: 12px;
  font-family: Arial, sans-serif;
  font-size: 15px;
}
body.is-storefront-home .category-card:hover .category-card__content strong {
  background: #cfe8dc;
  box-shadow: 0 11px 24px rgba(35, 30, 22, 0.18);
  transform: translateY(-2px);
}

@media (max-width: 590px) {
  .category-card__frame .category-card__product,
  body.is-storefront-home .category-card__frame .category-card__product {
    width: 100%;
    height: 100%;
    inset: 0;
    padding: 8px 8px 50px;
    object-fit: contain;
    transform: none;
  }
  body.is-storefront-home .category-card::after {
    background: linear-gradient(180deg, transparent 55%, rgba(39, 35, 28, 0.16) 100%);
  }
  body.is-storefront-home .category-card__content { padding: 0 16px 15px; }
  body.is-storefront-home .category-card__content strong {
    min-height: 38px;
    padding: 0 13px;
    font-size: 17px;
  }
  body.is-storefront-home .category-card__content strong::after {
    margin-left: 10px;
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .category-card__frame,
  .category-card__frame img { transition: none; }
}

/* Image-led homepage */
body.is-storefront-home .delivery-hero {
  height: clamp(350px, 29vw, 420px);
  min-height: 0;
  background: #123f39;
  box-shadow: inset 0 0 0 1px rgba(215, 182, 94, 0.38), 0 18px 46px rgba(12, 54, 48, 0.12);
}
body.is-storefront-home .hero-slide::after {
  background:
    linear-gradient(90deg, rgba(5, 27, 25, 0.66) 0%, rgba(5, 27, 25, 0.28) 30%, transparent 57%),
    linear-gradient(180deg, transparent 62%, rgba(5, 23, 23, 0.4) 100%);
}
body.is-storefront-home .hero-slide__image {
  filter: saturate(1.02) contrast(1.01);
}
body.is-storefront-home .hero-slide:nth-child(1) .hero-slide__image { object-position: 55% center; }
body.is-storefront-home .hero-slide:nth-child(2) .hero-slide__image { object-position: 62% center; }
body.is-storefront-home .hero-slide:nth-child(3) .hero-slide__image { object-position: 63% center; }
body.is-storefront-home .hero-slide .delivery-hero__inner {
  height: 100%;
  padding: 0 clamp(26px, 4vw, 54px);
  align-items: center;
}
body.is-storefront-home .hero-slide .delivery-hero__content {
  width: min(390px, 37%);
  padding: 0 0 4px;
  display: block;
}
body.is-storefront-home .hero-slide h1,
body.is-storefront-home .hero-slide h2 {
  max-width: 390px;
  font-size: clamp(34px, 3vw, 43px);
  line-height: 1.08;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.36);
  white-space: normal;
}
body.is-storefront-home .hero-slide .hero-actions {
  margin: 18px 0 0;
}
body.is-storefront-home .hero-slide .hero-actions .primary-link,
body.is-storefront-home .hero-slide .hero-actions .secondary-link {
  min-height: 44px;
  padding-inline: 19px;
  font-size: 12px;
}
body.is-storefront-home .hero-carousel__toolbar {
  right: 20px;
  bottom: 16px;
  left: auto;
  justify-content: flex-end;
}

.benefit-band__group { min-height: 78px; }
.benefit-band__item { min-height: 64px; }
.benefit-band strong { font-size: 12px; }
.benefit-band small { font-size: 9px; }

body.is-storefront-home .category-section {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-block: 56px 68px;
  background: var(--surface);
  border-block: 1px solid var(--line);
  color: var(--ink);
}
body.is-storefront-home .category-section .section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 28px;
}
body.is-storefront-home .category-section .eyebrow {
  margin-bottom: 8px;
  color: var(--teal);
}
body.is-storefront-home .category-section .section-heading h2 {
  color: var(--ink);
  font-size: 36px;
}
body.is-storefront-home .category-section .section-heading p {
  max-width: 620px;
  margin: 9px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
}
body.is-storefront-home .category-section__all {
  min-height: 42px;
  padding: 0 15px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid #b8dbd1;
  border-radius: 5px;
  background: #e2f0ec;
  color: #0b5048;
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}
body.is-storefront-home .category-section__all:hover { background: #cfe6df; }
body.is-storefront-home .category-grid { margin-top: 28px; }
body.is-storefront-home .category-card,
body.is-storefront-home .category-card__content {
  height: 224px;
  min-height: 224px;
}
body.is-storefront-home .category-card {
  border: 1px solid rgba(159, 176, 171, 0.42);
  box-shadow: 0 14px 30px rgba(25, 48, 42, 0.12);
}

.project-band {
  padding-block: 54px;
  background: var(--surface);
  border-block: 1px solid var(--line);
  color: var(--ink);
}
.project-band__inner {
  min-height: 0;
  padding-block: 0;
  grid-template-columns: minmax(0, 1.8fr) minmax(320px, 0.72fr);
  align-items: stretch;
  gap: 24px;
}
.project-band__visual {
  min-width: 0;
  min-height: 410px;
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #d9ddd9;
  box-shadow: 0 18px 42px rgba(19, 43, 36, 0.14);
}
.project-band__visual::after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(180deg, transparent, rgba(8, 31, 29, 0.76));
}
.project-band__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  filter: saturate(0.94) contrast(1.03);
}
.project-band__visual figcaption {
  position: absolute;
  z-index: 1;
  right: 28px;
  bottom: 25px;
  left: 28px;
  color: #fff;
}
.project-band__visual h2 {
  max-width: none;
  margin: 0;
  color: #fff;
  font-size: 35px;
  line-height: 1.05;
}
.project-band__visual .project-band__eyebrow {
  margin-bottom: 7px;
  display: block;
  color: #d9c483;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}
.project-band__visual figcaption p {
  margin: 6px 0 0;
  color: #dce8e4;
  font-size: 11px;
  line-height: 1.4;
}
.project-enquiry {
  height: 100%;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 18px 42px rgba(19, 43, 36, 0.13);
}
.project-enquiry h3 { margin-bottom: 4px; }
.project-enquiry .project-enquiry__intro {
  margin: 6px 0 0;
  color: #5e6661;
  font-size: 11px;
  line-height: 1.45;
}
.project-enquiry__intro + .project-form { margin-top: 14px; }
.project-enquiry .project-form > p { color: var(--teal-dark); }

.tiles-preview { padding-block: 54px; }
.tiles-preview__inner {
  grid-template-columns: minmax(0, 3fr) minmax(240px, 1fr);
  gap: 36px;
}
.tiles-preview__media {
  aspect-ratio: 16 / 9;
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.26);
}
.tiles-preview__content { max-width: 330px; }
.tiles-preview h2 {
  margin: 0 0 22px;
  font-size: 33px;
  line-height: 1.08;
}
.tiles-preview .primary-link { min-height: 42px; }

@media (max-width: 900px) {
  .project-band__inner { grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr); }
  .project-band__visual { min-height: 390px; }
  .tiles-preview__inner { grid-template-columns: minmax(0, 2fr) minmax(220px, 1fr); gap: 26px; }
}

@media (max-width: 760px) {
  body.is-storefront-home .delivery-hero { height: 280px; min-height: 0; }
  body.is-storefront-home .hero-slide::after {
    background:
      linear-gradient(180deg, transparent 34%, rgba(5, 23, 23, 0.82) 100%),
      linear-gradient(90deg, rgba(5, 23, 23, 0.24), transparent 62%);
  }
  body.is-storefront-home .hero-slide:nth-child(1) .hero-slide__image { object-position: 68% center; }
  body.is-storefront-home .hero-slide:nth-child(2) .hero-slide__image { object-position: 72% center; }
  body.is-storefront-home .hero-slide:nth-child(3) .hero-slide__image { object-position: 72% center; }
  body.is-storefront-home .hero-slide .delivery-hero__inner {
    height: 100%;
    min-height: 0;
    padding-inline: 16px;
    align-items: flex-end;
  }
  body.is-storefront-home .hero-slide .delivery-hero__content {
    width: min(300px, calc(100% - 18px));
    min-height: 0;
    padding: 0 0 48px;
    display: block;
  }
  body.is-storefront-home .hero-slide h1,
  body.is-storefront-home .hero-slide h2 {
    max-width: 275px;
    font-size: 25px;
    line-height: 1.1;
    white-space: normal;
  }
  body.is-storefront-home .hero-slide .hero-actions {
    width: auto;
    margin-top: 12px;
    justify-content: flex-start;
  }
  body.is-storefront-home .hero-slide .hero-actions .primary-link,
  body.is-storefront-home .hero-slide .hero-actions .secondary-link {
    min-height: 40px;
    padding-inline: 15px;
    flex: 0 0 auto;
    font-size: 11px;
  }
  body.is-storefront-home .hero-carousel__toolbar {
    right: 14px;
    bottom: 14px;
    left: auto;
    justify-content: flex-end;
  }

  .benefit-band__group,
  .benefit-band__group--clone,
  .benefit-band__item { min-height: 72px; }
  .benefit-band small { font-size: 9px; }

  body.is-storefront-home .category-section { padding-block: 40px 48px; }
  body.is-storefront-home .category-section .section-heading { gap: 12px; }
  body.is-storefront-home .category-section .section-heading h2 { font-size: 28px; }
  body.is-storefront-home .category-section .section-heading p {
    max-width: 225px;
    font-size: 11px;
    line-height: 1.45;
  }
  body.is-storefront-home .category-section__all {
    min-height: 36px;
    padding-inline: 10px;
    gap: 6px;
    font-size: 9px;
  }
  body.is-storefront-home .category-card,
  body.is-storefront-home .category-card__content {
    height: 198px;
    min-height: 198px;
  }

  .project-band { padding-block: 38px; }
  .project-band__inner { grid-template-columns: 1fr; gap: 16px; }
  .project-band__visual { min-height: 245px; }
  .project-band__visual img { object-position: 68% center; }
  .project-band__visual figcaption { right: 18px; bottom: 17px; left: 18px; }
  .project-band__visual h2 { font-size: 28px; }
  .project-band__visual .project-band__eyebrow { font-size: 8px; }
  .project-band__visual figcaption p { font-size: 10px; }
  .project-enquiry { padding: 21px 18px; }
  .project-enquiry h3 { font-size: 22px; }

  .tiles-preview { padding-block: 38px; }
  .tiles-preview__inner { grid-template-columns: 1fr; gap: 22px; }
  .tiles-preview__media { order: 0; aspect-ratio: 4 / 3; }
  .tiles-preview__content { max-width: 330px; }
  .tiles-preview h2 { margin-bottom: 16px; font-size: 27px; }
}

/* Keep checkout selection and bottom-sheet rules after the legacy responsive layers. */
.payment-method--selected {
  border-color: var(--teal);
  box-shadow: 0 0 0 2px rgba(8, 127, 114, 0.1);
}
.payment-method--disabled { background: #f5f6f6; color: #7b8583; cursor: not-allowed; }
.payment-method--disabled strong,
.payment-method--disabled small { color: #7b8583; }

@media (max-width: 760px) {
  .checkout-dialog {
    width: 100%;
    max-width: none;
    max-height: calc(92dvh - env(safe-area-inset-bottom));
    inset: auto 0 0;
    margin: auto 0 0;
    border-radius: 12px 12px 0 0;
  }
  .checkout-dialog .dialog-header { min-height: 72px; padding: 13px 16px; }
  .checkout-dialog .dialog-header h2 { font-size: 21px; }
  .checkout-form { padding: 0 14px calc(18px + env(safe-area-inset-bottom)); }
  .checkout-form > .checkout-account { margin-top: 14px; }
  .checkout-section { padding-top: 16px; }
  .checkout-section__heading { margin-bottom: 11px; }
  .form-grid { grid-template-columns: 1fr; gap: 10px; }
  .form-grid--location { grid-template-columns: 1fr; }
  .form-grid__wide { grid-column: auto; }
  .checkout-business, .checkout-section.payment-methods { margin-top: 16px; }
  .checkout-business__fields { grid-template-columns: 1fr; gap: 10px; }
  .checkout-business__fields p { grid-column: auto; }
  .checkout-account { margin-bottom: 13px; padding: 11px; }
  .payment-method { min-height: 60px; padding: 10px; }
  .checkout-actions { margin-top: 16px; grid-template-columns: 1fr; gap: 11px; }
  .checkout-review { min-height: 34px; }
}

@media (max-width: 390px) {
  .checkout-account__guest { grid-template-columns: auto minmax(0, 1fr); }
  .checkout-account__button { width: 100%; grid-column: 1 / -1; }
  .payment-method em { padding-inline: 5px; }
}

/* Premium full-width storefront hero and compact navigation search. */
.header-main {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.header-main .wishlist-summary { margin-left: auto; }
.desktop-shop-nav__inner {
  justify-content: flex-start;
  gap: clamp(18px, 2.25vw, 32px);
}
.nav-search-button {
  min-height: 36px;
  margin-left: auto;
  padding: 0 3px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 0;
  background: transparent;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}
.nav-search-button .search-icon {
  width: 15px;
  height: 15px;
  border-color: currentColor;
}
.nav-search-button .search-icon::after { background: currentColor; }
.nav-search-button:hover { color: var(--teal); }

.search-dialog {
  width: min(560px, calc(100% - 28px));
  max-height: min(620px, 86dvh);
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 24px 70px rgba(8, 35, 31, 0.28);
}
.search-dialog::backdrop { background: rgba(7, 26, 24, 0.56); backdrop-filter: blur(4px); }
.search-dialog__header {
  min-height: 84px;
  padding: 17px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.search-dialog__header span {
  display: block;
  color: var(--teal);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}
.search-dialog__header h2 { margin: 3px 0 0; font-size: 22px; line-height: 1.15; }
.search-dialog__form { padding: 20px; }
.search-box--dialog {
  width: 100%;
  height: 52px;
  display: flex;
  grid-column: auto;
  grid-row: auto;
  background: #fff;
  border: 1px solid #cbd8d4;
  box-shadow: none;
}
.search-box--dialog:focus-within { border-color: var(--teal); }
.search-dialog__suggestions { margin-top: 13px; display: flex; flex-wrap: wrap; gap: 7px; }
.search-dialog__suggestions button {
  min-height: 34px;
  padding: 0 11px;
  border: 1px solid #d7e2de;
  border-radius: 5px;
  background: var(--surface);
  color: var(--teal-dark);
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
}
.search-dialog__suggestions button:hover { border-color: var(--teal); background: var(--green-soft); }
.search-dialog__submit { width: 100%; margin-top: 18px; }

body.is-storefront-home .delivery-hero {
  width: 100%;
  max-width: none;
  height: clamp(330px, 34vw, 470px);
  margin: 0;
  border-radius: 0;
  box-shadow: none;
}
body.is-storefront-home .hero-slide::after {
  background: linear-gradient(90deg, rgba(6, 26, 23, 0.62) 0%, rgba(6, 26, 23, 0.24) 27%, transparent 50%);
}
body.is-storefront-home .hero-slide__image { filter: saturate(1.01) contrast(1.02); }
body.is-storefront-home .hero-slide:nth-child(1) .hero-slide__image { object-position: 58% center; }
body.is-storefront-home .hero-slide:nth-child(2) .hero-slide__image { object-position: 61% center; }
body.is-storefront-home .hero-slide:nth-child(3) .hero-slide__image { object-position: 62% center; }
body.is-storefront-home .hero-slide .delivery-hero__inner { padding-inline: clamp(24px, 5vw, 74px); }
body.is-storefront-home .hero-slide .delivery-hero__content { width: min(330px, 31%); }
body.is-storefront-home .hero-slide h1,
body.is-storefront-home .hero-slide h2 {
  max-width: 330px;
  font-size: clamp(28px, 2.6vw, 36px);
  font-weight: 700;
  line-height: 1.08;
}
body.is-storefront-home .hero-slide .hero-actions { margin-top: 15px; }
body.is-storefront-home .hero-slide .hero-actions .primary-link {
  min-height: 38px;
  padding-inline: 14px;
  font-size: 10px;
}
body.is-storefront-home .hero-carousel__dot { width: 19px; }

.benefit-band__group,
.benefit-band__item { min-height: 56px; }
.benefit-band__item { padding-inline: 14px; gap: 8px; }
.benefit-band strong { font-size: 11px; }
.benefit-band small { margin-top: 1px; font-size: 8px; }

body.is-storefront-home .category-section { padding-block: 34px 52px; }
body.is-storefront-home .category-section .section-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  text-align: center;
}
body.is-storefront-home .category-section .section-heading h2 {
  margin: 0;
  color: var(--teal-dark);
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(24px, 2.4vw, 31px);
  font-weight: 650;
  line-height: 1.1;
}
body.is-storefront-home .category-section .section-heading h2::after {
  content: "";
  width: 42px;
  height: 2px;
  margin: 9px auto 0;
  display: block;
  background: var(--brand);
}
body.is-storefront-home .category-grid { margin-top: 21px; }

@media (max-width: 1120px) {
  .benefit-band__track { animation-duration: 62s; }
  .benefit-band__group,
  .benefit-band__group--clone,
  .benefit-band__item { min-height: 54px; }
}

@media (max-width: 860px) {
  .header-main { min-height: 64px; padding-block: 8px; display: flex; gap: 9px; }
  .header-main .brand { min-width: 0; }
  .header-main .wishlist-summary { margin-left: auto; }
  body.is-storefront-home .delivery-hero { height: 300px; }
}

@media (max-width: 760px) {
  .mobile-shop-nav { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 2px; }
  .mobile-shop-nav__button { padding-inline: 1px; }
  .mobile-shop-nav__button > span:last-of-type { font-size: 9px; }
  .search-dialog {
    width: 100%;
    max-width: none;
    max-height: min(76dvh, 560px);
    inset: auto 0 0;
    margin: auto 0 0;
    border-radius: 12px 12px 0 0;
  }
  .search-dialog__header { min-height: 74px; padding: 13px 16px; }
  .search-dialog__header h2 { font-size: 20px; }
  .search-dialog__form { padding: 16px 16px calc(18px + env(safe-area-inset-bottom)); }
  .search-box--dialog { height: 48px; }

  body.is-storefront-home .delivery-hero { height: 250px; }
  body.is-storefront-home .hero-slide::after {
    background:
      linear-gradient(180deg, transparent 39%, rgba(5, 23, 21, 0.68) 100%),
      linear-gradient(90deg, rgba(5, 23, 21, 0.34), transparent 58%);
  }
  body.is-storefront-home .hero-slide:nth-child(1) .hero-slide__image { object-position: 69% center; }
  body.is-storefront-home .hero-slide:nth-child(2) .hero-slide__image { object-position: 70% center; }
  body.is-storefront-home .hero-slide:nth-child(3) .hero-slide__image { object-position: 70% center; }
  body.is-storefront-home .hero-slide .delivery-hero__inner { padding-inline: 14px; }
  body.is-storefront-home .hero-slide .delivery-hero__content {
    width: min(250px, calc(100% - 74px));
    padding-bottom: 38px;
  }
  body.is-storefront-home .hero-slide h1,
  body.is-storefront-home .hero-slide h2 { max-width: 230px; font-size: 21px; }
  body.is-storefront-home .hero-slide .hero-actions { margin-top: 10px; }
  body.is-storefront-home .hero-slide .hero-actions .primary-link {
    min-height: 35px;
    padding-inline: 12px;
    font-size: 9px;
  }
  body.is-storefront-home .hero-carousel__toolbar { right: 11px; bottom: 11px; }

  .benefit-band__group,
  .benefit-band__group--clone,
  .benefit-band__item { min-height: 50px; }
  .benefit-band__item { padding-inline: 14px; }
  .benefit-band small { font-size: 8px; }

  body.is-storefront-home .category-section { padding-block: 30px 44px; }
  body.is-storefront-home .category-section .section-heading { display: flex; }
  body.is-storefront-home .category-section .section-heading h2 { font-size: 24px; }
  body.is-storefront-home .category-grid { margin-top: 18px; }
}

/* Company, customer-care, and legal information pages. */
body.is-information-page main > section:not(.information-page) { display: none; }
.information-page { width: 100%; padding-bottom: 64px; background: var(--paper); }
.information-hero {
  width: 100%;
  height: clamp(290px, 32vw, 410px);
  position: relative;
  overflow: hidden;
  background: var(--teal-dark);
  color: #fff;
}
.information-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 25, 22, 0.82), rgba(5, 25, 22, 0.42) 46%, rgba(5, 25, 22, 0.08) 76%);
}
.information-hero > img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: 63% center; }
.information-hero__overlay {
  width: min(580px, calc(100% - 48px));
  position: absolute;
  z-index: 1;
  left: clamp(24px, 6vw, 92px);
  top: 50%;
  transform: translateY(-50%);
}
.breadcrumbs--light { color: rgba(255, 255, 255, 0.8); }
.breadcrumbs--light a { color: #fff; }
.information-hero__eyebrow { display: block; margin-top: 22px; color: #d7bd86; font-size: 10px; font-weight: 800; text-transform: uppercase; }
.information-hero h1 { max-width: 540px; margin: 8px 0 0; font-size: clamp(32px, 4vw, 48px); font-weight: 700; line-height: 1.08; }
.information-hero p { max-width: 540px; margin: 14px 0 0; color: rgba(255, 255, 255, 0.88); font-size: 14px; line-height: 1.65; }
.information-layout { padding-top: 46px; display: grid; grid-template-columns: 220px minmax(0, 760px); justify-content: center; gap: clamp(34px, 6vw, 88px); }
.information-directory { align-self: start; position: sticky; top: 132px; border-right: 1px solid var(--line); }
.information-directory > div { padding: 0 24px 20px 0; }
.information-directory h2 { margin: 0 0 8px; color: var(--ink); font-size: 11px; text-transform: uppercase; }
.information-directory a { display: block; padding: 5px 0; color: var(--ink-soft); font-size: 11px; font-weight: 600; }
.information-directory a:hover,
.information-directory a[aria-current="page"] { color: var(--teal); }
.information-directory a[aria-current="page"] { font-weight: 800; }
.information-article { min-width: 0; }
.information-updated { margin: 0 0 20px; color: var(--ink-soft); font-size: 10px; }
.information-section { padding: 0 0 30px; border-bottom: 1px solid var(--line); }
.information-section + .information-section { padding-top: 30px; }
.information-section:last-child { border-bottom: 0; }
.information-section h2 { margin: 0 0 12px; color: var(--teal-dark); font-size: 22px; line-height: 1.25; }
.information-section p { margin: 0 0 12px; color: var(--ink-soft); font-size: 13px; line-height: 1.75; }
.information-section ul { margin: 4px 0 0; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px 20px; list-style: none; }
.information-section li { padding: 0 0 0 18px; position: relative; color: var(--ink-soft); font-size: 12px; line-height: 1.55; }
.information-section li::before { content: ""; width: 6px; height: 6px; position: absolute; left: 0; top: 7px; border-radius: 50%; background: var(--teal); }
.information-section__links { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 9px 18px; }
.information-section__links a { color: var(--teal-dark); font-size: 12px; font-weight: 800; }
.information-note { margin-top: 18px !important; padding: 12px 14px; border-left: 3px solid #b9842c; background: #fff8e9; color: #6c531f !important; font-size: 11px !important; }

/* Footer directory and account shortcuts. */
.footer-grid { grid-template-columns: 1.45fr repeat(4, minmax(0, 1fr)); gap: clamp(24px, 4vw, 50px); }
.footer-brand p { max-width: 240px; line-height: 1.6; }
.footer-group { min-width: 0; }
.footer-group summary { margin: 0 0 12px; color: #fff; font-size: 13px; font-weight: 800; list-style: none; cursor: default; }
.footer-group summary::-webkit-details-marker { display: none; }
.footer-group a,
.footer-group button { display: block; margin: 0 0 8px; color: #aeb8ba; font-size: 12px; }
.footer-group button { padding: 0; border: 0; background: transparent; cursor: pointer; }
.footer-group a:hover,
.footer-group button:hover { color: var(--brand); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.footer-bottom a { color: #aeb8ba; font-size: 11px; }
.account-help-links { padding: 13px 16px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.account-help-links > strong { display: block; margin-bottom: 8px; color: var(--teal-dark); font-size: 11px; }
.account-help-links > div { display: flex; flex-wrap: wrap; gap: 7px 16px; }
.account-help-links a { color: var(--ink-soft); font-size: 10px; font-weight: 700; }
.account-help-links a:hover { color: var(--teal); }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1.35fr repeat(2, minmax(0, 1fr)); }
  .footer-brand { grid-row: span 2; }
}

@media (max-width: 760px) {
  .information-page { padding-bottom: 38px; }
  .information-hero { height: 270px; }
  .information-hero::after { background: linear-gradient(180deg, rgba(5, 25, 22, 0.18), rgba(5, 25, 22, 0.82)); }
  .information-hero > img { object-position: 66% center; }
  .information-hero__overlay { width: calc(100% - 32px); left: 16px; top: auto; bottom: 24px; transform: none; }
  .information-hero__eyebrow { margin-top: 15px; font-size: 9px; }
  .information-hero h1 { max-width: 340px; margin-top: 5px; font-size: 27px; }
  .information-hero p { max-width: 350px; margin-top: 8px; font-size: 11px; line-height: 1.5; }
  .information-layout { padding-top: 24px; grid-template-columns: 1fr; gap: 26px; }
  .information-directory { position: static; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; overflow: hidden; border-right: 0; }
  .information-directory > div { min-width: 0; padding: 0 10px 0 0; border-right: 1px solid var(--line); }
  .information-directory > div:last-child { padding-right: 0; border-right: 0; }
  .information-directory h2 { font-size: 9px; }
  .information-directory a { padding: 4px 0; font-size: 9px; line-height: 1.35; }
  .information-section { padding-bottom: 24px; }
  .information-section + .information-section { padding-top: 24px; }
  .information-section h2 { font-size: 19px; }
  .information-section p { font-size: 12px; line-height: 1.7; }
  .information-section ul { grid-template-columns: 1fr; gap: 8px; }
  .information-section li { font-size: 11px; }

  .site-footer { padding-top: 36px; padding-bottom: 84px; }
  .footer-grid { grid-template-columns: 1fr; gap: 0; }
  .footer-brand { padding-bottom: 22px; }
  .footer-group { border-top: 1px solid rgba(255, 255, 255, 0.13); }
  .footer-group summary { min-height: 46px; margin: 0; padding: 0 2px; position: relative; display: flex; align-items: center; cursor: pointer; }
  .footer-group summary::after { content: "+"; position: absolute; right: 2px; color: var(--brand); font-size: 18px; font-weight: 500; }
  .footer-group[open] summary::after { content: "-"; }
  .footer-group > div { padding: 0 2px 14px; }
  .footer-bottom { margin-top: 18px; }
  .account-help-links { padding-inline: 14px; }

  .detail-highlights { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 6px; }
  .detail-highlights li { min-height: 36px; padding: 7px 7px 7px 24px; border-left-width: 2px; font-size: 9px; line-height: 1.3; }
  .detail-highlights li::before { left: 8px; }
}
.coupon-form > label span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 500;
}

.project-mode-badge {
  align-items: center;
  background: #dcefe6;
  border: 1px solid #9dcab7;
  color: #075949;
  display: inline-flex;
  font-size: 0.72rem;
  font-weight: 800;
  margin-top: 0.35rem;
  padding: 0.24rem 0.45rem;
}

/* Keep account and order access available before the mobile navigation takes over. */
@media (min-width: 761px) and (max-width: 860px) {
  .account-summary { display: flex; }
}

/* Swipeable product media keeps the complete product visible on every screen. */
.product-card__media {
  min-width: 0;
  cursor: default;
}
.product-card__gallery,
.product-detail__gallery {
  width: 100%;
  display: flex;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.product-card__gallery::-webkit-scrollbar,
.product-detail__gallery::-webkit-scrollbar { display: none; }
.product-card__gallery { height: 100%; }
.product-card__media-slide {
  width: 100%;
  height: 100%;
  min-width: 0;
  padding: 0;
  position: relative;
  display: grid;
  flex: 0 0 100%;
  place-items: center;
  overflow: hidden;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  border: 0;
  background: #eef1ed;
  color: inherit;
  cursor: pointer;
}
.product-card__media-slide img,
.product-card__media-slide video,
.product-card:hover .product-card__media-slide img,
.product-card:hover .product-card__media-slide video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: none;
}
.product-card__badges { z-index: 3; }
.media-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1px;
}
.product-card__media > .media-dots {
  min-height: 14px;
  padding: 0;
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 8px;
  border: 0;
  background: transparent;
  box-shadow: none;
  transform: translateX(-50%);
  backdrop-filter: none;
}
.product-card__media > .media-dots .media-dot {
  width: 14px;
  height: 14px;
}
.product-card__media > .media-dots .media-dot::after {
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1px 3px rgba(9, 36, 32, 0.34);
}
.product-card__media > .media-dots .media-dot.is-active::after {
  width: 8px;
  background: var(--teal-dark);
}
.media-dot {
  width: 18px;
  height: 18px;
  position: relative;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}
.media-dot::after {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #91a09b;
  transition: width 160ms ease, background 160ms ease, transform 160ms ease;
}
.media-dot.is-active::after {
  width: 13px;
  border-radius: 999px;
  background: var(--teal-dark);
}
.media-dot:focus-visible { outline: 2px solid var(--brand); outline-offset: 1px; }

.product-dialog { overflow-x: hidden; }
.product-detail,
.product-detail__media,
.product-detail__main-media { min-width: 0; }
.product-detail { align-items: start; }
.product-detail__media {
  min-height: 0;
  align-self: start;
  overflow: hidden;
}
.product-detail__main-media {
  width: 100%;
  min-height: 0;
  display: block;
  flex: none;
}
.product-detail__gallery {
  min-height: 0;
  height: auto;
  aspect-ratio: 1 / 1;
}
.product-detail__media-slide {
  width: 100%;
  height: auto;
  min-width: 0;
  position: relative;
  display: grid;
  flex: 0 0 100%;
  aspect-ratio: 1 / 1;
  place-items: center;
  overflow: hidden;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  background: #f1f4f1;
}
.product-detail__main-image {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  min-width: 0;
  min-height: 0;
  display: block;
  flex: none;
  object-fit: contain;
}
.product-detail__gallery-dots {
  min-height: 34px;
  display: grid;
  place-items: center;
  background: var(--paper);
  border-top: 1px solid var(--line);
}
.product-detail__gallery-dots:empty { display: none; }
.product-detail__thumbnail { cursor: pointer; }

@media (max-width: 860px) {
  .product-detail__media { min-height: 0; max-height: none; }
  .product-detail__main-media { min-height: 0; }
  .product-detail__gallery {
    min-height: 0;
    height: auto;
    aspect-ratio: 4 / 3;
  }
  .product-detail__media-slide { aspect-ratio: 4 / 3; }
  .product-detail__main-image { min-height: 0; max-height: none; }
}

@media (max-width: 590px) {
  .product-dialog {
    width: calc(100% - 12px);
    max-height: calc(100dvh - 12px);
  }
  .product-detail__gallery { aspect-ratio: 1 / 1; }
  .product-detail__media-slide { aspect-ratio: 1 / 1; }
  .product-detail__thumbnails { display: none; }
  .product-detail__gallery-dots { min-height: 36px; }
  .product-card__media-slide img,
  .product-card__media-slide video { object-fit: contain; }
}

@media (prefers-reduced-motion: reduce) {
  .media-dot::after { transition: none; }
}

/* Homepage category mosaic: one collection gateway followed by two-up categories. */
body.is-storefront-home .category-grid {
  width: 100%;
  max-width: 980px;
  margin: 24px auto 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  overflow: visible;
}
body.is-storefront-home .category-card,
body.is-storefront-home .category-card__content {
  width: 100%;
  min-width: 0;
  min-height: 0;
  height: auto;
}
body.is-storefront-home .category-card {
  aspect-ratio: 1 / 1;
  background: #e9eeeb;
}
body.is-storefront-home .category-card--featured {
  grid-column: 1 / -1;
  aspect-ratio: 2.6 / 1;
}
body.is-storefront-home .category-card::after {
  background: linear-gradient(180deg, transparent 48%, rgba(7, 27, 24, 0.8) 100%);
}
body.is-storefront-home .category-card__content {
  height: 100%;
  aspect-ratio: auto;
  padding: 0 22px 20px;
  pointer-events: none;
}
body.is-storefront-home .category-card__frame .category-card__product {
  padding: 0;
  object-fit: cover;
  object-position: center;
}
body.is-storefront-home .category-card--featured .category-card__frame .category-card__product {
  padding: 0;
}
body.is-storefront-home .category-card__content strong {
  max-width: 100%;
  min-width: 0;
  min-height: 0;
  padding: 0;
  display: block;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #ffffff;
  font-size: 22px;
  line-height: 1.16;
  overflow-wrap: anywhere;
  white-space: normal;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.52);
  backdrop-filter: none;
  transform: none;
}
body.is-storefront-home .category-card__content strong::after {
  content: none;
}
body.is-storefront-home .category-card:hover .category-card__content strong {
  background: transparent;
  box-shadow: none;
  transform: none;
}
body.is-storefront-home .category-card--featured .category-card__content strong {
  font-size: 28px;
}

@media (max-width: 760px) {
  body.is-storefront-home .category-grid {
    margin-top: 18px;
    gap: 10px;
  }
  body.is-storefront-home .category-card--featured {
    aspect-ratio: 2 / 1;
  }
  body.is-storefront-home .category-card__content {
    padding: 0 10px 10px;
  }
  body.is-storefront-home .category-card__frame .category-card__product {
    padding: 0;
  }
  body.is-storefront-home .category-card--featured .category-card__frame .category-card__product {
    padding: 0;
  }
  body.is-storefront-home .category-card__content strong {
    min-height: 0;
    padding: 0;
    font-size: 16px;
  }
  body.is-storefront-home .category-card--featured .category-card__content strong {
    font-size: 21px;
  }
}

@media (max-width: 390px) {
  body.is-storefront-home .category-card__content strong {
    font-size: 15px;
  }
  body.is-storefront-home .category-card--featured .category-card__content strong {
    font-size: 20px;
  }
}

/* Guided customer enquiries */
.announcement__links {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.announcement__links button,
.site-footer .footer-group button {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  text-decoration: underline;
  cursor: pointer;
}
.support-launcher {
  min-height: 44px;
  position: fixed;
  z-index: 28;
  right: 22px;
  bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  background: var(--teal-dark);
  box-shadow: 0 8px 24px rgba(8, 47, 43, 0.24);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}
.support-launcher__icon {
  width: 20px;
  height: 16px;
  position: relative;
  display: block;
  border: 1.8px solid currentColor;
  border-radius: 5px;
}
.support-launcher__icon::before {
  content: "";
  width: 5px;
  height: 5px;
  position: absolute;
  left: 3px;
  bottom: -4px;
  border-left: 1.8px solid currentColor;
  transform: skewY(-38deg);
}
.support-launcher__icon::after {
  content: "...";
  position: absolute;
  left: 4px;
  top: -7px;
  letter-spacing: 1px;
  font-size: 13px;
}
.support-dialog {
  width: min(560px, calc(100% - 28px));
  max-width: 560px;
  max-height: min(820px, calc(100dvh - 28px));
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 26px 70px rgba(8, 31, 29, 0.3);
  color: var(--ink);
  overflow: hidden;
}
.support-dialog::backdrop { background: rgba(8, 29, 27, 0.58); backdrop-filter: blur(3px); }
.support-dialog__shell { min-height: 0; max-height: inherit; display: flex; flex-direction: column; }
.support-dialog__header {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  background: #fbfcfb;
}
.support-dialog__brand { display: flex; align-items: center; gap: 10px; }
.support-dialog__brand img { width: 108px; height: auto; display: block; }
.support-dialog__brand span {
  padding-left: 10px;
  border-left: 1px solid var(--line);
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.support-dialog__body {
  flex: 1 1 auto;
  min-height: 0;
  padding: 18px;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
  overscroll-behavior: contain;
}
.support-intro { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.support-intro h2,
.support-success h2 { margin: 0; font-size: 25px; line-height: 1.15; letter-spacing: 0; }
.support-intro p,
.support-success p { margin: 4px 0 0; color: var(--ink-soft); font-size: 14px; line-height: 1.5; }
.support-avatar {
  width: 42px;
  height: 42px;
  position: relative;
  flex: 0 0 auto;
  border: 1px solid #b8d5cc;
  border-radius: 50%;
  background: #e7f3ef;
}
.support-avatar::before {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  left: 15px;
  top: 9px;
  border: 1.5px solid var(--teal-dark);
  border-radius: 50%;
}
.support-avatar::after {
  content: "";
  width: 22px;
  height: 11px;
  position: absolute;
  left: 9px;
  bottom: 7px;
  border: 1.5px solid var(--teal-dark);
  border-bottom: 0;
  border-radius: 12px 12px 0 0;
}
.support-options { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; }
.support-option {
  min-width: 0;
  min-height: 76px;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition: border-color 150ms ease, background 150ms ease, transform 150ms ease;
}
.support-option:hover { border-color: #8ebdb0; background: #f3f8f6; transform: translateY(-1px); }
.support-option__icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  background: #e7f3ef;
  color: var(--teal-dark);
}
.support-option__icon svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.6; }
.support-option strong,
.support-option small,
.support-selected strong,
.support-selected small { display: block; }
.support-option strong,
.support-selected strong { font-size: 15px; line-height: 1.25; }
.support-option small,
.support-selected small { margin-top: 3px; color: var(--ink-soft); font-size: 12px; line-height: 1.4; }
.support-option__arrow { color: #76928b; font-size: 22px; }
.support-form { display: grid; gap: 14px; }
.support-back { width: max-content; padding: 0; border: 0; background: transparent; color: var(--teal-dark); font-size: 13px; font-weight: 800; cursor: pointer; }
.support-selected { display: grid; grid-template-columns: 36px minmax(0, 1fr); align-items: center; gap: 10px; padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.support-order,
.support-product,
.support-message { display: grid; gap: 7px; }
.support-form label,
.support-order > label,
.support-product > label { color: var(--ink); font-size: 14px; font-weight: 800; }
.support-form input,
.support-form select,
.support-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid #cbd5d2;
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  font-family: inherit;
  font-size: 16px;
  line-height: 1.45;
}
.support-form textarea { min-height: 118px; resize: vertical; }
.support-sign-in {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 10px 12px;
  padding: 14px;
  border: 1px solid #c8ddd5;
  border-radius: 7px;
  background: #f2f8f5;
}
.support-sign-in .support-avatar { grid-row: 1; }
.support-sign-in strong { display: block; font-size: 15px; }
.support-sign-in p { margin: 3px 0 0; color: var(--ink-soft); font-size: 13px; line-height: 1.5; }
.support-sign-in button { grid-column: 1 / -1; width: 100%; }
.support-conversation { display: grid; gap: 12px; }
.support-chat-bubble {
  width: fit-content;
  max-width: min(88%, 420px);
  padding: 10px 12px;
  border-radius: 7px;
  font-size: 14px;
  line-height: 1.5;
}
.support-chat-bubble--assistant { justify-self: start; border: 1px solid #d2ded9; background: #fff; color: var(--ink); }
.support-chat-bubble--customer { justify-self: end; background: var(--teal-dark); color: #fff; }
.support-flow-control { padding: 11px; border: 1px solid var(--line); border-radius: 7px; background: #f8faf9; }
.support-choice-field { min-width: 0; margin: 0; padding: 0; border: 0; }
.support-choice-field legend { margin-bottom: 8px; color: var(--ink); font-size: 14px; font-weight: 800; }
.support-quick-replies { display: flex; flex-wrap: wrap; gap: 7px; }
.support-quick-reply {
  min-height: 38px;
  padding: 8px 11px;
  border: 1px solid #a9c9c0;
  border-radius: 18px;
  background: #fff;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}
.support-quick-reply:hover,
.support-quick-reply.is-selected { border-color: var(--teal-dark); background: var(--teal-dark); color: #fff; }
.support-photos { display: grid; gap: 10px; padding: 12px; border: 1px solid var(--line); border-radius: 7px; background: #f8faf9; }
.support-photos strong { font-size: 14px; }
.support-photos p { margin: 3px 0 0; color: var(--ink-soft); font-size: 12px; line-height: 1.45; }
.support-photo-actions { display: flex; gap: 8px; }
.support-photo-button {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 8px;
  border: 1px solid #a9c9c0;
  border-radius: 6px;
  background: #fff;
  color: var(--teal-dark);
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}
.support-photo-button:disabled,
.support-photo-button:has(input:disabled) { opacity: 0.45; cursor: default; }
.support-photo-button__camera,
.support-photo-button__upload { width: 14px; height: 12px; position: relative; display: block; border: 1.5px solid currentColor; border-radius: 3px; }
.support-photo-button__camera::after { content: ""; width: 4px; height: 4px; position: absolute; left: 4px; top: 2.5px; border: 1.5px solid currentColor; border-radius: 50%; }
.support-photo-button__upload { border: 0; border-bottom: 1.5px solid currentColor; border-radius: 0; }
.support-photo-button__upload::before { content: ""; width: 6px; height: 6px; position: absolute; left: 4px; top: 0; border-left: 1.5px solid currentColor; border-top: 1.5px solid currentColor; transform: rotate(45deg); }
.support-photo-button__upload::after { content: ""; width: 1.5px; height: 10px; position: absolute; left: 7px; top: 1px; background: currentColor; }
.support-photo-list { display: grid; grid-template-columns: repeat(3, 68px); gap: 8px; }
.support-photo-preview { width: 68px; height: 68px; position: relative; margin: 0; border: 1px solid var(--line); border-radius: 6px; overflow: hidden; background: #fff; }
.support-photo-preview img { width: 100%; height: 100%; display: block; object-fit: cover; }
.support-photo-preview button { width: 23px; height: 23px; position: absolute; top: 3px; right: 3px; display: grid; place-items: center; padding: 0; border: 1px solid rgba(255,255,255,.75); border-radius: 50%; background: rgba(9, 37, 34, .82); color: #fff; cursor: pointer; }
.support-camera-dialog {
  width: min(440px, calc(100vw - 24px));
  max-width: 440px;
  max-height: calc(100dvh - 24px);
  padding: 0;
  border: 0;
  border-radius: 8px;
  overflow: hidden;
  background: #f7faf9;
  color: var(--ink);
}
.support-camera-dialog::backdrop { background: rgba(6, 29, 27, .74); backdrop-filter: blur(4px); }
.support-camera-dialog__shell { display: grid; gap: 12px; padding: 16px; }
.support-camera-dialog__header { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.support-camera-dialog__header span { color: var(--teal-dark); font-size: 12px; font-weight: 900; text-transform: uppercase; }
.support-camera-dialog__header h2 { margin: 2px 0 0; font-size: 20px; }
.support-camera-dialog__viewport { aspect-ratio: 3 / 4; position: relative; overflow: hidden; border-radius: 7px; background: #081c1a; }
.support-camera-dialog__viewport video { width: 100%; height: 100%; display: block; object-fit: contain; }
.support-camera-dialog__guide { position: absolute; inset: 8%; border: 1px solid rgba(255,255,255,.58); border-radius: 6px; pointer-events: none; }
.support-camera-dialog__status { min-height: 18px; margin: 0; color: var(--ink-soft); font-size: 13px; text-align: center; }
.support-camera-dialog__status.is-error { color: var(--red); }
.support-camera-dialog__actions { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: 8px; }
.support-camera-dialog__actions button { min-height: 44px; }
.support-camera-dialog__hint { margin: -3px 0 0; color: var(--ink-soft); font-size: 12px; line-height: 1.45; text-align: center; }
.support-honeypot { position: absolute; left: -10000px; }
.support-status { min-height: 18px; margin: -4px 0; color: var(--teal-dark); font-size: 13px; text-align: center; }
.support-status.is-error { color: var(--red); }
.support-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
  margin: -2px 0 18px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #eef3f1;
}
.support-tab {
  min-width: 0;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 8px 12px;
  border: 0;
  border-radius: 5px;
  background: transparent;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}
.support-tab.is-active { background: #fff; color: var(--teal-dark); box-shadow: 0 1px 5px rgba(14, 49, 45, 0.1); }
.support-tab__count {
  min-width: 19px;
  height: 19px;
  display: inline-grid;
  place-items: center;
  padding: 0 5px;
  border-radius: 9px;
  background: var(--teal-dark);
  color: #fff;
  font-size: 12px;
}
.support-chats { min-width: 0; }
.support-chats__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}
.support-chats__toolbar h2,
.support-thread__header h2 { margin: 0; font-size: 20px; line-height: 1.2; letter-spacing: 0; overflow-wrap: anywhere; }
.support-chats__toolbar p { margin: 3px 0 0; color: var(--ink-soft); font-size: 13px; line-height: 1.45; }
.support-text-button {
  flex: 0 0 auto;
  min-height: 36px;
  padding: 7px 10px;
  border: 1px solid #a9c9c0;
  border-radius: 6px;
  background: #fff;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}
.support-text-button--danger { border-color: #e5bcb7; color: #9c342b; }
.support-chat-list { display: grid; gap: 8px; }
.support-chat-card {
  width: 100%;
  min-width: 0;
  display: grid;
  gap: 7px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}
.support-chat-card:hover { border-color: #8ebdb0; background: #f5f9f7; }
.support-chat-card__head { min-width: 0; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.support-chat-card__head strong { min-width: 0; font-size: 13px; overflow-wrap: anywhere; }
.support-chat-card__head em { font-style: normal; }
.support-chat-card__preview {
  min-width: 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.support-chat-card__meta { color: #728781; font-size: 12px; }
.support-chat-status {
  width: max-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  padding: 4px 7px;
  border-radius: 8px;
  background: #e7f3ef;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}
.support-chat-status--resolved,
.support-chat-status--closed { background: #edf0ef; color: #65736f; }
.support-chat-status--reviewing { background: #fff0d8; color: #82520b; }
.support-chat-empty {
  display: grid;
  justify-items: center;
  gap: 7px;
  padding: 36px 18px;
  border: 1px dashed #b8cac5;
  border-radius: 7px;
  color: var(--ink-soft);
  text-align: center;
}
.support-chat-empty .support-launcher__icon { color: var(--teal-dark); }
.support-chat-empty strong { color: var(--ink); font-size: 15px; }
.support-chat-empty p { margin: 0; font-size: 13px; line-height: 1.5; }
.support-thread { min-width: 0; }
.support-thread__header {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.support-thread__header > div { min-width: 0; display: grid; gap: 5px; }
.support-thread__messages {
  min-width: 0;
  min-height: 180px;
  max-height: 390px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px 2px;
  overflow: auto;
  overscroll-behavior: contain;
}
.support-thread__message {
  width: fit-content;
  max-width: 82%;
  display: grid;
  gap: 5px;
  padding: 9px 11px;
  border: 1px solid #d4e0dc;
  border-radius: 7px;
  background: #fff;
  color: var(--ink);
  overflow-wrap: anywhere;
}
.support-thread__message--customer { align-self: flex-end; border-color: var(--teal-dark); background: var(--teal-dark); color: #fff; }
.support-thread__message--staff { align-self: flex-start; background: #eef7f4; }
.support-thread__message--system { align-self: center; max-width: 92%; background: #f3f5f4; color: var(--ink-soft); text-align: center; }
.support-thread__message > span { font-size: 12px; font-weight: 900; text-transform: uppercase; opacity: 0.74; }
.support-thread__message p { margin: 0; font-size: 14px; line-height: 1.5; }
.support-thread__message time { font-size: 12px; opacity: 0.7; }
.support-thread__attachments { display: grid; grid-template-columns: repeat(2, minmax(0, 112px)); gap: 6px; }
.support-thread__attachment {
  width: 100%;
  aspect-ratio: 1;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 5px;
  overflow: hidden;
  background: #eef2f0;
}
.support-thread__attachment img { width: 100%; height: 100%; display: block; object-fit: cover; }
.support-thread__loading { margin: auto; color: var(--ink-soft); font-size: 13px; }
.support-thread__closed { margin: 0 0 12px; padding: 10px; border-radius: 6px; background: #edf0ef; color: var(--ink-soft); font-size: 13px; text-align: center; }
.support-reply {
  display: grid;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.support-reply > label { display: grid; gap: 6px; color: var(--ink); font-size: 13px; font-weight: 800; }
.support-reply textarea {
  width: 100%;
  min-height: 46px;
  max-height: 160px;
  padding: 9px 11px;
  border: 1px solid #cbd5d2;
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 16px;
  line-height: 1.45;
  overflow-y: hidden;
  resize: none;
}
.support-reply .support-photo-actions { display: flex; flex-wrap: wrap; justify-content: flex-start; gap: 6px; }
.support-reply .support-photo-button { min-height: 30px; padding: 4px 7px; }
.support-success { padding: 28px 16px; text-align: center; }
.support-success > span { width: 52px; height: 52px; position: relative; display: block; margin: 0 auto 14px; border-radius: 50%; background: #dff1ea; }
.support-success > span::after { content: ""; width: 20px; height: 10px; position: absolute; left: 15px; top: 17px; border-left: 3px solid var(--teal-dark); border-bottom: 3px solid var(--teal-dark); transform: rotate(-45deg); }
.support-success strong { display: block; margin: 12px 0 18px; color: var(--teal-dark); font-size: 15px; }

.product-reviews {
  display: grid;
  gap: 18px;
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.product-reviews__heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}
.product-reviews__heading h3 { margin: 0; font-size: 20px; line-height: 1.25; }
.product-reviews__heading p { margin: 5px 0 0; color: var(--ink-soft); font-size: 13px; }
.product-reviews__score { flex: 0 0 auto; display: flex; align-items: center; gap: 10px; }
.product-reviews__score > strong { color: var(--ink); font-size: 30px; line-height: 1; }
.product-reviews__score > span { display: grid; gap: 2px; }
.product-reviews__score small { color: var(--ink-soft); font-size: 12px; }
.product-review-stars { color: #b36a19; font-size: 15px; line-height: 1; letter-spacing: 0; }
.product-reviews__empty {
  display: grid;
  gap: 4px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.5;
}
.product-reviews__empty strong { color: var(--ink); font-size: 15px; }
.product-reviews__loading { min-height: 58px; color: var(--ink-soft); font-size: 13px; }
.product-review-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px;
  border: 1px solid #cbdad5;
  border-radius: 7px;
  background: #f5f9f7;
}
.product-review-action > div { min-width: 0; }
.product-review-action strong { display: block; font-size: 14px; }
.product-review-action p { margin: 3px 0 0; color: var(--ink-soft); font-size: 13px; line-height: 1.45; }
.product-review-action button,
.product-review-form button {
  min-height: 40px;
  padding: 9px 14px;
  border: 1px solid var(--teal-dark);
  border-radius: 6px;
  background: var(--teal-dark);
  color: #fff;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}
.product-review-action button:hover,
.product-review-form button:hover { background: #0c4a42; }
.product-review-form {
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid #b9cdc7;
  border-radius: 7px;
  background: #fff;
}
.product-review-form[hidden] { display: none; }
.product-review-form__purchase { margin: 0; color: var(--ink-soft); font-size: 13px; }
.product-review-form__order,
.product-review-form > label { display: grid; gap: 7px; color: var(--ink); font-size: 13px; font-weight: 800; }
.product-review-form select,
.product-review-form textarea {
  width: 100%;
  padding: 10px 11px;
  border: 1px solid #c3d0cc;
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 16px;
}
.product-review-form textarea { min-height: 108px; line-height: 1.5; resize: vertical; }
.product-review-rating { margin: 0; padding: 0; border: 0; }
.product-review-rating legend { margin-bottom: 7px; font-size: 13px; font-weight: 800; }
.product-review-rating > div { display: flex; flex-direction: row-reverse; justify-content: flex-end; gap: 3px; width: max-content; }
.product-review-rating input { position: absolute; opacity: 0; pointer-events: none; }
.product-review-rating label { color: #c8cfcd; font-size: 29px; line-height: 1; cursor: pointer; }
.product-review-rating label:hover,
.product-review-rating label:hover ~ label,
.product-review-rating input:checked ~ label { color: #b36a19; }
.product-review-rating input:focus-visible + label { outline: 2px solid var(--teal-dark); outline-offset: 2px; }
.product-review-consent { display: grid !important; grid-template-columns: auto minmax(0, 1fr); align-items: flex-start; gap: 9px !important; font-weight: 500 !important; line-height: 1.45; }
.product-review-consent input { width: 18px; height: 18px; margin: 1px 0 0; accent-color: var(--teal-dark); }
.product-review-form__status { min-height: 18px; margin: 0; color: var(--teal-dark); font-size: 13px; }
.product-review-form__status.is-error { color: var(--red); }
.product-review-list { display: grid; gap: 12px; }
.product-review-card { display: grid; gap: 8px; padding: 14px 0; border-top: 1px solid var(--line); }
.product-review-card__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.product-review-card__head > div { min-width: 0; display: flex; align-items: center; gap: 8px; }
.product-review-card__head strong { min-width: 0; font-size: 14px; overflow-wrap: anywhere; }
.product-review-card time { flex: 0 0 auto; color: var(--ink-soft); font-size: 12px; }
.product-review-card p { margin: 0; color: var(--ink); font-size: 14px; line-height: 1.55; overflow-wrap: anywhere; white-space: pre-line; }
.product-review-card__verified { width: max-content; padding: 3px 6px; border-radius: 4px; background: #e5f3ee; color: var(--teal-dark); font-size: 11px; font-weight: 900; text-transform: uppercase; }
.product-review-own { display: grid; gap: 6px; padding: 12px 14px; border-left: 3px solid var(--teal-dark); background: #f2f7f5; }
.product-review-own strong { font-size: 13px; }
.product-review-own p { margin: 0; color: var(--ink-soft); font-size: 13px; line-height: 1.45; }
.product-review-eligibility { margin: 0; color: var(--ink-soft); font-size: 13px; line-height: 1.5; }

@media (max-width: 760px) {
  .support-launcher { right: 12px; bottom: 78px; padding: 9px 11px; }
  .support-dialog {
    width: 100%;
    max-width: none;
    max-height: min(88dvh, 780px);
    margin: auto 0 0;
    border-radius: 8px 8px 0 0;
  }
  .support-dialog__body { padding: 15px 14px calc(20px + env(safe-area-inset-bottom)); }
  .support-options { grid-template-columns: 1fr; gap: 8px; }
  .support-option { min-height: 66px; }
  .support-photo-actions { display: flex; flex-wrap: wrap; }
  .support-photo-button { justify-content: center; }
  .support-chat-bubble { max-width: 92%; }
  .support-tabs { margin-bottom: 14px; }
  .support-thread__header { grid-template-columns: minmax(0, 1fr) auto; }
  .support-thread__header .support-back { grid-column: 1 / -1; }
  .support-thread__messages { max-height: 40dvh; }
  .support-thread__message { max-width: 88%; }
  .support-thread__message--system { max-width: 96%; }
  .support-chat-card__head { align-items: flex-start; }
  .support-reply .support-photo-actions { display: flex; }
  .support-camera-dialog { width: 100vw; max-width: none; max-height: 100dvh; margin: 0; border-radius: 0; }
  .support-camera-dialog__shell { min-height: 100dvh; grid-template-rows: auto minmax(0, 1fr) auto auto auto; padding: 14px 14px calc(14px + env(safe-area-inset-bottom)); }
  .support-camera-dialog__viewport { width: 100%; max-height: 68dvh; align-self: center; }
  .product-reviews__heading { display: grid; gap: 14px; }
  .product-reviews__score { justify-self: start; }
  .product-review-action { display: grid; }
  .product-review-action button,
  .product-review-form button { width: 100%; }
  .product-review-card__head { align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  .support-option { transition: none; }
  .support-option:hover { transform: none; }
  .support-quick-reply { transition: none; }
}

/* Requested quantities, automatic savings, and checkout stock choices. */
.desktop-shop-nav__projects {
  position: relative;
  padding: 12px 0 10px;
  border: 0;
  background: transparent;
  color: #3f4743;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}
.desktop-shop-nav__projects::after {
  content: "";
  height: 2px;
  position: absolute;
  right: 100%;
  bottom: 5px;
  left: 0;
  background: var(--brand);
  transition: right 160ms ease;
}
.desktop-shop-nav__projects:hover::after,
.desktop-shop-nav__projects:focus-visible::after { right: 0; }

.cart-savings-meter {
  margin: 12px 16px 0;
  padding: 9px 0 6px;
}
.cart-savings-meter[hidden] { display: none; }
.cart-savings-meter__heading {
  padding: 0 2px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.cart-savings-meter__heading strong { color: var(--teal-dark); font-size: 13px; line-height: 1.25; }
.cart-savings-meter__heading span { max-width: 58%; color: var(--ink); font-size: 11px; font-weight: 800; line-height: 1.3; text-align: right; }
.cart-savings-meter__tiers {
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  gap: 0;
  margin: 7px 0 0;
  padding: 0;
  display: grid;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  list-style: none;
}
.cart-savings-meter__tiers[hidden] { display: none; }
.cart-savings-meter__tiers::-webkit-scrollbar { display: none; }
.cart-savings-meter__page {
  min-width: 0;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}
.cart-savings-meter__milestone { padding: 8px 9px 0; }
.cart-savings-meter__line {
  height: 4px;
  position: relative;
  border-radius: 3px;
  background: #d6e0dd;
}
.cart-savings-meter__fill {
  width: 0;
  height: 100%;
  position: absolute;
  inset: 0 auto 0 0;
  border-radius: inherit;
  background: var(--teal);
  transition: width 180ms ease;
}
.cart-savings-meter__endpoint,
.cart-savings-meter__position {
  position: absolute;
  top: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.cart-savings-meter__endpoint {
  width: 12px;
  height: 12px;
  z-index: 2;
  border: 2px solid var(--teal);
  background: #fff;
}
.cart-savings-meter__endpoint--start { left: 0; }
.cart-savings-meter__endpoint--end { left: 100%; }
.cart-savings-meter__endpoint.is-reached { background: var(--teal); }
.cart-savings-meter__position {
  width: 7px;
  height: 7px;
  z-index: 3;
  background: #405852;
}
.cart-savings-meter__milestone-labels {
  margin-top: 9px;
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}
.cart-savings-meter__milestone-labels > span { display: grid; gap: 1px; color: #60706b; }
.cart-savings-meter__milestone-labels > span:last-child { justify-items: end; text-align: right; }
.cart-savings-meter__milestone-labels strong { color: var(--teal-dark); font-size: 11px; line-height: 1.2; }
.cart-savings-meter__milestone-labels small { font-size: 10px; font-weight: 700; line-height: 1.2; }
.cart-savings-meter__pages { min-height: 10px; margin-top: 3px; display: flex; align-items: center; justify-content: center; gap: 5px; }
.cart-savings-meter__pages[hidden] { display: none; }
.cart-savings-meter__pages button { width: 5px; height: 5px; padding: 0; border: 0; border-radius: 50%; background: #b9c9c4; cursor: pointer; }
.cart-savings-meter__pages button.is-active { background: var(--teal); }

.cart-availability-status {
  min-height: 0;
  margin: 8px 16px 0;
  color: var(--teal-dark);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
}
.cart-availability-status:empty { display: none; }
.cart-availability-status.is-error { color: #6f4d1f; }
.cart-stock-resolution {
  margin: 10px 16px 0;
  padding: 13px;
  border: 1px solid #cbdad5;
  border-radius: 7px;
  background: #f4f8f6;
}
.cart-stock-resolution[hidden] { display: none; }
.cart-stock-resolution__heading h3 { margin: 0; color: var(--ink); font-size: 15px; }
.cart-stock-resolution__heading p { margin: 3px 0 0; color: var(--ink-soft); font-size: 11px; line-height: 1.4; }
.cart-stock-options { margin-top: 10px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
.cart-stock-option {
  min-width: 0;
  min-height: 74px;
  padding: 10px 11px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 9px;
  border: 1px solid #cbd7d3;
  border-radius: 7px;
  background: #fff;
  cursor: pointer;
}
.cart-stock-option:has(input:checked) { border-color: var(--teal); box-shadow: 0 0 0 2px rgba(8, 127, 114, 0.1); }
.cart-stock-option:has(input:disabled) { opacity: 0.55; cursor: not-allowed; }
.cart-stock-option input { width: 17px; height: 17px; margin: 2px 0 0; accent-color: var(--teal); }
.cart-stock-option > span { min-width: 0; display: grid; gap: 3px; }
.cart-stock-option strong { color: var(--teal-dark); font-size: 13px; line-height: 1.3; }
.cart-stock-option small { color: var(--ink-soft); font-size: 11px; line-height: 1.4; }

.checkout-availability-status {
  min-height: 0;
  margin: 18px 0 0;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}
.checkout-availability-status:empty { display: none; }
.checkout-availability-status.is-error { color: var(--red); }

@media (max-width: 760px) {
  .cart-drawer .drawer-header { min-height: 48px; padding: 5px 12px; }
  .cart-drawer .drawer-header h2 { font-size: 22px; }
  .cart-drawer .drawer-header .icon-button { width: 32px; height: 32px; }
  .cart-delivery-note { margin: 6px 12px 0; padding: 7px 9px; font-size: 11px; }
  .cart-delivery-note strong { font-size: 12px; }
  .cart-delivery-note span { display: none; }
  .cart-savings-meter { margin: 5px 12px 0; padding: 7px 0 4px; }
  .cart-savings-meter__heading { padding: 0; gap: 8px; }
  .cart-savings-meter__heading strong { font-size: 12px; }
  .cart-savings-meter__heading span { max-width: 57%; font-size: 10px; }
  .cart-savings-meter__tiers { margin-top: 4px; }
  .cart-savings-meter__milestone { padding: 7px 8px 0; }
  .cart-savings-meter__milestone-labels { margin-top: 8px; }
  .cart-savings-meter__milestone-labels strong { font-size: 10px; }
  .cart-savings-meter__milestone-labels small { font-size: 9px; }
  .cart-savings-meter__pages { min-height: 8px; margin-top: 2px; }
  .cart-lines { padding: 3px 12px 0; }
  .cart-availability-status { margin-inline: 12px; }
  .cart-stock-resolution { margin: 8px 12px 0; padding: 11px; }
  .cart-stock-resolution__heading h3 { font-size: 14px; }
  .cart-stock-option { min-height: 74px; padding: 9px 8px; gap: 7px; }
  .cart-stock-option input { width: 16px; height: 16px; }
  .cart-stock-option strong { font-size: 12px; }
  .cart-stock-option small { font-size: 10px; }
  .checkout-button { min-height: 46px; padding-inline: 11px; gap: 8px; }
  .checkout-button > span { font-size: 12px; }
  .checkout-button > strong { font-size: 14px; }
  .cart-checkout { padding: 9px 12px calc(10px + env(safe-area-inset-bottom)); }
}

@media (prefers-reduced-motion: reduce) {
  .cart-savings-meter__fill,
  .desktop-shop-nav__projects::after { transition: none; }
}

/* Readable shopping controls and reusable signed-in delivery addresses. */
.catalog-controls { width: min(360px, 100%); }
.select-control { width: 100%; font-size: 14px; }
.select-control select { width: 100%; min-width: 250px; height: 46px; font-size: 14px; font-weight: 700; }
.product-card__topline { font-size: 12px; }
.product-card__highlights li { font-size: 11px; }
.product-price del { font-size: 12px; }
.product-card .quantity-stepper { width: 118px; grid-template-columns: 36px minmax(44px, 1fr) 36px; }
.quantity-stepper input { font-size: 14px; }
.cart-delivery-note { font-size: 13px; line-height: 1.4; }
.cart-delivery-note strong { font-size: 14px; }
.cart-line { grid-template-columns: 74px minmax(0, 1fr); gap: 13px; }
.cart-line h3 { font-size: 14px; }
.cart-line p { font-size: 12px; line-height: 1.4; }
.cart-line .quantity-stepper { width: 122px; height: 40px; grid-template-columns: 36px minmax(48px, 1fr) 36px; }
.cart-savings-meter__heading { font-size: 13px; }
.price-summary div { margin: 7px 0; font-size: 13px; }
.price-summary div.is-total { font-size: 16px; }
.payment-note, .form-help { font-size: 11px; line-height: 1.45; }

.checkout-section__heading > span { font-size: 12px; }
.checkout-section__heading h3 { font-size: 16px; }
.checkout-section__heading p { font-size: 12px; }
.checkout-form label span, .coupon-form label { font-size: 13px; }
.checkout-form input, .checkout-form textarea { font-size: 15px; }
.checkout-field--locked > span small { font-size: 9px; }
.checkout-location-status { font-size: 12px; }
.checkout-business legend, .checkout-section.payment-methods legend { font-size: 15px; }
.checkout-business legend small { font-size: 10px; }
.checkout-business__toggle strong, .payment-method strong { font-size: 14px; }
.checkout-business__toggle small, .payment-method small { font-size: 12px; }
.checkout-business__fields p, #checkoutStatus { font-size: 12px; }
.checkout-review { font-size: 15px; }
.checkout-review strong { font-size: 22px; }

.checkout-address-book {
  margin: 0 0 16px;
  padding: 14px;
  border: 1px solid #c8d9d4;
  border-radius: 7px;
  background: #f7faf8;
}
.checkout-address-book[hidden] { display: none; }
.checkout-address-book__heading { margin-bottom: 10px; display: grid; gap: 2px; }
.checkout-address-book__heading strong { color: var(--ink); font-size: 14px; }
.checkout-address-book__heading small { color: var(--ink-soft); font-size: 12px; }
.checkout-address-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; }
.checkout-address-option {
  min-width: 0;
  min-height: 100px;
  padding: 11px 12px;
  display: grid;
  align-content: start;
  gap: 4px;
  border: 1px solid #cbd7d3;
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}
.checkout-address-option:hover { border-color: var(--teal); }
.checkout-address-option.is-selected { border-color: var(--teal); box-shadow: 0 0 0 2px rgba(8, 127, 114, 0.12); }
.checkout-address-option > span { color: var(--teal-dark); font-size: 10px; font-weight: 800; text-transform: uppercase; }
.checkout-address-option strong { overflow-wrap: anywhere; font-size: 13px; line-height: 1.35; }
.checkout-address-option small { color: var(--ink-soft); font-size: 11px; line-height: 1.35; }
.checkout-address-add { margin-top: 10px; padding: 7px 0; border: 0; background: transparent; color: var(--teal-dark); font-size: 13px; font-weight: 800; cursor: pointer; }
.checkout-address-add:hover { text-decoration: underline; text-underline-offset: 3px; }
.checkout-address-status { min-height: 0; margin: 5px 0 0; color: var(--ink-soft); font-size: 12px; }
.checkout-address-status:empty { display: none; }

.checkout-coupon {
  margin: 10px 0 16px;
  padding: 11px 12px 10px;
  border: 1px solid #d5e2de;
  border-radius: 6px;
  background: #fff;
}
.checkout-coupon[hidden] { display: none; }
.checkout-coupon > label {
  margin: 0 0 7px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
}
.coupon-form > label span { margin: 0; font-size: 11px; text-align: right; }
.coupon-form input { height: 44px; font-size: 14px; }
.coupon-form button { min-width: 82px; font-size: 13px; }
.coupon-form p { font-size: 12px; }

@media (max-width: 760px) {
  .catalog-controls { width: 100%; }
  .select-control { display: grid; grid-template-columns: auto minmax(0, 1fr); }
  .select-control select { min-width: 0; }
  .product-card__topline { font-size: 12px; }
  .product-card h3 { font-size: 16px; }
  .product-card__highlights li { font-size: 11px; }
  .product-price del { font-size: 11px; }
  .product-card .quantity-stepper { width: 100%; grid-template-columns: 40px minmax(48px, 1fr) 40px; }
  .cart-line { grid-template-columns: 64px minmax(0, 1fr); }
  .cart-line img { width: 64px; height: 64px; }
  .cart-line .quantity-stepper { width: 126px; height: 40px; grid-template-columns: 36px minmax(54px, 1fr) 36px; }
  .cart-delivery-note { font-size: 11px; }
  .cart-delivery-note strong { font-size: 12px; }
  .checkout-coupon > label { display: grid; gap: 2px; }
  .coupon-form > label span { text-align: left; }
  .checkout-address-list { grid-template-columns: 1fr; }
  .checkout-address-option { min-height: 0; }
}
