:root {
  --font-body: 'Onest', sans-serif;
  --font-display: 'Unbounded', sans-serif;
  --product-list-image-width: 290px;
  --product-quick-image-width: 448px;
  --product-cart-image-width: 72px;
  --color-ink: #181916;
  --color-muted: #74766f;
  --color-accent: #e8482e;
  --color-accent-dark: #ca3420;
  --color-paper: #f4f4ef;
  --color-surface: #ffffff;
  --color-soft: #f8f7f2;
  --color-line: #fff;
  --color-gray: #ccc;
  --shadow-panel: 0 18px 50px rgba(24, 25, 22, 0.07);
  --radius-large: 28px;
  --radius-medium: 20px;
  --header-height: 78px;
  --site-width: 1920px;
  --btn-radius: 30px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--color-paper);
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
body.locked {
  overflow: hidden;
}
button, input, select, textarea {
  font: inherit;
}
select {
  width: 100%;
  min-height: 48px;
  padding: 0 46px 0 14px;
  border: 1px solid var(--color-gray);
  border-radius: var(--btn-radius);
  background-color: var(--color-surface);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8'%3E%3Cpath d='m1 1 6 6 6-6' fill='none' stroke='%23181916' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-position: right 16px center;
  background-repeat: no-repeat;
  color: var(--color-ink);
  appearance: none;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
select:hover {
  border-color: var(--color-muted);
}
select:focus-visible {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(232, 72, 46, 0.14);
}
select:disabled {
  background-color: var(--color-soft);
  color: var(--color-muted);
  cursor: not-allowed;
}
button, a {
  -webkit-tap-highlight-color: transparent;
}
a {
  color: inherit;
  text-decoration: none;
}
img, svg {
  display: block;
  max-width: 100%;
}
button:focus-visible,
 a:focus-visible,
 input:focus-visible,
 select:focus-visible,
 textarea:focus-visible {
  outline: 3px solid rgba(232, 72, 46, 0.28);
  outline-offset: 3px;
}
.flex {
  display: flex;
}
.grid {
  display: grid;
}
span.logo {
  width: 220px;
}
.site-header {
  position: sticky;
  z-index: 50;
  top: 10px;
  width: calc(100% - 32px);
  min-height: var(--header-height);
  padding: 12px max(24px, calc((100vw - var(--site-width)) / 2));
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 34px;
  border-bottom: 1px solid var(--color-line);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
  left: 16px;
  border-radius: var(--radius-large);
}
.hero h1 em.white {
  color: #fff;
  font-style: normal;
}
p.eyebrow.white {
  color: #fff;
}
body .hero-copy > p.white {
  color: #fff;
}
.primary-action.white {
  background: #fff;
  color: #000;
}
.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  white-space: nowrap;
}
.brand b {
  color: var(--color-accent);
  font-size: 1.65em;
}
.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  position: relative;
  padding: 8px 0;
  font-size: 18px;
  font-weight: 600;
}
.main-nav a::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.2s ease;
}
.main-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.phone {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
  line-height: 1.1;
}
.phone > i {
  color: var(--color-accent);
  font-size: 18px;
}
.phone > span {
  display: grid;
  gap: 1px;
}
.phone small {
  color: var(--color-muted);
  font-size: 11px;
}
.phone strong {
  font-family: var(--font-display);
  font-size: 20px;
}
.cart-trigger {
  min-height: 48px;
  padding: 0 9px 0 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 0;
  border-radius: 999px;
  background: var(--color-paper);
  color: #000;
  cursor: pointer;
}
.cart-trigger b {
  min-width: 32px;
  height: 32px;
  padding: 0 8px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--color-accent);
  color: #fff;
  font-weight: normal;
}
.cart-trigger > i {
  font-size: 19px;
}
.cart-trigger.cart-received {
  animation: cart-received 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.cart-flight {
  position: fixed;
  z-index: 200;
  pointer-events: none;
  object-fit: contain;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 12px 30px rgba(24, 25, 22, 0.2);
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1) rotate(0);
  transition: transform 0.72s cubic-bezier(0.22, 0.75, 0.2, 1), opacity 0.72s ease;
  will-change: transform, opacity;
}
.cart-flight.is-flying {
  opacity: 0.2;
  transform: translate3d(var(--flight-x), var(--flight-y), 0) scale(0.14) rotate(16deg);
}
@keyframes cart-received {
  0%, 100% {
    transform: scale(1);
  }
  38% {
    transform: scale(1.16) rotate(-4deg);
  }
  68% {
    transform: scale(0.96) rotate(2deg);
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-track {
    transition: none;
  }
  .cart-flight {
    display: none;
  }
  .cart-trigger.cart-received {
    animation: none;
  }
}

.checkout-address-autocomplete {
  position: relative;
  min-width: 0;
}

.checkout-address-autocomplete label {
  display: grid;
  gap: 7px;
}

.checkout-suggestions {
  position: absolute;
  z-index: 1250;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  overflow: hidden;
  max-height: 260px;
  border: 1px solid rgba(22, 28, 31, 0.12);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(22, 28, 31, 0.18);
}

.checkout-suggestions button {
  display: block;
  width: 100%;
  padding: 12px 14px;
  border: 0;
  border-bottom: 1px solid rgba(22, 28, 31, 0.08);
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.checkout-suggestions button:last-child {
  border-bottom: 0;
}

.checkout-suggestions button:hover,
.checkout-suggestions button:focus-visible {
  background: #f4f7f5;
}

.checkout-delivery-result {
  padding: 12px 14px;
  border-radius: 14px;
  background: #f1f4f2;
  color: #46504b;
  font-size: 13px;
  line-height: 1.45;
}

.checkout-delivery-result[data-state="success"] {
  background: #e8f5ee;
  color: #17643c;
}

.checkout-delivery-result[data-state="warning"] {
  background: #fff3dd;
  color: #80530a;
}

.checkout-review-delivery {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 10px;
  color: #46504b;
}

.checkout-time-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  margin-top: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(22, 28, 31, 0.14);
  border-radius: 14px;
  background: #fff;
  color: inherit;
  cursor: pointer;
}

.checkout-time-dialog {
  z-index: 3000;
  width: min(620px, calc(100% - 24px));
  max-height: calc(100dvh - 24px);
  padding: 0;
  border: 0;
  border-radius: 28px;
  background: #fff;
  color: #161c1f;
  box-shadow: 0 30px 90px rgba(16, 25, 22, 0.3);
}

.checkout-time-dialog::backdrop {
  background: rgba(16, 25, 22, 0.48);
  backdrop-filter: blur(4px);
}

.checkout-time-sheet {
  overflow-y: auto;
  max-height: calc(100dvh - 24px);
  padding: 24px;
}

.checkout-time-heading,
.checkout-time-selected,
.checkout-time-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.checkout-time-heading h2 {
  margin: 4px 0 0;
  font-size: 24px;
}

.checkout-time-selected {
  margin: 20px 0;
  padding: 16px;
  border-radius: 16px;
  background: #f1f4f2;
}

.checkout-time-sheet section + section {
  margin-top: 22px;
}

.checkout-time-sheet section h3 {
  margin: 0 0 12px;
  font-size: 16px;
}

.checkout-date-scroller {
  display: flex;
  overflow-x: auto;
  gap: 10px;
  padding: 2px 2px 10px;
  overscroll-behavior-inline: contain;
  scrollbar-width: thin;
}

.checkout-date-card {
  display: grid;
  flex: 0 0 86px;
  gap: 3px;
  padding: 12px 8px;
  border: 1px solid rgba(22, 28, 31, 0.12);
  border-radius: 16px;
  background: #fff;
  color: inherit;
  text-align: center;
  cursor: pointer;
}

.checkout-date-card strong {
  font-size: 24px;
}

.checkout-date-card.is-selected {
  border-color: #1f8a56;
  background: #e8f5ee;
  color: #17643c;
}

.checkout-date-card:disabled {
  opacity: 0.38;
  cursor: not-allowed;
}

.checkout-time-wheels {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
}

.checkout-time-wheels > div {
  min-width: 0;
}

.checkout-time-wheels > div > span {
  display: block;
  margin-bottom: 7px;
  color: #6e7773;
  font-size: 12px;
}

.checkout-time-wheels > b {
  padding-top: 20px;
  font-size: 24px;
}

.checkout-time-wheel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow-y: auto;
  gap: 7px;
  max-height: 170px;
  padding: 8px;
  border-radius: 16px;
  background: #f4f6f5;
}

