:root {
  color-scheme: light;
  --porcelain: #f5f3ec;
  --paper: #fffefa;
  --ink: #181611;
  --muted: #6f6a60;
  --line: #dcd8ce;
  --coral: #ff5a36;
  --coral-dark: #e33f1d;
  --blue: #2864dc;
  --lime: #d9f75f;
  --butter: #f5d96f;
  --green: #16774e;
  --danger: #c63328;
  --display: "Bodoni 72", "Didot", "Times New Roman", serif;
  --body: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  --utility: "SFMono-Regular", "Roboto Mono", monospace;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --shadow: 0 24px 70px rgba(30, 25, 15, 0.12);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --catalog-sticky-top: 160px;
  --collection-dock-height: 62px;
  --collection-dock-bottom: max(14px, env(safe-area-inset-bottom));
  --collection-dock-clearance: 20px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 150px;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 6%, rgba(255, 90, 54, 0.08), transparent 23rem),
    radial-gradient(circle at 90% 19%, rgba(40, 100, 220, 0.08), transparent 25rem),
    var(--porcelain);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.45;
}

body.is-locked {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  border: 0;
  cursor: pointer;
}

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

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

svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.shell {
  width: min(1480px, calc(100% - 64px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  transform: translateY(-150%);
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid rgba(40, 100, 220, 0.6);
  outline-offset: 3px;
}

.announcement {
  display: none;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 6px 24px;
  background: var(--ink);
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.announcement > span:first-child {
  padding: 3px 8px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  color: var(--lime);
}

.announcement__message {
  color: rgba(255, 255, 255, 0.7);
}

.announcement__link {
  padding: 0;
  border-bottom: 1px solid currentColor;
  background: none;
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(24, 22, 17, 0.1);
  background: rgba(245, 243, 236, 0.9);
  backdrop-filter: blur(18px);
}

.header-main {
  display: grid;
  height: 88px;
  min-height: 88px;
  align-items: center;
  grid-template-columns: auto minmax(340px, 1fr) auto;
  gap: 30px;
}

.brand {
  display: grid;
  align-items: center;
  grid-template-columns: 44px auto;
  line-height: 1;
}

.brand--test {
  grid-template-columns: auto;
  min-width: 148px;
}

.brand--test .brand__text {
  font-family: var(--body);
  font-size: 17px;
  font-weight: 850;
  letter-spacing: -0.025em;
  white-space: nowrap;
}

.brand--test .brand__caption {
  grid-column: 1;
  margin-top: 5px;
  font-size: 7px;
}

.brand__mark {
  position: relative;
  display: block;
  width: 36px;
  height: 44px;
}

.brand__mark i {
  position: absolute;
  bottom: 0;
  left: 50%;
  border: 2px solid currentColor;
  border-radius: 50% 50% 42% 42%;
  transform: translateX(-50%);
}

.brand__mark i:nth-child(1) { width: 35px; height: 42px; }
.brand__mark i:nth-child(2) { width: 25px; height: 31px; bottom: 4px; }
.brand__mark i:nth-child(3) { width: 14px; height: 18px; bottom: 8px; background: var(--coral); border-color: var(--coral); }

.brand__text {
  font-family: var(--display);
  font-size: 29px;
  font-weight: 700;
  letter-spacing: -0.06em;
}

.brand__caption {
  grid-column: 2;
  margin-top: 4px;
  color: var(--muted);
  font-family: var(--utility);
  font-size: 8px;
  letter-spacing: 0.23em;
  text-transform: uppercase;
}

.location-button {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  background: none;
  text-align: left;
}

.location-button svg {
  width: 20px;
  height: 20px;
}

.location-button span {
  font-size: 13px;
  font-weight: 700;
}

.location-button small {
  display: block;
  color: var(--muted);
  font-size: 10px;
  font-weight: 500;
}

.search {
  position: relative;
  z-index: 30;
  display: grid;
  min-height: 52px;
  align-items: center;
  padding: 4px 5px 4px 18px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--paper);
  grid-template-columns: 22px 1fr auto auto;
  gap: 10px;
  transition: box-shadow 220ms ease, transform 220ms ease;
}

.search-suggestions {
  position: absolute;
  z-index: 80;
  top: calc(100% + 10px);
  left: 0;
  display: grid;
  width: min(760px, calc(100vw - 32px));
  max-height: min(680px, calc(100vh - 120px));
  overflow: auto;
  padding: 10px;
  border: 1px solid rgba(35, 29, 21, .16);
  border-radius: 22px;
  background: #fffdf8;
  box-shadow: 0 28px 70px rgba(38, 28, 18, .18);
  color: #201a14;
  grid-template-columns: minmax(0, 1.55fr) minmax(210px, .85fr);
  gap: 10px;
  text-align: left;
}
.search-suggestions__section { min-width: 0; padding: 8px; }
.search-suggestions__section + .search-suggestions__section { border-left: 1px solid rgba(35, 29, 21, .12); }
.search-suggestions__heading { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin: 0 0 8px; padding: 0 4px; color: #877461; font: 800 8px "Manrope", sans-serif; letter-spacing: .12em; text-transform: uppercase; }
.search-suggestions__heading button { min-height: 0; padding: 0; border: 0; background: transparent; box-shadow: none; color: var(--coral); font-size: 9px; text-transform: none; }
.search-suggestion-product { display: grid; min-height: 70px; align-items: center; padding: 7px; border: 0; border-radius: 13px; background: transparent; color: inherit; text-decoration: none; grid-template-columns: 58px minmax(0, 1fr) auto; gap: 11px; }
.search-suggestion-product:hover, .search-suggestion-product.is-active, .search-suggestion-link:hover, .search-suggestion-link.is-active { background: #f4ead7; }
.search-suggestion-product img, .search-suggestion-product__fallback { display: grid; width: 58px; height: 58px; place-items: center; border-radius: 10px; background: #eee2cc; object-fit: contain; mix-blend-mode: multiply; }
.search-suggestion-product__fallback { color: #857663; font-size: 8px; text-align: center; }
.search-suggestion-product__copy { min-width: 0; }
.search-suggestion-product__copy strong { display: -webkit-box; overflow: hidden; font: 750 11px/1.35 "Manrope", sans-serif; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.search-suggestion-product__copy small { display: block; overflow: hidden; margin-top: 5px; color: #857663; font: 600 8px "Manrope", sans-serif; text-overflow: ellipsis; white-space: nowrap; }
.search-suggestion-product__price { color: #201a14; font: 800 14px "Manrope", sans-serif; white-space: nowrap; }
.search-suggestion-groups { display: grid; align-content: start; gap: 15px; }
.search-suggestion-group { display: grid; gap: 4px; }
.search-suggestion-link { display: flex; min-height: 35px; align-items: center; justify-content: space-between; gap: 10px; padding: 7px 9px; border: 0; border-radius: 9px; background: #fffdf8; color: #201a14; font: 700 10px/1.3 "Manrope", sans-serif; text-decoration: none; box-shadow: none; }
.search-suggestion-link small { color: #857663; font-size: 8px; white-space: nowrap; }
.search-suggestions__correction { grid-column: 1 / -1; margin: 0; padding: 8px 12px; border-radius: 10px; background: #e9f0e7; color: #326143; font: 700 10px "Manrope", sans-serif; }
.search-suggestions__correction button { min-height: 0; padding: 0; border: 0; background: none; box-shadow: none; color: inherit; font: inherit; text-decoration: underline; }
.search-suggestions__empty { grid-column: 1 / -1; margin: 0; padding: 20px; color: #75695c; font: 600 11px/1.5 "Manrope", sans-serif; }
.search-suggestions__all { grid-column: 1 / -1; min-height: 42px; border-radius: 12px; background: #201a14; color: #fff; font: 750 10px "Manrope", sans-serif; }
.search-suggestions__recent { grid-column: 1 / -1; }
.search-suggestions__recent .search-suggestion-group { gap: 0; }
.search-suggestions__recent .search-suggestion-link,
.search-suggestions__recent .search-suggestion-link:hover,
.search-suggestions__recent .search-suggestion-link.is-active {
  min-height: 44px;
  border-radius: 0;
  background: #fffdf8;
  color: #201a14;
  box-shadow: none;
}
.search-suggestions__recent .search-suggestion-link small { color: #857663; }
.search-suggestions__recent .search-suggestion-link + .search-suggestion-link { border-top: 1px solid rgba(35, 29, 21, .08); }

.search:focus-within {
  box-shadow: 0 0 0 5px rgba(40, 100, 220, 0.12), 0 15px 35px rgba(30, 25, 15, 0.08);
  transform: translateY(-1px);
}

.search svg {
  width: 20px;
  height: 20px;
}

.search input {
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
}

.search input::placeholder {
  color: #918b80;
}

.search kbd {
  padding: 4px 7px;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--muted);
  font-family: var(--utility);
  font-size: 10px;
}

.search button {
  align-self: stretch;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 13px;
  font-weight: 750;
}
.search .search-suggestions button { align-self: auto; box-shadow: none; background: #fffdf8; color: #201a14; }
.search .search-suggestion-link, .search .search-suggestions__correction button { padding: 7px 9px; background: transparent; color: inherit; }
.search .search-suggestions__correction button { min-height: 0; padding: 0; }
.search .search-suggestions__all { padding: 0 18px; background: #201a14; color: #fff; }

.header-actions {
  display: flex;
  gap: 20px;
}

.header-action {
  display: grid;
  justify-items: center;
  gap: 3px;
  padding: 0;
  background: none;
  color: var(--muted);
  font-size: 10px;
}

.header-action:hover {
  color: var(--ink);
}

.action-icon {
  position: relative;
}

.action-icon svg {
  width: 23px;
  height: 23px;
}

.action-icon b {
  position: absolute;
  top: -8px;
  right: -10px;
  display: grid;
  min-width: 18px;
  min-height: 18px;
  place-items: center;
  padding: 2px;
  border: 2px solid var(--porcelain);
  border-radius: 999px;
  background: var(--coral);
  color: #fff;
  font-size: 9px;
}

.category-nav {
  display: flex;
  width: min(1480px, calc(100% - 64px));
  min-height: 48px;
  align-items: center;
  justify-content: flex-start !important;
  gap: 28px;
  overflow-x: auto;
  scrollbar-width: none;
  margin-inline: auto;
}

.category-nav::-webkit-scrollbar { display: none; }

.category-nav button {
  flex: 0 0 auto !important;
  width: fit-content !important;
  min-width: max-content;
  padding: 0;
  background: none;
  font-size: 13px;
  font-weight: 700;
}

.category-nav button:hover {
  color: var(--coral-dark);
}

.catalog-menu-button {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 16px !important;
  border-radius: 999px;
  background: var(--ink) !important;
  color: #fff;
}

.catalog-menu-button svg {
  width: 17px;
  height: 17px;
}

.category-nav__accent {
  color: var(--coral-dark);
}

.hero {
  display: grid;
  min-height: 660px;
  align-items: center;
  padding-block: 78px 84px;
  grid-template-columns: minmax(0, 0.9fr) minmax(560px, 1.1fr);
  gap: 60px;
}

.hero__copy {
  position: relative;
  z-index: 2;
  max-width: 660px;
}

.eyebrow {
  margin: 0 0 15px;
  color: var(--coral-dark);
  font-family: var(--utility);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(62px, 6.3vw, 102px);
  font-weight: 700;
  letter-spacing: -0.065em;
  line-height: 0.88;
}

.hero__copy--current .hero-title--current {
  font-size: clamp(52px, 4.45vw, 74px);
  line-height: 0.93;
}

.hero h1 em {
  position: relative;
  color: var(--blue);
  font-weight: inherit;
}

.hero h1 em::after {
  position: absolute;
  right: 0;
  bottom: 0.01em;
  left: 0.05em;
  height: 0.09em;
  border-radius: 50%;
  background: var(--lime);
  content: "";
  transform: rotate(-2deg);
  z-index: -1;
}

.hero__lead {
  max-width: 580px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 34px;
}

.primary-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 23px;
  border-radius: 999px;
  background: var(--coral);
  box-shadow: 0 12px 30px rgba(255, 90, 54, 0.22);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.primary-button:hover {
  background: var(--coral-dark);
  box-shadow: 0 15px 34px rgba(227, 63, 29, 0.28);
  transform: translateY(-2px);
}

.primary-button svg {
  width: 18px;
  height: 18px;
}

.primary-button--wide {
  width: 100%;
}

.text-button {
  padding: 6px 0;
  border-bottom: 1px solid var(--ink);
  background: none;
  font-size: 14px;
  font-weight: 750;
}

.hero__facts {
  display: grid;
  max-width: 620px;
  margin: 48px 0 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.hero__facts div {
  min-width: 0;
}

.hero__facts dt {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.hero__facts dd {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.hero-showcase {
  position: relative;
  min-height: 540px;
  isolation: isolate;
}

.hero-showcase::before {
  position: absolute;
  inset: 12% 7% 5% 8%;
  border: 1px solid rgba(24, 22, 17, 0.12);
  border-radius: 47% 53% 46% 54%;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.54), transparent),
    repeating-linear-gradient(90deg, transparent 0 39px, rgba(24, 22, 17, 0.035) 40px);
  content: "";
  transform: rotate(-3deg);
}

.hero-showcase__halo {
  position: absolute;
  top: 12%;
  right: 4%;
  width: 65%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--lime);
  filter: blur(2px);
  opacity: 0.65;
  z-index: -1;
}

.showcase-card {
  position: absolute;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.showcase-card--main {
  top: 6%;
  right: 12%;
  width: 55%;
  padding: 20px;
  border-radius: 34px;
  background: var(--paper);
  transform: rotate(3deg);
  animation: hero-main 900ms var(--ease) both;
}

.showcase-card--main::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--coral), var(--butter), var(--blue));
  content: "";
}

.showcase-card--main img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.showcase-card__label {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-family: var(--utility);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.showcase-card--main > div {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.showcase-card--main strong { font-size: 15px; }
.showcase-card--main span:last-child { color: var(--muted); font-size: 11px; }

.showcase-card--side {
  bottom: 5%;
  left: 3%;
  width: 34%;
  padding: 13px;
  border-radius: 28px;
  background: #d9c5a2;
  transform: rotate(-8deg);
  animation: hero-side 950ms 120ms var(--ease) both;
}

.showcase-card--side img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 18px;
  object-fit: cover;
}

.showcase-card--side span {
  display: block;
  padding: 12px 5px 4px;
  font-family: var(--display);
  font-size: 23px;
  font-weight: 700;
}

.showcase-sticker {
  position: absolute;
  right: 0;
  bottom: 8%;
  display: grid;
  width: 132px;
  height: 132px;
  place-items: center;
  padding: 15px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 7px 8px 0 var(--ink);
  color: #fff;
  font-family: var(--display);
  font-size: 42px;
  font-weight: 700;
  line-height: 0.6;
  transform: rotate(8deg);
  transition: transform 250ms var(--ease);
}

.showcase-sticker:hover { transform: rotate(0) scale(1.04); }
.showcase-sticker small { font-family: var(--body); font-size: 10px; line-height: 1.1; text-transform: uppercase; }

.showcase-orbit {
  position: absolute;
  top: 8%;
  left: 3%;
  display: grid;
  gap: 8px;
  transform: rotate(-5deg);
}

.showcase-orbit span {
  width: max-content;
  padding: 6px 10px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--paper);
  font-family: var(--utility);
  font-size: 9px;
  text-transform: uppercase;
}

.story-strip {
  overflow: hidden;
  border-block: 1px solid var(--ink);
  background: var(--lime);
}

.story-strip__inner {
  display: grid;
  min-height: 56px;
  align-items: center;
  grid-template-columns: repeat(4, 1fr);
}

.story-strip span {
  padding: 0 20px;
  border-right: 1px solid rgba(24, 22, 17, 0.4);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
}

.story-strip span:last-child { border-right: 0; }

.quick-categories {
  padding-block: 110px;
}

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

.section-heading h2,
.catalog-header h2,
.sync-note h2,
.drawer-head h2,
.checkout-dialog h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(42px, 5vw, 70px);
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.section-heading > p {
  max-width: 450px;
  margin: 0;
  color: var(--muted);
}

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

.category-tile {
  position: relative;
  display: flex;
  min-height: 310px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(24, 22, 17, 0.35);
  border-radius: var(--radius-md);
  text-align: left;
  transition: border-radius 350ms var(--ease), transform 350ms var(--ease), box-shadow 350ms var(--ease);
}

.category-tile::after {
  position: absolute;
  right: -55px;
  bottom: -80px;
  width: 190px;
  height: 240px;
  border: 2px solid currentColor;
  border-radius: 50% 50% 42% 42%;
  content: "";
  opacity: 0.25;
  transform: rotate(22deg);
}

.category-tile:hover {
  border-radius: 48px 14px 48px 14px;
  box-shadow: 0 20px 45px rgba(30, 25, 15, 0.13);
  transform: translateY(-7px);
}

.category-tile span,
.category-tile small {
  font-family: var(--utility);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.category-tile strong {
  position: relative;
  z-index: 1;
  font-family: var(--display);
  font-size: clamp(29px, 2.7vw, 44px);
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.category-tile--coral { background: var(--coral); color: #fff; }
.category-tile--blue { background: var(--blue); color: #fff; }
.category-tile--lime { background: var(--lime); }
.category-tile--ink { background: var(--ink); color: #fff; }

.catalog-section {
  padding-block: 36px 120px;
}

.catalog-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
}

.catalog-header h2 {
  font-size: clamp(50px, 6vw, 82px);
}

.catalog-header p:last-child {
  margin: 12px 0 0;
  color: var(--muted);
}

.catalog-tools {
  display: flex;
  align-items: center;
  gap: 12px;
}

.filter-button {
  display: none;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  font-weight: 700;
}

.filter-button svg { width: 18px; height: 18px; }
.filter-button b { display: grid; min-width: 18px; min-height: 18px; place-items: center; border-radius: 50%; background: var(--ink); color: #fff; font-size: 9px; }

.sort-control,
.page-size-control {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 12px;
}

.sort-control select,
.page-size-control select {
  min-height: 44px;
  padding: 0 36px 0 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.page-size-control select {
  min-width: 76px;
  padding-right: 28px;
}

.active-chips {
  display: flex;
  min-height: 32px;
  flex-wrap: wrap;
  gap: 8px;
  margin-block: 18px;
}

.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--paper);
  font-size: 11px;
  font-weight: 700;
}

.filter-chip svg { width: 12px; height: 12px; }

.catalog-layout {
  display: grid;
  align-items: start;
  grid-template-columns: 245px minmax(0, 1fr);
  gap: 34px;
}

.filters {
  position: sticky;
  top: var(--catalog-sticky-top);
  max-height: calc(100dvh - var(--catalog-sticky-top) - var(--collection-dock-height) - var(--collection-dock-bottom) - var(--collection-dock-clearance));
  overflow: auto;
  padding-right: 12px;
  scrollbar-color: #bbb5aa transparent;
  scrollbar-width: thin;
}

.filters__mobile-head,
.filters__apply {
  display: none;
}

.filter-group {
  border-bottom: 1px solid var(--line);
}

.filter-group__head {
  display: flex;
  width: 100%;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  background: none;
  font-size: 13px;
  font-weight: 800;
}

.filter-group__head span {
  color: var(--muted);
  font-size: 18px;
  font-weight: 400;
}

.filter-options {
  display: grid;
  gap: 9px;
  max-height: 260px;
  overflow: auto;
  padding: 0 3px 18px 0;
}

.filter-options[hidden] { display: none; }
.filter-options--price { max-height: none; overflow: visible; }
.category-nav button[hidden] { display: none; }

.filter-option {
  display: grid;
  align-items: center;
  grid-template-columns: 17px 1fr auto;
  gap: 9px;
  color: var(--muted);
  cursor: pointer;
  font-size: 12px;
}

.filter-option:hover { color: var(--ink); }
.filter-option:has(input:checked) {
  margin-inline: -7px;
  padding: 7px;
  border-radius: 10px;
  background: #f1e7d5;
  color: var(--ink);
}
.filter-option:has(input:focus-visible) { outline: 2px solid var(--blue); outline-offset: 2px; }

.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.filter-option input {
  width: 17px;
  height: 17px;
  margin: 0;
  accent-color: var(--ink);
}

.filter-option b {
  color: #999287;
  font-family: var(--utility);
  font-size: 9px;
}

.price-filter {
  display: grid;
  padding-bottom: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.price-filter label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.price-filter input {
  width: 100%;
  min-height: 42px;
  padding: 0 11px;
  border: 1px solid var(--line);
  border-radius: 11px;
  outline: 0;
  background: var(--paper);
  color: var(--ink);
  font: 750 12px "Manrope", sans-serif;
}

.price-filter input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(40, 100, 220, .1); }
.price-filter button { min-height: 38px; border-radius: 10px; background: var(--ink); color: #fff; font-size: 10px; font-weight: 800; grid-column: 1 / -1; }
.price-filter small { color: var(--muted); font: 650 9px "Manrope", sans-serif; grid-column: 1 / -1; }

.switch-row {
  display: flex;
  min-height: 58px;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
}

.switch-row em { flex: 1; font-style: normal; }
.switch-row b { color: var(--muted); font: 700 9px var(--utility); }

.switch-row input { position: absolute; opacity: 0; }
.switch-row span { position: relative; width: 34px; height: 20px; border-radius: 999px; background: #c6c1b6; transition: background 180ms ease; }
.switch-row span::after { position: absolute; top: 3px; left: 3px; width: 14px; height: 14px; border-radius: 50%; background: #fff; content: ""; transition: transform 180ms ease; }
.switch-row input:checked + span { background: var(--green); }
.switch-row input:checked + span::after { transform: translateX(14px); }

.switch-row--primary {
  min-height: 64px;
  margin-bottom: 8px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--porcelain);
  font-size: 13px;
}

.switch-row--primary span { width: 40px; height: 24px; }
.switch-row--primary span::after { width: 18px; height: 18px; }
.switch-row--primary input:checked + span::after { transform: translateX(16px); }
.switch-row--primary input:focus-visible + span { outline: 2px solid var(--blue); outline-offset: 3px; }

.reset-filters {
  margin-top: 18px;
  padding: 0;
  border-bottom: 1px solid currentColor;
  background: none;
  color: var(--muted);
  font-size: 11px;
}

.product-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px 14px;
}

.product-card {
  position: relative;
  min-width: 0;
  opacity: 1;
  transform: none;
}

.product-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.product-card__media {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  padding: 0;
  border-radius: 18px;
  background:
    radial-gradient(circle at 70% 15%, rgba(255, 255, 255, 0.9), transparent 25%),
    #ece9df;
  color: inherit;
  text-decoration: none;
}

.product-card__media::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(24, 22, 17, 0.09);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: contain;
  padding: 14px;
  background: #fffdf8;
  mix-blend-mode: normal;
  transition: transform 520ms var(--ease);
}

.product-card:hover .product-card__media img {
  transform: scale(1.055) rotate(-1deg);
}

.product-card__fallback {
  display: grid;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  place-items: center;
  padding: 30px;
  color: #aaa397;
  font-family: var(--display);
  font-size: 28px;
  text-align: center;
}

.product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--lime);
  font-family: var(--utility);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.favorite-button {
  position: absolute;
  z-index: 3;
  top: 10px;
  right: 10px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(24, 22, 17, 0.12);
  border-radius: 50%;
  background: rgba(255, 254, 250, 0.88);
  backdrop-filter: blur(8px);
}

.favorite-button svg { width: 18px; height: 18px; }
.favorite-button.is-active { background: var(--coral); color: #fff; }
.favorite-button.is-active svg { fill: currentColor; }

.product-card__content {
  padding: 13px 3px 0;
}

.product-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 7px;
  color: var(--muted);
  font-family: var(--utility);
  font-size: 9px;
  text-transform: uppercase;
}

.product-card h3 {
  min-height: 40px;
  margin: 0;
  font-size: 13px;
  font-weight: 650;
}

.product-card__title {
  display: -webkit-box;
  width: 100%;
  overflow: hidden;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  line-height: 1.3;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.product-card__title:hover { color: var(--coral); }

.product-card__bottom {
  display: grid;
  min-height: 100px;
  align-content: end;
  gap: 10px;
  margin-top: 10px;
}

.product-price {
  display: grid;
  font-family: var(--display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1;
}

.product-price small {
  margin-top: 4px;
  color: var(--muted);
  font-family: var(--body);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0;
}
.product-old-price { order: -1; margin-bottom: 4px; color: var(--muted); font-family: var(--body); font-size: 10px; font-weight: 500; }
.product-discount-label { margin-top: 4px; color: var(--coral-dark); font-family: var(--body); font-size: 9px; font-weight: 800; }

.product-card__add {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 14px;
  background: var(--ink);
  color: #fff;
  transition: background 180ms ease, border-radius 220ms var(--ease), transform 180ms ease;
}

.product-card__add:hover { border-radius: 50%; background: var(--coral); transform: translateY(-2px); }
.product-card__add.is-added { background: var(--green); box-shadow: 0 0 0 4px color-mix(in srgb, var(--green) 18%, transparent); }
.product-card__add svg { width: 21px; height: 21px; }

.product-card__buy {
  display: grid;
  width: 100%;
  align-items: center;
  justify-content: start;
  gap: 6px;
  grid-template-columns: minmax(0, 126px) 46px;
}

.product-quantity-stepper {
  display: grid;
  min-width: 0;
  height: 46px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper);
  grid-template-columns: 34px minmax(32px, 1fr) 34px;
}

.product-quantity-stepper__button {
  display: grid;
  min-width: 0;
  place-items: center;
  background: transparent;
  color: var(--ink);
  font: 700 20px/1 var(--body);
}

.product-quantity-stepper__button:hover:not(:disabled) { background: var(--porcelain); color: var(--coral); }
.product-quantity-stepper__button:disabled { color: color-mix(in srgb, var(--muted) 45%, transparent); cursor: default; }
.product-quantity-stepper__button:focus-visible { position: relative; z-index: 1; outline: 2px solid var(--blue); outline-offset: -3px; }

.product-quantity-stepper .product-quantity {
  width: 100%;
  height: 100%;
  padding: 0 2px;
  border: 0;
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
  border-radius: 0;
  outline: 0;
  background: transparent;
  appearance: textfield;
  font-family: var(--body);
  font-size: 14px;
  font-weight: 800;
}

.product-quantity-stepper .product-quantity::-webkit-inner-spin-button,
.product-quantity-stepper .product-quantity::-webkit-outer-spin-button {
  margin: 0;
  appearance: none;
}

.product-quantity-stepper .product-quantity:focus {
  position: relative;
  z-index: 1;
  box-shadow: inset 0 0 0 2px var(--blue);
}

.product-quantity-fixed {
  display: grid;
  height: 46px;
  min-width: 0;
  align-content: center;
  padding: 0 13px;
  border: 1px solid color-mix(in srgb, var(--green) 35%, var(--line));
  border-radius: 14px;
  background: color-mix(in srgb, var(--green) 7%, var(--paper));
  color: var(--green);
  line-height: 1.05;
}

.product-quantity-fixed strong { font-size: 14px; font-weight: 850; }
.product-quantity-fixed small { overflow: hidden; margin-top: 3px; color: var(--muted); font-size: 8px; font-weight: 750; text-overflow: ellipsis; white-space: nowrap; }

.product-quantity {
  width: 54px;
  height: 46px;
  padding: 0 5px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  font-family: var(--utility);
  font-size: 12px;
  text-align: center;
}

.catalog-results[aria-busy="true"] .product-grid::before {
  display: block;
  position: absolute;
  z-index: 4;
  top: 0;
  right: 0;
  left: 0;
  height: 360px;
  border-radius: 18px;
  background: linear-gradient(100deg, #e8e4da 30%, #f8f6ef 45%, #e8e4da 60%) 0 0 / 250% 100%;
  content: "";
  animation: shimmer 1.2s infinite;
  pointer-events: none;
}

.catalog-results[aria-busy="true"] .product-grid {
  min-height: 360px;
  pointer-events: none;
}

.empty-state {
  display: grid;
  min-height: 500px;
  place-items: center;
  align-content: center;
  padding: 30px;
  border: 1px dashed #b9b2a6;
  border-radius: var(--radius-lg);
  text-align: center;
}

.empty-state[hidden] { display: none; }
.empty-state__mark { display: grid; width: 82px; height: 82px; place-items: center; border: 1px solid var(--ink); border-radius: 50%; font-family: var(--display); font-size: 38px; transform: rotate(-8deg); }
.empty-state h3 { margin: 22px 0 7px; font-family: var(--display); font-size: 36px; }
.empty-state p { max-width: 420px; margin: 0 0 22px; color: var(--muted); }

.pagination {
  display: grid;
  align-items: center;
  justify-content: center;
  margin-top: 54px;
  grid-template-columns: auto auto auto;
  gap: 10px;
}

.pagination[hidden] { display: none; }

.pagination__numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.pagination button {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  font-family: var(--utility);
  font-size: 11px;
  font-weight: 700;
}

.pagination button:hover:not(:disabled),
.pagination button.is-active {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.pagination button:disabled { cursor: not-allowed; opacity: 0.35; }
.pagination button svg { width: 17px; height: 17px; }
.pagination__arrow--prev svg { transform: rotate(180deg); }
.pagination__gap { display: grid; width: 25px; place-items: center; color: var(--muted); }
.pagination__summary { display: none; color: var(--muted); font-family: var(--utility); font-size: 10px; }

.sync-note {
  display: grid;
  align-items: center;
  margin-bottom: 110px;
  padding: 50px;
  border-radius: var(--radius-lg);
  background: var(--ink);
  color: #fff;
  grid-template-columns: 0.8fr 1fr;
  gap: 30px 60px;
}

.sync-note .eyebrow { color: var(--lime); }
.sync-note h2 { max-width: 480px; font-size: clamp(42px, 4vw, 64px); }
.sync-note > p { max-width: 620px; margin: 0; color: rgba(255,255,255,.68); font-size: 16px; }
.sync-note code { grid-column: 1 / -1; overflow: auto; padding: 16px 18px; border: 1px solid rgba(255,255,255,.18); border-radius: 12px; background: rgba(255,255,255,.06); color: var(--lime); font-family: var(--utility); font-size: 12px; }

.site-footer {
  padding-block: 60px 90px;
  background: #ded9cd;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr repeat(3, 1fr);
  gap: 60px;
}

.footer-grid--simple {
  grid-template-columns: minmax(0, 1.7fr) minmax(260px, 1fr);
}

.brand--footer { width: max-content; margin-bottom: 18px; }
.footer-grid p { max-width: 390px; color: var(--muted); font-size: 13px; }
.footer-grid > div:not(:first-child) { display: grid; align-content: start; gap: 10px; font-size: 13px; }
.footer-info { position: relative; z-index: 1; padding-bottom: 88px; }
.footer-info > strong { display: block; }
.footer-contacts { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-top: 8px; }
.footer-contacts a { color: inherit; font-weight: 650; }
.footer-links { position: relative; z-index: 2; display: flex; flex-wrap: wrap; gap: 12px 18px; margin-top: 14px; }
.footer-links a { display: inline-block; padding: 3px 0; }
.footer-grid strong { margin-bottom: 8px; font-size: 12px; text-transform: uppercase; }
.footer-grid a:hover { text-decoration: underline; }

.scrim {
  position: fixed;
  z-index: 90;
  inset: 0;
  background: rgba(14, 13, 10, 0.42);
  backdrop-filter: blur(5px);
  animation: fade-in 180ms ease both;
}

.cart-drawer {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  display: grid;
  width: min(500px, 100%);
  height: 100dvh;
  padding: 28px;
  background: var(--paper);
  box-shadow: -30px 0 80px rgba(20, 18, 14, 0.2);
  grid-template-rows: auto 1fr auto;
  transform: translateX(105%);
  transition: transform 420ms var(--ease);
}

.cart-drawer.is-open { transform: translateX(0); }
.cart-top { min-width: 0; }
.drawer-head { display: flex; align-items: start; justify-content: space-between; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.drawer-head h2 { font-size: 52px; }
.drawer-head button,
.dialog-close,
.filters__mobile-head button { display: grid; width: 42px; height: 42px; place-items: center; border-radius: 50%; background: #ece8de; }
.drawer-head svg,
.dialog-close svg,
.filters__mobile-head svg { width: 20px; height: 20px; }

.cart-bulk {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
}

.cart-bulk[hidden] { display: none; }
.cart-bulk label { display: flex; align-items: center; gap: 8px; cursor: pointer; }
.cart-bulk input,
.cart-select input { width: 17px; height: 17px; margin: 0; accent-color: var(--ink); }
.cart-bulk button { padding: 7px 10px; border-radius: 999px; background: #eeeae1; color: var(--danger); font-size: 10px; font-weight: 750; }
.cart-bulk button:disabled { cursor: not-allowed; opacity: 0.4; }
.cart-bulk b { display: inline-grid; min-width: 17px; height: 17px; place-items: center; border-radius: 50%; background: var(--danger); color: #fff; font-size: 8px; }

.cart-items { overflow: auto; padding-block: 12px; }
.cart-item { display: grid; align-items: center; padding: 14px 0; border-bottom: 1px solid var(--line); grid-template-columns: 20px 76px 1fr auto; gap: 11px; }
.cart-select { display: grid; align-self: stretch; place-items: center; cursor: pointer; }
.cart-item img,
.cart-item__fallback { width: 76px; height: 90px; border-radius: 12px; background: #eeeae0; object-fit: contain; }
.cart-item__fallback { display: grid; place-items: center; color: var(--muted); font-family: var(--display); }
.cart-item strong { display: -webkit-box; overflow: hidden; font-size: 12px; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.cart-item small { display: block; margin-top: 5px; color: var(--muted); font-size: 10px; }
.quantity { display: flex; align-items: center; gap: 5px; margin-top: 10px; }
.quantity button { display: grid; width: 28px; height: 28px; place-items: center; border: 1px solid var(--line); border-radius: 8px; background: transparent; }
.quantity svg { width: 13px; height: 13px; }
.quantity__input { width: 54px; height: 30px; padding: 0 4px; border: 1px solid var(--line); border-radius: 8px; background: var(--paper); font-family: var(--utility); font-size: 11px; text-align: center; }
.cart-item__remove { padding: 7px; background: none; color: var(--muted); }
.cart-item__remove svg { width: 17px; height: 17px; }

.cart-empty { display: grid; place-items: center; align-content: center; padding: 30px; text-align: center; }
.cart-empty[hidden] { display: none; }
.cart-empty > span { font-family: var(--display); font-size: 38px; font-weight: 700; }
.cart-empty p { max-width: 320px; color: var(--muted); font-size: 13px; }
.cart-summary { padding-top: 18px; border-top: 1px solid var(--line); }
.cart-summary > div { display: flex; justify-content: space-between; margin-bottom: 8px; }
.cart-summary > div:nth-child(2) strong { font-family: var(--display); font-size: 24px; }
.cart-summary p { margin: 12px 0 18px; color: var(--muted); font-size: 11px; }

dialog {
  padding: 0;
  border: 0;
  color: var(--ink);
}

dialog::backdrop {
  background: rgba(14, 13, 10, 0.55);
  backdrop-filter: blur(6px);
}

.product-dialog {
  width: min(1000px, calc(100% - 36px));
  max-height: calc(100dvh - 28px);
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  border-radius: 28px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.product-dialog[open],
.checkout-dialog[open] { animation: dialog-in 320ms var(--ease) both; }
.dialog-close { position: absolute; z-index: 4; top: 16px; right: 16px; }

.product-detail { display: grid; min-height: 560px; grid-template-columns: 1fr 1fr; }
.product-detail__media { display: grid; min-height: 560px; place-items: center; overflow: hidden; border-radius: 28px 0 0 28px; background: #ece9df; }
.product-detail__media img { width: 86%; height: 86%; object-fit: contain; mix-blend-mode: multiply; }
.product-detail__media span { font-family: var(--display); font-size: 38px; color: var(--muted); }
.product-detail__copy { display: flex; flex-direction: column; padding: 70px 48px 42px; }
.product-detail__copy h2 { margin: 0; overflow-wrap: anywhere; font-family: var(--display); font-size: clamp(28px, 2.6vw, 44px); letter-spacing: -0.04em; line-height: .98; }
.product-detail__sku { margin: 14px 0 0; color: var(--muted); font-family: var(--utility); font-size: 10px; }
.product-detail__price { display: flex; align-items: baseline; gap: 12px; margin: 30px 0; font-family: "Manrope", var(--body); font-size: 28px; font-weight: 800; letter-spacing: -.035em; }
.product-detail__price del { color: var(--muted); font-family: var(--body); font-size: 15px; font-weight: 500; }
.product-detail__description { margin: 22px 0 0; color: var(--muted); font-size: 13px; line-height: 1.6; }
.product-detail dl { display: grid; margin: 0; border-top: 1px solid var(--line); grid-template-columns: 1fr 1fr; }
.product-detail dl div { padding: 13px 0; border-bottom: 1px solid var(--line); }
.product-detail dt { color: var(--muted); font-size: 10px; }
.product-detail dd { margin: 3px 0 0; font-size: 12px; font-weight: 700; }
.product-detail__actions { display: grid; margin-top: auto; padding-top: 28px; grid-template-columns: 112px 1fr; gap: 10px; }
.product-detail__quantity { display: grid; gap: 5px; color: var(--muted); font-size: 9px; font-weight: 700; text-transform: uppercase; }
.product-detail__quantity input { width: 100%; min-height: 52px; padding: 0 10px; border: 1px solid var(--line); border-radius: 999px; background: var(--paper); color: var(--ink); font-family: var(--utility); text-align: center; }
.source-link { display: grid; width: 52px; place-items: center; border: 1px solid var(--ink); border-radius: 50%; }
.source-link svg { width: 19px; height: 19px; }

.checkout-dialog {
  width: min(520px, calc(100% - 28px));
  border-radius: 28px;
  background: var(--paper);
}

.account-dialog { width: min(500px, calc(100% - 28px)); padding: 34px; border: 0; border-radius: 24px; background: var(--paper); box-shadow: var(--shadow); }
.account-dialog::backdrop { background: rgba(14,13,10,.55); backdrop-filter: blur(7px); }
.account-dialog h2 { margin-bottom: 10px; font-size: clamp(34px, 5vw, 48px); line-height: 1.02; }
.account-dialog form { display: grid; gap: 14px; margin-top: 22px; }
.account-dialog label { display: grid; gap: 7px; color: var(--muted); font-size: 11px; font-weight: 800; }
.account-dialog input { min-height: 50px; padding: 0 15px; border: 1px solid var(--line); border-radius: 12px; background: #fff; }
.account-dialog output { display: block; min-height: 22px; margin-top: 12px; color: var(--muted); }
.account-code-tools { display: grid; gap: 8px; margin-top: 2px; }
.account-code-tools span { color: var(--muted); font: 600 12px/1.4 var(--utility); }
.account-code-tools .text-button { justify-self: start; padding: 0; }
.account-code-tools .text-button:disabled { cursor: wait; opacity: .55; }
.account-orders { display: grid; gap: 10px; max-height: 52vh; margin: 22px 0; overflow: auto; }
.account-order { padding: 15px; border: 1px solid var(--line); border-radius: 14px; background: #fff; }
.account-order__head { display: flex; justify-content: space-between; gap: 12px; }
.account-order small, .account-order span { display: block; margin-top: 5px; color: var(--muted); font-size: 11px; }
.account-order details { margin-top: 10px; }
.account-order li { margin-top: 5px; color: var(--muted); font-size: 11px; }
.account-order__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 12px; }
.account-order__actions .cancel-order { color: #a84236; }
.account-order__timeline ol { display: grid; gap: 8px; margin: 10px 0 0; padding: 0; list-style: none; }
.account-order__timeline li { display: grid; grid-template-columns: 105px 1fr; gap: 8px; padding-left: 9px; border-left: 3px solid var(--accent); }
.account-order__timeline time { color: var(--muted); font-size: 10px; }
.account-order__timeline span { margin: 0; color: var(--ink); }

.checkout-dialog form { display: grid; gap: 16px; padding: 52px; }
.checkout-dialog h2 { font-size: 52px; }
.checkout-dialog form > p:not(.eyebrow) { margin: -5px 0 6px; color: var(--muted); font-size: 13px; }
.checkout-dialog label { display: grid; gap: 6px; font-size: 11px; font-weight: 750; }
.checkout-dialog input,
.checkout-dialog textarea { width: 100%; padding: 13px 15px; border: 1px solid var(--line); border-radius: 12px; outline: 0; background: #faf8f2; resize: vertical; }
.checkout-dialog input:focus,
.checkout-dialog textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(40,100,220,.1); }
#checkout-status { min-height: 18px; color: var(--green); font-size: 12px; text-align: center; }
#checkout-status.is-error { color: var(--danger); }

.toast {
  position: fixed;
  z-index: 150;
  bottom: 28px;
  left: 50%;
  max-width: min(430px, calc(100% - 32px));
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--ink);
  box-shadow: 0 12px 40px rgba(0,0,0,.25);
  color: #fff;
  font-size: 12px;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 20px);
  transition: opacity 220ms ease, transform 220ms var(--ease);
}

.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

.mobile-nav { display: none; }

@keyframes hero-main { from { opacity: 0; transform: translate(35px, 15px) rotate(8deg) scale(.94); } }
@keyframes hero-side { from { opacity: 0; transform: translate(-25px, 35px) rotate(-14deg) scale(.94); } }
@keyframes fade-in { from { opacity: 0; } }
@keyframes dialog-in { from { opacity: 0; transform: translateY(20px) scale(.97); } }
@keyframes shimmer { to { background-position: 250% 0; } }

@media (max-width: 1240px) {
  .shell { width: min(100% - 40px, 1180px); }
  .header-main { grid-template-columns: auto minmax(300px, 1fr) auto; gap: 20px; }
  .location-button { display: none; }
  .header-actions { gap: 13px; }
  .hero { grid-template-columns: .95fr 1.05fr; gap: 24px; }
  .hero h1 { font-size: clamp(58px, 7vw, 82px); }
  .hero-showcase { min-height: 470px; }
  .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .category-tiles { grid-template-columns: repeat(2, 1fr); }
  .category-tile { min-height: 270px; }
}

@media (max-width: 900px) {
  html { scroll-padding-top: 112px; }
  .announcement { justify-content: space-between; }
  .announcement__message { display: none; }
  .site-header { top: 0; }
  .header-main { min-height: 70px; grid-template-columns: auto 1fr auto; }
  .brand { grid-template-columns: 34px auto; }
  .brand--test { grid-template-columns: auto; min-width: 122px; }
  .brand__mark { width: 29px; height: 35px; }
  .brand__mark i:nth-child(1) { width: 29px; height: 35px; }
  .brand__mark i:nth-child(2) { width: 20px; height: 26px; }
  .brand__mark i:nth-child(3) { width: 11px; height: 15px; }
  .brand__text { font-size: 24px; }
  .brand--test .brand__text { font-size: 15px; }
  .brand__caption { display: none; }
  .header-actions .header-action:not(.header-action--cart) { display: none; }
  .header-action--cart > span:last-child { display: none; }
  .search { min-height: 44px; padding-left: 13px; grid-template-columns: 19px 1fr; }
  .search-suggestions { right: 0; left: auto; width: min(620px, calc(100vw - 28px)); max-height: min(620px, calc(100vh - 95px)); grid-template-columns: 1fr; }
  .search-suggestions__section + .search-suggestions__section { border-top: 1px solid rgba(35, 29, 21, .12); border-left: 0; }
  .search kbd,
  .search button { display: none; }
  .search .search-suggestions button { display: flex; }
  .category-nav { min-height: 43px; gap: 20px; }
  .catalog-menu-button { padding: 8px 13px !important; }
  .hero { min-height: auto; padding-block: 55px 70px; grid-template-columns: 1fr; }
  .hero__copy { max-width: 720px; }
  .hero-showcase { width: min(680px, 100%); min-height: 520px; margin-inline: auto; }
  .story-strip__inner { width: 100%; grid-template-columns: 1fr 1fr; }
  .story-strip span { min-height: 50px; display: grid; place-items: center; border-bottom: 1px solid rgba(24,22,17,.3); }
  .quick-categories { padding-block: 80px; }
  .section-heading { align-items: start; flex-direction: column; gap: 12px; }
  .catalog-layout { grid-template-columns: 1fr; }
  .filters { position: fixed; z-index: 110; top: auto; right: 0; bottom: 0; left: 0; max-height: 85dvh; padding: 22px 24px 28px; border-radius: 28px 28px 0 0; background: var(--paper); box-shadow: 0 -25px 70px rgba(20,18,14,.25); transform: translateY(105%); transition: transform 380ms var(--ease); }
  .filters.is-open { transform: translateY(0); }
  .filters__mobile-head { position: sticky; z-index: 2; top: -22px; display: flex; align-items: center; justify-content: space-between; margin: -22px -24px 4px; padding: 18px 24px 12px; background: var(--paper); font-family: var(--display); font-size: 30px; }
  .filters__apply {
    position: sticky;
    z-index: 3;
    bottom: 0;
    display: flex;
    width: 100%;
    margin-top: 18px;
    box-shadow: 0 0 0 12px var(--paper), 0 -12px 0 12px var(--paper), 0 12px 30px rgba(255, 90, 54, .22);
  }
  .price-filter button { display: none; }
  .filter-button { display: flex; }
  .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .sync-note { padding: 36px; grid-template-columns: 1fr; }
  .sync-note code { grid-column: 1; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2; }
}

@media (max-width: 640px) {
  body { padding-bottom: 70px; }
  .shell { width: calc(100% - 28px); }
  .announcement { min-height: 30px; padding-inline: 14px; font-size: 9px; }
  .announcement__link { font-size: 9px; }
  .header-main { gap: 10px; }
  .brand__text { font-size: 21px; }
  .brand--test { min-width: 102px; }
  .brand--test .brand__text { font-size: 12px; }
  .search { min-width: 0; }
  .search input { font-size: 12px; }
  .header-action--cart { display: none; }
  .category-nav { width: 100%; padding-inline: 14px; }
  .hero { padding-block: 42px 50px; }
  .hero h1 { font-size: clamp(52px, 16vw, 72px); }
  .hero__lead { margin-top: 22px; font-size: 15px; }
  .hero__actions { align-items: stretch; flex-direction: column; gap: 12px; margin-top: 26px; }
  .hero__actions .text-button { align-self: center; }
  .hero__facts { margin-top: 32px; gap: 10px; }
  .hero__facts dt { font-size: 23px; }
  .hero__facts dd { font-size: 9px; }
  .hero-showcase { min-height: 380px; margin-top: 15px; }
  .showcase-card--main { right: 5%; width: 66%; padding: 13px; border-radius: 24px; }
  .showcase-card--main > div { display: grid; gap: 2px; }
  .showcase-card--main strong { font-size: 12px; }
  .showcase-card--side { left: 1%; width: 41%; }
  .showcase-card--side span { font-size: 17px; }
  .showcase-orbit { display: none; }
  .showcase-sticker { right: 1%; width: 92px; height: 92px; font-size: 29px; box-shadow: 4px 5px 0 var(--ink); }
  .showcase-sticker small { font-size: 7px; }
  .story-strip span { padding: 9px; font-size: 8px; }
  .quick-categories { padding-block: 65px; }
  .section-heading h2 { font-size: 44px; }
  .section-heading > p { font-size: 13px; }
  .category-tiles { display: flex; width: calc(100% + 14px); overflow-x: auto; padding-right: 14px; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .category-tile { min-width: 78vw; min-height: 260px; scroll-snap-align: start; }
  .catalog-section { padding-block: 20px 75px; }
  .catalog-header { align-items: flex-start; flex-direction: column; }
  .catalog-header h2 { font-size: 58px; }
  .catalog-tools { width: 100%; flex-wrap: wrap; justify-content: space-between; }
  .sort-control,
  .page-size-control { font-size: 0; }
  .sort-control select { max-width: 195px; font-size: 11px; }
  .page-size-control select { min-width: 70px; font-size: 11px; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 25px 9px; }
  .product-card__media { border-radius: 14px; }
  .product-card__media img { padding: 8px; }
  .product-card__badge { top: 7px; left: 7px; padding: 5px 7px; font-size: 7px; }
  .favorite-button { top: 6px; right: 6px; width: 31px; height: 31px; }
  .product-card h3 { min-height: 48px; font-size: 11px; }
  .product-card__meta { font-size: 8px; }
  .product-card__bottom { min-height: 98px; }
  .product-price { font-size: 17px; }
  .product-price small { max-width: none; font-size: 9px; }
  .product-card__add { width: 40px; height: 40px; border-radius: 12px; }
  .product-quantity-stepper { height: 40px; border-radius: 12px; grid-template-columns: 30px minmax(28px, 1fr) 30px; }
  .product-quantity-stepper .product-quantity { height: 100%; font-size: 12px; }
  .product-quantity-stepper__button { font-size: 18px; }
  .product-quantity-fixed { height: 40px; padding: 0 9px; border-radius: 12px; }
  .product-quantity-fixed strong { font-size: 12px; }
  .product-quantity-fixed small { font-size: 7px; }
  .product-card__buy { gap: 4px; grid-template-columns: minmax(0, 97px) 40px; }
  .pagination { width: 100%; grid-template-columns: 44px 1fr 44px; }
  .pagination__numbers { display: none; }
  .pagination__summary { display: block; grid-column: 2; grid-row: 1; text-align: center; }
  .pagination__arrow--prev { grid-column: 1; grid-row: 1; }
  #page-next { grid-column: 3; grid-row: 1; }
  .sync-note { margin-bottom: 60px; padding: 28px 22px; }
  .sync-note h2 { font-size: 44px; }
  .sync-note > p { font-size: 13px; }
  .sync-note code { font-size: 9px; }
  .site-footer { padding-block: 45px 50px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px 20px; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-info { padding-bottom: 106px; }
  .mobile-nav { position: fixed; z-index: 70; right: 8px; bottom: max(8px, env(safe-area-inset-bottom)); left: 8px; display: grid; height: 62px; min-height: 62px; align-items: center; padding: 5px 8px; border: 1px solid rgba(255,255,255,.2); border-radius: 19px; background: rgba(24,22,17,.94); box-shadow: 0 15px 40px rgba(0,0,0,.25); color: #fff; backdrop-filter: blur(12px); transform: translateZ(0); will-change: transform; grid-template-columns: repeat(4,1fr); }
  .mobile-nav a,
  .mobile-nav button { position: relative; display: grid; justify-items: center; gap: 2px; padding: 3px; background: none; color: inherit; font-size: 8px; }
  .mobile-nav svg { width: 21px; height: 21px; }
  .mobile-nav b { position: absolute; top: -2px; right: 16%; display: grid; min-width: 16px; height: 16px; place-items: center; border-radius: 50%; background: var(--coral); font-size: 8px; }
  .cart-drawer { padding: 20px 17px 82px; }
  .cart-item { grid-template-columns: 18px 62px 1fr auto; gap: 8px; }
  .cart-item img,
  .cart-item__fallback { width: 62px; height: 76px; }
  .quantity__input { width: 48px; }
  .product-detail { grid-template-columns: 1fr; }
  .product-detail__media { min-height: 260px; border-radius: 28px 28px 0 0; }
  .product-detail__copy { padding: 26px 22px; }
  .product-detail__copy h2 { font-size: clamp(26px, 8vw, 34px); }
  .product-detail__price { margin: 20px 0; }
  .product-detail dl { grid-template-columns: 1fr 1fr; }
  .product-detail__actions { grid-template-columns: 94px 1fr; }
  .checkout-dialog form { padding: 45px 22px 26px; }
  .checkout-dialog h2 { font-size: 43px; }
  .toast { bottom: 82px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: 0.01ms !important; }
  .product-card { opacity: 1; transform: none; }
}

@media (prefers-contrast: more) {
  :root { --line: #8f897e; }
  .site-header { background: var(--porcelain); backdrop-filter: none; }
}

/* Catalog navigation and the product shelf added for the multi-warehouse storefront. */
.site-header { isolation: isolate; }

.nav-mega {
  position: absolute;
  z-index: 80;
  top: 100%;
  left: 50%;
  max-height: min(520px, 70dvh);
  overflow: auto;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 0 0 24px 24px;
  background: color-mix(in srgb, var(--paper) 96%, transparent);
  box-shadow: 0 28px 70px rgba(24, 22, 17, .18);
  transform: translateX(-50%);
  backdrop-filter: blur(18px);
}

.nav-mega[hidden] { display: none; }
.nav-mega > strong { display: block; margin-bottom: 15px; font: 700 25px/1 var(--display); }
.nav-mega > div { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 7px; }
.nav-mega button { display: flex; min-width: 0; align-items: center; justify-content: space-between; gap: 12px; padding: 11px 13px; border-radius: 10px; background: var(--porcelain); font-size: 11px; font-weight: 700; text-align: left; }
.nav-mega button:hover { background: var(--ink); color: #fff; }
.nav-mega button span { color: var(--muted); font: 9px var(--utility); }
.nav-mega--warehouses { width: min(1380px, calc(100% - 32px)); }
.nav-mega--warehouses > .nav-mega__warehouses { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.nav-mega__warehouses > section { min-width: 0; padding: 12px; border: 1px solid var(--line); border-radius: 16px; background: var(--porcelain); }
.nav-mega .warehouse-tree-head { display: block; width: 100%; margin-bottom: 7px; padding: 14px; background: var(--ink); color: #fff; }
.nav-mega .warehouse-tree-head strong, .nav-mega .warehouse-tree-head span { display: block; }
.nav-mega .warehouse-tree-head strong { font: 700 20px var(--display); }
.nav-mega .warehouse-tree-head span { margin-top: 4px; color: rgba(255,255,255,.6); }
.nav-mega .warehouse-tree-toggle { width: 100%; margin-bottom: 7px; border: 1px solid var(--line); background: var(--paper); color: var(--ink); }
.nav-mega .warehouse-tree-toggle:hover { background: var(--ink); color: #fff; }
.warehouse-tree-toggle__chevron { flex: 0 0 auto; font-size: 17px; line-height: 1; }
.warehouse-tree-categories { display: grid; gap: 4px; }
.nav-mega__empty { grid-column: 1 / -1; margin: 0; padding: 12px; color: var(--muted); font-size: 12px; }
.category-tree-button { width: 100%; padding-left: calc(11px + var(--tree-depth) * 14px) !important; }
.category-tree-node, .category-tree-children { display: grid; gap: 4px; min-width: 0; }
.category-tree-node__row { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 4px; }
.category-tree-toggle { width: 34px; justify-content: center !important; padding: 8px !important; }
.category-tree-load-more { width: 100%; justify-content: center !important; color: var(--coral); }
.filter-options .category-tree-toggle, .filter-options .category-tree-load-more { min-height: 30px; border-radius: 8px; background: var(--porcelain); font-size: 10px; font-weight: 800; }
.category-tree-button > span { min-width: 0; overflow-wrap: anywhere; color: inherit !important; font: inherit !important; line-height: 1.35; }
.category-tree-button > b { flex: 0 0 auto; color: var(--muted); font: 9px var(--utility); }
.category-tree-button.is-active { background: var(--coral); color: #fff; }
.category-filter-warehouse { display: grid; gap: 4px; margin-bottom: 13px; }
.category-filter-warehouse > strong { position: sticky; top: 0; z-index: 1; padding: 7px 0 5px; background: var(--paper); color: var(--muted); font: 800 9px var(--utility); text-transform: uppercase; }
.filter-options .category-tree-button { display: flex; align-items: center; justify-content: space-between; gap: 8px; border-radius: 8px; background: transparent; color: var(--ink); font-size: 10px; text-align: left; }
.filter-options .category-tree-button:hover { background: var(--porcelain); }
.filter-options .category-tree-button.is-active { background: var(--ink); color: #fff; }
.catalog-breadcrumbs { display: flex; flex-wrap: wrap; gap: 6px; margin: 14px 0; color: var(--muted); font: 700 9px/1.55 var(--utility); }
.catalog-breadcrumbs button { background: none; color: inherit; font: inherit; }
.catalog-breadcrumbs button[aria-current="page"] { color: var(--ink); }

.compare-button {
  position: absolute;
  z-index: 3;
  top: 52px;
  right: 10px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(24, 22, 17, .12);
  border-radius: 50%;
  background: rgba(255, 254, 250, .88);
  backdrop-filter: blur(8px);
}
.compare-button svg { width: 17px; height: 17px; }
.compare-button.is-active { background: var(--blue); color: #fff; }

.collection-dock {
  position: fixed;
  z-index: 68;
  right: max(16px, calc((100vw - 1440px) / 2));
  bottom: var(--collection-dock-bottom);
  left: max(16px, calc((100vw - 1440px) / 2));
  display: grid;
  min-height: var(--collection-dock-height);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 20px;
  background: rgba(24, 22, 17, .94);
  box-shadow: 0 18px 55px rgba(24, 22, 17, .28);
  color: #fff;
  grid-template-columns: repeat(4, 1fr);
  backdrop-filter: blur(18px);
}
.collection-dock button { position: relative; display: flex; align-items: center; justify-content: center; gap: 10px; border-right: 1px solid rgba(255, 255, 255, .13); background: none; color: inherit; font-size: 11px; font-weight: 750; }
.collection-dock button:last-child { border-right: 0; }
.collection-dock button:hover { background: rgba(255, 255, 255, .08); }
.collection-dock svg { width: 20px; height: 20px; }
.collection-dock b { display: grid; min-width: 20px; height: 20px; place-items: center; border-radius: 999px; background: var(--coral); font: 800 9px "Manrope", sans-serif; font-variant-numeric: tabular-nums; }

.product-detail__personal { display: flex; flex-wrap: wrap; gap: 7px; padding-top: 10px; }
.product-detail__personal button { display: flex; align-items: center; gap: 7px; padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; background: transparent; font-size: 10px; font-weight: 750; }
.product-detail__personal button.is-active { border-color: var(--blue); color: var(--blue); }
.product-detail__personal svg { width: 16px; height: 16px; }

.compare-dialog { width: min(1180px, calc(100% - 34px)); max-height: calc(100dvh - 30px); overflow: auto; padding: 38px; border-radius: 28px; background: var(--paper); box-shadow: var(--shadow); }
.compare-dialog[open] { animation: dialog-in 320ms var(--ease) both; }
.compare-dialog__head h2 { margin: 0 0 28px; font: 700 clamp(42px, 5vw, 68px)/.9 var(--display); letter-spacing: -.04em; }
#compare-content { overflow-x: auto; }
.compare-table { width: 100%; min-width: 760px; border-collapse: collapse; table-layout: fixed; }
.compare-table th, .compare-table td { padding: 13px; border: 1px solid var(--line); font-size: 11px; text-align: left; vertical-align: top; }
.compare-table tr > :first-child { width: 150px; background: var(--porcelain); color: var(--muted); font-weight: 800; }
.compare-table tr:first-child th:not(:first-child) { background: #fff; }
.compare-table img { width: 100%; height: 130px; object-fit: contain; mix-blend-mode: multiply; }
.compare-table strong { display: block; margin-top: 10px; font: 700 16px/1.15 var(--display); }
.compare-table button { margin-top: 10px; padding: 5px 9px; border-radius: 999px; background: var(--porcelain); color: var(--danger); font-size: 9px; }

@media (max-width: 1100px) {
  .nav-mega > div { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .collection-dock { display: none; }
  .nav-mega { top: 100%; width: calc(100% - 20px); padding: 17px; border-radius: 0 0 18px 18px; }
  .nav-mega > div { grid-template-columns: 1fr 1fr; }
  .nav-mega--warehouses > .nav-mega__warehouses { grid-template-columns: 1fr; }
  .nav-mega button { padding: 10px; font-size: 9px; }
  .compare-button { top: 43px; right: 6px; width: 31px; height: 31px; }
  .compare-dialog { padding: 28px 16px 20px; }
}