.checkout-time-wheel button {
  min-height: 40px;
  border: 0;
  border-radius: 10px;
  background: #fff;
  color: inherit;
  cursor: pointer;
}

.checkout-time-wheel button.is-selected {
  background: #1f8a56;
  color: #fff;
}

.checkout-time-message {
  color: #80530a;
}

.checkout-time-actions {
  margin-top: 24px;
}

.checkout-time-actions button {
  flex: 1;
  min-height: 44px;
  border: 0;
  border-radius: 13px;
  background: #edf0ee;
  color: inherit;
  cursor: pointer;
}

.checkout-time-actions button.is-primary {
  background: #1f8a56;
  color: #fff;
}

@media (max-width: 560px) {
  .checkout-time-dialog {
    width: 100%;
    max-width: none;
    max-height: calc(100dvh - 12px);
    margin: auto 0 0;
    border-radius: 26px 26px 0 0;
  }

  .checkout-time-sheet {
    max-height: calc(100dvh - 12px);
    padding: 20px 16px;
  }

  .checkout-time-wheel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
main {
  width: 100%;
}
.kit-shell {
  width: min(var(--site-width), calc(100% - 32px));
  margin: 24px auto 0;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr) 360px;
  align-items: start;
  gap: 24px;
}
.kit-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  overflow: hidden;
  border-radius: var(--radius-large);
  background: var(--color-surface);
}
.kit-sidebar-head {
  margin: 0;
  padding: 20px 30px 10px;
  color: var(--color-muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.category-rail {
  width: 100%;
  padding: 4px 20px 12px;
  display: grid;
  gap: 3px;
}
.category-link {
  padding: 7px 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: var(--btn-radius);
  color: var(--color-ink);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  transition: background 0.18s ease, color 0.18s ease;
}
.category-link:hover, .category-link.is-active {
  background: var(--color-soft);
}
.kit-content {
  min-width: 0;
}
.hero {
  position: relative;
  overflow: hidden;
  padding: 70px 0 70px 70px;
  display: flex;
  align-items: center;
  border-radius: var(--radius-large);
  background: var(--color-surface);
}
.hero-carousel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-large);
}
.hero-track {
  display: flex;
  transition: transform .65s cubic-bezier(.22,.7,.2,1);
  will-change: transform;
}
.hero-slide {
  flex: 0 0 100%;
  border-radius: 0;
}
.hero-navigation {
  position: absolute;
  z-index: 4;
  right: 24px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-navigation > button {
  width: 42px;
  height: 42px;
  padding: 0;
  display: grid;
  place-items: center;
  border: 1px solid rgba(23,23,20,.12);
  border-radius: 50%;
  color: var(--color-ink);
  background: rgba(255,255,255,.9);
  cursor: pointer;
}
.hero-dots {
  display: flex;
  align-items: center;
  gap: 7px;
}
.hero-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(23,23,20,.25);
  cursor: pointer;
  transition: width .2s ease, background .2s ease;
}
.hero-dots button.active {
  width: 24px;
  border-radius: 99px;
  background: var(--color-accent);
}
.hero-copy {
  position: relative;
  z-index: 2;
  width: 48%;
}
.eyebrow {
  margin: 0 0 18px;
  color: var(--color-accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}
.hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(42px, 4.7vw, 64px);
  line-height: 1.04;
}
.hero h1 span.white {
  color: #fff;
}
.hero h1 em {
  color: var(--color-accent);
  font-style: normal;
}
.hero-copy > p:not(.eyebrow) {
  max-width: 36ch;
  margin: 28px 0 0;
  color: var(--color-muted);
  line-height: 1.7;
}
.primary-action {
  min-height: 52px;
  margin-top: 34px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--btn-radius);
  background: var(--color-accent);
  color: #fff;
  font-weight: 700;
  transition: background 0.2s ease, transform 0.2s ease;
}
.primary-action:hover {
  background: var(--color-accent-dark);
  transform: translateY(-2px);
}
.hero-image {
  width: 50%;
}
.kit-benefits {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.kit-benefit {
  padding: 15px;
  border-radius: var(--radius-large);
  background: var(--color-surface);
}
.utp-img img {
  border-radius: var(--radius-medium);
}
.utp-img {
  width: 90px;
}
.utp-top.flex {
  align-items: center;
}
.utp-title {
  width: calc(100% - 90px);
  padding: 0 0 0 20px;
  line-height: 1.3;
}
.kit-benefit:nth-child(2) {
  background: #fee9e2;
}
.kit-benefit:nth-child(3) {
  background: #e8f1fa;
}
.kit-benefit:nth-child(4) {
  background: #f5ecd8;
}
.kit-benefit svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: var(--color-accent);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.kit-benefit strong {
  font-family: var(--font-display);
  font-size: 14px;
  line-height: 1.35;
}
.kit-benefit span {
  color: var(--color-muted);
  font-size: 12px;
}
.kit-menu-intro {
  padding: 24px 0 12px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}
.kit-menu-intro h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 34px;
  line-height: 1.05;
}
.kit-menu-intro p {
  max-width: 38ch;
  margin: 0;
  color: var(--color-muted);
}
.catalog-section {
  width: 100%;
  padding: 30px 0 80px;
  scroll-margin-top: calc(var(--header-height) + 20px);
}
.section-heading {
  margin-bottom: 34px;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(240px, 0.7fr);
  align-items: end;
  gap: 32px;
}
.section-heading h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(30px, 3.1vw, 50px);
  line-height: 1.1;
}
.section-heading > p {
  margin: 0;
  color: var(--color-muted);
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 1.4vw, 24px);
}
.product-card {
  min-width: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-medium);
  background: var(--color-surface);
}
.product-image {
  width: 100%;
  min-height: 190px;
  padding: 0;
  display: grid;
  place-items: center;
  border: 0;
  background: #fff;
  cursor: pointer;
}
.product-image img {
  width: min(100%, var(--product-list-image-width));
  height: auto;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.product-meta {
  padding: 18px 16px 10px;
}
.product-meta small {
  display: block;
  margin-bottom: 7px;
  color: var(--color-accent);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.product-meta h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 15px;
  line-height: 1.35;
}
.product-buy {
  margin-top: auto;
  padding: 10px 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.product-buy strong {
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 15px;
}
.product-buy button, .quick-info [data-quick-add] {
  min-height: 40px;
  padding: 0 14px;
  border: 0;
  border-radius: var(--btn-radius);
  background: var(--color-accent);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease;
}
.product-buy button:hover, .quick-info [data-quick-add]:hover {
  background: var(--color-accent-dark);
}
.product-buy button i {
  font-size: 16px;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.side-cart {
  position: sticky;
  z-index: 10;
  top: calc(var(--header-height) + 24px);
  width: 100%;
  max-height: calc(100dvh - var(--header-height) - 48px);
  display: flex;
  overflow: hidden;
  flex-direction: column;
  border-radius: var(--radius-large);
  background: var(--color-surface);
}
.cart-viewport {
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-color: var(--color-accent) transparent;
  scrollbar-width: thin;
}
.cart-viewport::-webkit-scrollbar {
  width: 5px;
}
.cart-viewport::-webkit-scrollbar-track {
  background: transparent;
}
.cart-viewport::-webkit-scrollbar-thumb {
  border-radius: 99px;
  background: var(--color-accent);
}
.cart-viewport::-webkit-scrollbar-thumb:hover {
  background: #cf3f2a;
}
.cart-flow {
  --checkout-step-padding: 22px;
  display: grid;
  grid-template-columns: 100% 100%;
  align-items: start;
  transition: transform .42s cubic-bezier(.22,.75,.2,1);
}
.side-cart.checkout-active .cart-flow {
  transform: translateX(-100%);
}
.cart-step {
  min-width: 0;
}
.cart-step-checkout {
  max-height: 0;
  padding: 0 var(--checkout-step-padding);
  overflow: hidden;
}
.side-cart.checkout-active .cart-step-basket {
  max-height: 0;
  overflow: hidden;
}
.side-cart.checkout-active .cart-step-checkout {
  max-height: none;
  padding: var(--checkout-step-padding);
  overflow: visible;
}
.panel-head {
  padding: 22px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--color-line);
}
.panel-head small {
  color: var(--color-muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.panel-head h2 {
  margin: 4px 0 0;
  font-family: var(--font-display);
  font-size: 26px;
}
.icon-close {
  position: relative;
  width: 40px;
  height: 40px;
  padding: 0;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--color-paper);
  cursor: pointer;
  border:none;
}
.icon-close::before, .icon-close::after {
  content: '';
  position: absolute;
  top: 19px;
  left: 12px;
  width: 17px;
  height: 2px;
  background: var(--color-ink);
}
.icon-close::before {
  transform: rotate(45deg);
}
.icon-close::after {
  transform: rotate(-45deg);
}
.side-cart .icon-close {
  display: none;
}
.kit-cart-tools {
  margin: 12px 14px 4px;
  padding: 8px;
  border-radius: 16px;
  background: var(--color-surface);
}
.kit-cart-modes {
  padding: 3px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  border-radius: var(--btn-radius);
  background: var(--color-paper);
}
.kit-cart-modes button {
  min-height: 40px;
  border: 0;
  border-radius: var(--btn-radius);
  background: transparent;
  color: var(--color-muted);
  font-weight: 700;
  cursor: pointer;
}
.kit-cart-modes button.is-active {
  background: #fff;
  color: var(--color-ink);
  box-shadow: 0 2px 8px rgba(24, 25, 22, 0.08);
}
.kit-address {
  width: 100%;
  min-height: 46px;
  margin-top: 8px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: var(--btn-radius);
  background: #fff;
  color: var(--color-ink);
  font-weight: 600;
  cursor: pointer;
  border: 2px solid var(--color-paper);
}
.kit-address span:last-child {
  color: var(--color-accent);
}
.cart-content {
  padding: 22px;
}
.cart-empty {
  min-height: 220px;
  display: grid;
  place-content: center;
  text-align: center;
}
.cart-empty .eyebrow {
  margin-bottom: 10px;
}
.cart-empty h3 {
  max-width: 16ch;
  margin: 0 auto;
  color: var(--color-muted);
  font-size: 18px;
}
.cart-items {
  display: grid;
  gap: 14px;
}
.cart-extras {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--color-line);
}
.cart-extras > h3 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: 15px;
  line-height: 1.3;
}
.cart-extra-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}
.cart-extra {
  min-width: 0;
  padding: 8px;
  display: flex;
  align-items: center;
  flex-direction: column;
  border: 1px solid var(--color-line);
  border-radius: 16px;
  background: var(--color-surface);
  text-align: center;
}
.cart-extra img {
  width: 72px;
  height: auto;
  aspect-ratio: auto;
  border-radius: 12px;
}
.cart-extra h4 {
  min-height: 2.7em;
  margin: 8px 0 5px;
  display: flex;
  align-items: center;
  color: var(--color-ink);
  font-size: 11px;
  line-height: 1.35;
}
.cart-extra > strong {
  margin-bottom: 8px;
  font-size: 12px;
}
.cart-extra .cart-quantity {
  margin-top: auto;
}
.cart-extra .cart-quantity button {
  width: 25px;
  height: 30px;
}
.cart-extra .cart-quantity input {
  width: 25px;
  height: 30px;
  font-size: 12px;
}
.cart-item {
  position: relative;
  display: grid;
  grid-template-columns: var(--product-cart-image-width) minmax(0, 1fr) 28px;
  gap: 12px;
  align-items: center;
}
.cart-item img {
  width: var(--product-cart-image-width);
  height: auto;
  border-radius: 20px;
}
.cart-item h3 {
  margin: 0 0 8px;
  font-size: 13px;
  line-height: 1.35;
}
.cart-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.cart-quantity, .quick-quantity {
  display: flex;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--color-paper);
  border-radius: var(--btn-radius);
  width: fit-content;
}
.cart-quantity button {
  width: 32px;
  height: 34px;
  padding: 0;
  display: grid;
  place-items: center;
  border: 0;
  background: var(--color-soft);
  color: var(--color-ink);
  cursor: pointer;
}
.cart-quantity button:hover {
  background: var(--color-line);
}
.cart-quantity input {
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  background: var(--color-surface);
  color: var(--color-ink);
  text-align: center;
}
.cart-row strong {
  font-size: 13px;
}
.cart-remove {
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 50%;
  background: var(--color-soft);
  color: var(--color-muted);
  cursor: pointer;
  margin: 23px 0 0;
}
.cart-remove:hover {
  color: var(--color-accent);
}
.cart-summary {
  margin-top: 22px;
  padding-top: 18px;
  display: grid;
  gap: 16px;
  border-top: 1px solid var(--color-line);
}
.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cart-total strong {
  font-family: var(--font-display);
  font-size: 19px;
}
.checkout-link {
  width: 100%;
  border: 0;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--btn-radius);
  background: var(--color-accent);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}
.checkout-form {
  display: grid;
  gap: 20px;
}
.checkout-back {
  width: max-content;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 0;
  background: transparent;
  color: var(--color-muted);
  font-weight: 700;
  cursor: pointer;
}
.checkout-back:hover {
  color: var(--color-accent);
}
.checkout-fields, .checkout-conditional {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
}
.checkout-form [hidden] {
  display: none;
}
.checkout-fields label, .checkout-conditional label, .checkout-comment {
  display: grid;
  gap: 7px;
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 700;
}
.checkout-fields .wide, .checkout-conditional .wide {
  grid-column: 1 / -1;
}
.checkout-form input:not([type="radio"]):not([type="checkbox"]),
 .checkout-form select,
 .checkout-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--color-gray);
  border-radius: 12px;
  outline: none;
  background: var(--color-surface);
  color: var(--color-ink);
}
.checkout-form textarea {
  resize: vertical;
}
.checkout-form input:focus, .checkout-form select:focus, .checkout-form textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(233,79,55,.12);
}
.checkout-pickup-point, .checkout-notice {
  grid-column: 1 / -1;
  padding: 14px;
  display: grid;
  gap: 5px;
  border-radius: 14px;
  background: var(--color-soft);
}
.checkout-pickup-point small {
  color: var(--color-muted);
}
.checkout-time {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 9px;
  border: 0;
}
.checkout-time legend {
  margin-bottom: 8px;
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 700;
}
.checkout-time label {
  min-height: 42px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--color-line);
  border-radius: 12px;
  cursor: pointer;
}
.checkout-time label.is-unavailable {
  cursor: not-allowed;
  opacity: .55;
}
.checkout-time small {
  margin-left: 5px;
  color: var(--color-accent);
}
.checkout-review {
  padding-top: 18px;
  border-top: 1px solid var(--color-line);
}
.checkout-review h3 {
  margin: 0 0 13px;
  font-family: var(--font-display);
  font-size: 17px;
}
.checkout-review-items {
  display: grid;
  gap: 9px;
}
.checkout-review-items > div, .checkout-review-total {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  font-size: 12px;
  line-height: 1.4;
}
.checkout-review-items span {
  color: var(--color-muted);
}
.checkout-review-total {
  margin-top: 16px;
  padding-top: 14px;
  align-items: center;
  border-top: 1px solid var(--color-line);
  font-size: 15px;
}
.checkout-review-total strong {
  font-family: var(--font-display);
  font-size: 18px;
}
.checkout-privacy {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: var(--color-muted);
  font-size: 11px;
  line-height: 1.45;
  cursor: pointer;
}
.checkout-privacy input {
  margin-top: 1px;
  flex: 0 0 auto;
  accent-color: var(--color-accent);
}
.checkout-privacy a {
  color: var(--color-ink);
  text-decoration: underline;
}
.checkout-error {
  min-height: 0;
  color: var(--color-accent);
  font-size: 12px;
  font-weight: 700;
}
.checkout-error:empty {
  display: none;
}
.checkout-submit {
  min-height: 50px;
  border: 0;
  border-radius: var(--btn-radius);
  background: var(--color-accent);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}
.checkout-submit:disabled {
  cursor: wait;
  opacity: .65;
}
.checkout-success {
  min-height: 420px;
  padding: 38px 24px;
  display: grid;
  place-content: center;
  justify-items: center;
  text-align: center;
}
.checkout-success-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #dff3e7;
  color: #258355;
  font-size: 24px;
}
.checkout-success h3 {
  margin: 7px 0 10px;
  font-family: var(--font-display);
  font-size: 24px;
}
.checkout-success p:not(.eyebrow) {
  max-width: 28ch;
  margin: 0 0 18px;
  color: var(--color-muted);
  line-height: 1.55;
}
.scrim {
  position: fixed;
  z-index: 80;
  inset: 0;
  background: rgba(15, 16, 14, 0.45);
  backdrop-filter: blur(3px);
}
.quick-view {
  position: fixed;
  z-index: 90;
  top: 50%;
  left: 50%;
  width: min(960px, calc(100% - 32px));
  max-height: calc(100dvh - 32px);
  overflow: auto;
  border-radius: 26px;
  background: var(--color-surface);
  box-shadow: 0 28px 90px rgba(15, 16, 14, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -47%);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}
.quick-view.open {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%);
}
.quick-view > .icon-close {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
}
.quick-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
}
.quick-image {
  min-height: 540px;
  padding: 28px;
  display: grid;
  place-items: center;
}
.quick-image img {
  width: min(100%, var(--product-quick-image-width));
  height: auto;
  border-radius: var(--radius-large);
}
.quick-info {
  padding: 60px 30px;
}
.quick-info h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 32px);
  line-height: 1.12;
}
.quick-info .price {
  margin-top: 22px;
  font-family: var(--font-display);
  font-size: 24px;
}
.quick-weight {
  margin-top: 8px;
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 600;
}
.quick-info .desc {
  margin-top: 22px;
  line-height: 1.65;
}
.quick-info select {
  margin-top: 26px;
}
.quick-info label {
  margin-top: 26px;
  display: grid;
  gap: 8px;
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 700;
}
.quick-quantity-group {
  margin-top: 26px;
  display: grid;
  gap: 8px;
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 700;
}
.quick-quantity button {
  width: 40px;
  height: 44px;
  padding: 0;
  display: grid;
  place-items: center;
  border: 0;
  background: var(--color-soft);
  color: var(--color-ink);
  cursor: pointer;
}
.quick-quantity button:hover {
  background: var(--color-line);
}
.quick-quantity input {
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: var(--color-surface);
  color: var(--color-ink);
  text-align: center;
}
.quick-info [data-quick-add] {
  min-height: 48px;
  margin-top: 18px;
  padding: 0 24px;
}
.delivery-strip {
  width: min(var(--site-width), calc(100% - 32px));
  margin: 80px auto 0;
  padding: clamp(48px, 7vw, 96px);
  border-radius: var(--radius-large);
  background: #f5ecd8;
}
.delivery-strip h2 {
  max-width: 18ch;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 64px);
  line-height: 1.1;
}
.delivery-strip > div {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.delivery-strip span {
  padding-top: 14px;
  border-top: 1px solid #000;
}
footer {
  width: min(var(--site-width), calc(100% - 32px));
  margin: 0 auto;
  padding: 30px max(24px, calc((100vw - var(--site-width)) / 2));
  display: flex;
  align-items: center;
  gap: 28px;
}
footer .brand {
  margin-right: auto;
}
footer a {
  font-weight: 700;
}
footer small {
  color: var(--color-muted);
}
.empty-page {
  min-height: 60vh;
  margin: 0 auto;
  padding: 64px;
  border-radius: var(--radius-large);
  background: var(--color-surface);
  text-align: center;
}
.empty-page h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(38px, 6vw, 76px);
}
@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }
  .phone {
    display: none;
  }
  .kit-shell {
    grid-template-columns: 250px minmax(0, 1fr);
  }
  .side-cart {
    position: static;
    grid-column: 1 / -1;
    max-height: none;
  }
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .hero {
    min-height: 600px;
    padding: 48px;
  }
  .hero-copy {
    width: 52%;
  }
  .hero-image {
    right: 0;
    width: 57%;
  }
}
@media (max-width: 920px) {
  :root {
    --header-height: 70px;
  }
  .site-header {
    padding: 10px 16px;
    grid-template-columns: auto 1fr auto;
    gap: 16px;
  }
  .main-nav {
    justify-self: end;
  }
  .main-nav a:not(:first-child) {
    display: none;
  }
  .cart-trigger {
    min-height: 44px;
    padding-left: 14px;
  }
  .kit-shell {
    width: min(100% - 24px, var(--site-width));
    margin-top: 12px;
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }
  .kit-sidebar {
    position: sticky;
    z-index: 30;
    top: var(--header-height);
    overflow: visible;
    border-radius: 16px;
  }
  .kit-sidebar-head {
    display: none;
  }
  .category-rail {
    padding: 7px;
    display: flex;
    gap: 5px;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .category-rail::-webkit-scrollbar {
    display: none;
  }
  .category-link {
    min-width: max-content;
    min-height: 48px;
    padding: 5px 12px 5px 7px;
    border-radius: 12px;
  }
  .hero {
    min-height: 0;
    padding: 42px;
    display: grid;
  }
  .hero-copy {
    width: 58%;
  }
  .hero-image {
    width: 58%;
  }
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .side-cart {
    position: fixed;
    z-index: 90;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(440px, 100%);
    height: 100dvh;
    max-height: none;
    border-radius: 22px 0 0 22px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.25s ease;
  }
  .side-cart.open {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }
  .side-cart .icon-close {
    display: block;
  }
  .quick-grid {
    grid-template-columns: 1fr;
  }
  .quick-image {
    min-height: 360px;
  }
  .delivery-strip {
    margin-top: 54px;
  }
}
@media (max-width: 640px) {
  .site-header {
    gap: 10px;
  }
  .cart-flow {
    --checkout-step-padding: 18px;
  }
  .checkout-fields, .checkout-conditional {
    gap: 10px;
  }
  .brand {
    font-size: 13px;
  }
  .main-nav {
    display: none;
  }
  .cart-trigger {
    padding: 0 6px;
  }
  .hero {
    padding: 34px 24px 24px;
  }
  .hero-copy {
    width: 100%;
  }
  .hero h1 {
    font-size: clamp(38px, 12vw, 58px);
  }
  .hero-copy > p:not(.eyebrow) {
    margin-top: 22px;
  }
  .primary-action {
    margin-top: 26px;
  }
  .hero-image {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    height: auto;
    margin-top: 24px;
  }
  .hero-navigation {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 14px;
    justify-content: center;
  }
  .kit-benefits {
    grid-template-columns: 1fr;
  }
  .kit-benefit {
    min-height: 130px;
  }
  .kit-menu-intro {
    display: grid;
    gap: 14px;
  }
  .section-heading {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .product-image {
    min-height: 140px;
  }
  .product-meta {
    padding: 14px 12px 8px;
  }
  .product-meta h3, .product-buy strong {
    font-size: 13px;
  }
  .product-buy {
    padding: 8px 12px 14px;
    align-items: stretch;
    flex-direction: column;
  }
  .product-buy button {
    width: 100%;
  }
  .quick-view {
    width: calc(100% - 16px);
    max-height: calc(100dvh - 16px);
    border-radius: 20px;
  }
  .quick-image {
    min-height: 260px;
    padding: 18px;
  }
  .quick-info {
    padding: 28px 22px;
  }
  .delivery-strip {
    width: calc(100% - 24px);
    padding: 38px 24px;
  }
  .delivery-strip > div {
    grid-template-columns: 1fr;
  }
  footer {
    width: calc(100% - 24px);
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
  footer .brand {
    margin: 0 0 10px;
  }
}
@media (max-width: 390px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}
.layer-wrap {
  position: relative;
  width: 52%;
  height: 100%;
}
.hero-layer img {
  width: 100%;
}
.hero-layer {
  --parallax-x: 0px;
  --parallax-y: 0px;
  position: absolute;
  inset: 0;
  pointer-events: none;
  transform: translate3d(var(--parallax-x), var(--parallax-y), 0);
  transition: transform 0.32s cubic-bezier(0.22, 0.7, 0.2, 1);
  will-change: transform;
}
.hero-layer .hero-image {
  z-index: auto;
}
@media (prefers-reduced-motion: reduce) {
  .hero-layer {
    transition: none;
    transform: none;
  }
}
