:root {
  --page-title-size: clamp(30px, 4vw, 36px);
  --page-title-line-height: 1.15;
  --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: #e2292b;
  --color-accent-dark: #ca3420;
  --color-paper: #f4f4ef;
  --color-surface: #ffffff;
  --color-soft: #f8f7f2;
  --color-line: #fff;
  --color-gray: #f3f1e4;
  --shadow-panel: 0 18px 50px rgba(24, 25, 22, 0.07);
  --radius-large: 28px;
  --radius-large-m: 15px;
  --radius-medium: 20px;
  --radius-medium-m: 10px;
  --header-height: 112px;
  --header-height-m: 60px;
  --site-width: 1788px;
  --btn-radius: 30px;
  --border: 1px solid #ecece3;
}
* {
  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;
}
.site-header {
    position: sticky;
    z-index: 50;
    top: 10px;
    width: calc(100% - 32px);
    max-width: var(--site-width);
    min-height: var(--header-height);
    padding: 15px 30px;
    display: flex;
    margin: 0 auto;
    justify-content: space-between;
    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);
    border: var(--border);
}
.top-right {
    display: flex;
    gap: 40px;
}
.working-hours-trigger {
  min-width: 150px;
  padding: 6px 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  border: 0;
  background: transparent;
  color: var(--color-ink);
  text-align: left;
  cursor: pointer;
}
.working-hours-trigger > i {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--color-soft);
  color: var(--color-accent);
  font-size: 14px;
}
.working-hours-trigger > span {
  min-width: 0;
  display: grid;
  gap: 2px;
}
.working-hours-trigger small {
  color: var(--color-muted);
  font-size: 11px;
  white-space: nowrap;
}
.working-hours-trigger strong {
  overflow: hidden;
  font-family: var(--font-display);
  font-size: 14px;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.working-hours-trigger.is-open > i {
  background: #e8f5ee;
  color: #17643c;
}
.working-hours-trigger.is-closed > i {
  background: #fff0ed;
  color: #b44635;
}
.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 .main-nav-phone {
  display: none;
}
.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;
}
.mobile-menu-toggle {
  width: 48px;
  height: 48px;
  padding: 12px;
  display: none;
  place-content: center;
  gap: 5px;
  border: 1px solid var(--color-line);
  border-radius: 17px;
  background: var(--color-paper);
  color: var(--color-ink);
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(39, 25, 18, 0.08);
}
.mobile-menu-toggle span {
  width: 22px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  transition: transform 0.22s ease, opacity 0.2s ease;
}
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.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);
  }
}
/* Promotions shortcode carousel */
.promotions-carousel,
.promotions-grid-section {
  --promotions-gap: 18px;
  margin: clamp(34px, 6vw, 72px) 0;
}
.promotions-carousel {
  --promotions-visible: var(--promotions-columns, 3);
}
.promotions-carousel__header,
.promotions-grid__header {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.promotions-carousel__header h2,
.promotions-grid__header h2 {
  margin: 0;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1.1;
}
.promotions-carousel__controls {
  display: flex;
  gap: 8px;
}
.promotions-carousel__controls button {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line, #deddd5);
  border-radius: 50%;
  color: var(--ink, #20211d);
  background: #fff;
  cursor: pointer;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}
.promotions-carousel__controls button:hover {
  color: #fff;
  background: var(--accent, #e94f37);
  transform: translateY(-2px);
}
.promotions-carousel__viewport {
  overflow: hidden;
  touch-action: pan-y;
}
.promotions-carousel__track {
  display: flex;
  gap: var(--promotions-gap);
  transition: transform .46s cubic-bezier(.22, .7, .2, 1);
  will-change: transform;
}
.promotions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--promotions-gap);
}
.promotion-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(32, 33, 29, .1);
    border-radius: 24px;
    background: var(--color-paper);
}
.promotions-carousel .promotion-card {
  min-width: calc((100% - (var(--promotions-gap) * (var(--promotions-visible) - 1))) / var(--promotions-visible));
  flex: 0 0 calc((100% - (var(--promotions-gap) * (var(--promotions-visible) - 1))) / var(--promotions-visible));
}
.promotions-grid .promotion-card {
  min-width: 0;
}
.promotion-card__image {
    overflow: hidden;
    background: #f3f1eb;
}
.promotion-card__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .45s ease;
}
.promotion-card:hover .promotion-card__image img {
  transform: scale(1.035);
}
.promotion-card__body {
  flex: 1;
  padding: 20px;
}
.promotion-card__body h3 {
  margin: 0 0 10px;
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.15;
}
.promotion-card__description {
  line-height: 1.55;
}
.promotions-carousel__dots {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  gap: 7px;
}
.promotions-carousel__dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 99px;
  background: #cbc8be;
  cursor: pointer;
  transition: width .2s ease, background .2s ease;
}
.promotions-carousel__dots button.active {
  width: 28px;
  background: var(--accent, #e94f37);
}
.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);
}
.working-hours-dialog {
  z-index: 3000;
  width: min(540px, calc(100% - 24px));
  max-height: calc(100dvh - 24px);
  padding: 0;
  border: 0;
  border-radius: 28px;
  background: #fff;
  color: var(--color-ink);
  box-shadow: 0 30px 90px rgba(16, 25, 22, 0.3);
}
.working-hours-dialog::backdrop {
  background: rgba(16, 25, 22, 0.48);
  backdrop-filter: blur(4px);
}
.working-hours-sheet {
  overflow-y: auto;
  max-height: calc(100dvh - 24px);
  padding: 28px;
}
.working-hours-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.working-hours-heading small {
  color: var(--color-accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.working-hours-heading h2 {
  margin: 5px 0 0;
  font-family: var(--font-display);
  font-size: 28px;
}
.working-hours-status {
  margin-top: 22px;
  padding: 18px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  border-radius: 18px;
  background: var(--color-soft);
}
.working-hours-status > i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: var(--color-accent);
}
.working-hours-status strong,
.working-hours-status p {
  display: block;
}
.working-hours-status strong {
  font-family: var(--font-display);
  font-size: 18px;
}
.working-hours-status p {
  margin: 5px 0 0;
  color: var(--color-muted);
  line-height: 1.45;
}
.working-hours-week {
  margin-top: 26px;
}
.working-hours-week h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 17px;
}
.working-hours-list {
  display: grid;
}
.working-hours-row {
  min-height: 44px;
  padding: 9px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--color-line);
}
.working-hours-row.is-today {
  margin: 2px 0;
  border-bottom-color: transparent;
  border-radius: 12px;
  background: var(--color-soft);
}
.working-hours-row span {
  color: var(--color-muted);
}
.working-hours-row.is-today span,
.working-hours-row strong {
  color: var(--color-ink);
}
.working-hours-row em {
  color: var(--color-muted);
  font-style: normal;
}
.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;
}
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);
    touch-action: pan-y;
    will-change: transform;
    aspect-ratio: 1100/300;
}
.hero-slide {
  flex: 0 0 100%;
  border-radius: 0;
}
.hero-background-video {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}
.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,
.site-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,
.site-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: 120px;
    padding: 0 0 0 20px;
}
.utp-top.flex {
  align-items: center;
}
.utp-title {
  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: var(--page-title-size);
  line-height: var(--page-title-line-height);
}
.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: var(--page-title-size);
  line-height: var(--page-title-line-height);
}
.section-heading > p {
  margin: 0;
  color: var(--color-muted);
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.4vw, 24px);
}
.product-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-medium);
  background: var(--color-surface);
}
.product-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 6px;
  pointer-events: none;
}
.product-badge {
  padding: 7px 11px;
  border-radius: 999px;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: var(--border);
}
.product-badge--discount {
  background: var(--color-accent);
}
.product-badge--icon {
  position: relative;
  width: 36px;
  height: 36px;
  padding: 0px;
  display: grid;
  place-items: center;
  background: #fff;
  pointer-events: auto;
  cursor: help;
}
.product-badge--icon img {
  width: 26px;
  height: 26px;
  display: block;
  object-fit: contain;
}
.product-badge--icon:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}
.product-badge-tooltip {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: max-content;
  max-width: min(220px, calc(100vw - 48px));
  padding: 9px 11px;
  border-radius: 10px;
  background: #201f1c;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0;
  text-align: left;
  text-transform: none;
  white-space: normal;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}
.product-badge--icon:hover .product-badge-tooltip,
.product-badge--icon:focus .product-badge-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.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-price,
.quick-info .price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
}
.price-old {
  color: var(--color-muted);
  font-size: 0.72em;
  font-weight: 600;
  text-decoration-thickness: 1px;
}
.price-current {
  white-space: nowrap;
}
.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;
    white-space: nowrap;
}
.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: 0 22px 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;
  font-size: 18px;
}
.cart-items {
  display: grid;
  gap: 5px;
}
.cart-extras {
  padding-top: 20px;
  border-top: 1px solid var(--color-line);
}
.cart-extras > h3 {
  margin: 0 0 14px;
  line-height: 1.3;
  color: var(--color-muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.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-gray);
  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: 1.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;
  border: 1px solid var(--color-gray);
  border-radius: 15px;
  padding: 5px 10px;
}
.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,
.site-field {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--color-gray);
  border-radius: 12px;
  outline: none;
  background: var(--color-paper);
  color: var(--color-ink);
}
.checkout-form textarea {
  resize: vertical;
}
.checkout-form input:focus, .checkout-form select:focus, .checkout-form textarea:focus,
.site-field: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 {
  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;
  padding: 0 24px;
}
.delivery-strip {
  width: min(var(--site-width), calc(100% - 32px));
  margin: 80px auto 0;
  padding: 100px 100px 100px 40%;
  border-radius: var(--radius-large);
  background: #f5ecd8 url(/images/1.png) no-repeat;
  background-position: 20px 66px;
  background-size: 36%;
  position: relative;
}
.delivery-strip > .paralax {
  display: block;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  margin: 0;
  overflow: hidden;
  border-radius: inherit;
  pointer-events: none;
}
.delivery-strip > .paralax img {
  --paralax-x: 0px;
  --paralax-y: 0px;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  transform: translate3d(var(--paralax-x), var(--paralax-y), 0);
  transition: transform 0.28s cubic-bezier(0.22, 0.7, 0.2, 1);
  will-change: transform;
}
.delivery-strip h2 {
  max-width: 18ch;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(24px, 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: 60px auto 0;
    padding: 40px max(24px, calc((100vw - var(--site-width)) / 2));
    display: flex;
    align-items: center;
    gap: 28px;
    background: #31302d;
    border-radius: 30px 30px 0 0;
    flex-wrap: wrap;
}
.copy {
  width: 100%;
}
.copy.flex a {
    color: #ffffff91;
    font-weight: normal;
    font-size: 14px;
}
footer#contacts a.phones-f {
  color: #fff;
  font-size: 24px;
}
footer .brand {
    margin-right: auto;
    max-width: 250px;
}
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);
}
.empty-page h1 {
    margin: 0;
    font-family: var(--font-display);
    font-size: var(--page-title-size);
    line-height: var(--page-title-line-height);
}
.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;
}
.quick-purchase-controls {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 40px 0 0;
}
.product-badge--gift {
  width: 36px;
  height: 36px;
  padding: 0;
  display: grid;
  place-items: center;
  background: #ffffff;
  color: #18794e;
  pointer-events: auto;
  cursor: help;
  border-radius: 5px;
  bottom: 0;
}
.product-badge--gift img {
  display: block;
  width: 33px;
  height: 33px;
  border-radius: 4px;
}
.product-badge--gift:hover .product-badge-tooltip,
.product-badge--gift:focus .product-badge-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.cart-gifts {
  display: grid;
  gap: 5px;
  margin-top: 8px;
}
.cart-item--gift {
  background: #f3fbf6;
  border-color: #bfe6cf;
}
.cart-gift-label,
.cart-gift-icon {
  color: #18794e;
  font-weight: 800;
}
.cart-gift-icon {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
}
.cart-gift-icon img {
  display: block;
  width: 32px;
  height: 32px;
}
.storefront-operational-notice {
    margin: 0 0 16px;
    padding: 14px 16px;
    border: 1px solid #e7b86a;
    border-radius: 14px;
    background: #fff4df;
    color: #6e4510;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.45;
}
.storefront-operational-notice.is-stop {
    border-color: #e3a2a2;
    background: #fff0f0;
    color: #8a2525;
}
body.is-ordering-stopped [data-add-product],
body.is-ordering-stopped [data-quick-add],
body.is-ordering-stopped [data-cart-increase],
body.is-ordering-stopped [data-extra-increase] {
    display: none;
}
.checkout-link:disabled {
    cursor: not-allowed;
    opacity: .55;
}
.cookie-consent {
  position: fixed;
  z-index: 300;
  left: 20px;
  bottom: max(20px, env(safe-area-inset-bottom));
  width: 300px;
  max-width: calc(100vw - 32px);
  padding: 18px;
  border: 1px solid rgba(23, 23, 20, .12);
  border-radius: 18px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 18px 50px rgba(23, 23, 20, .18);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .24s ease, transform .24s ease;
  backdrop-filter: blur(14px);
}
.cookie-consent[hidden] {
  display: none;
}
.cookie-consent.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.cookie-consent p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}
.cookie-consent__accept {
  min-height: 44px;
  margin-top: 14px;
  padding: 0 18px;
  border: 0;
  border-radius: var(--btn-radius);
  background: var(--color-accent);
  color: #fff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}
.cookie-consent__accept:hover {
  background: var(--color-accent-dark);
  transform: translateY(-1px);
}
.cookie-consent__accept:focus-visible {
  outline: 3px solid rgba(224, 77, 49, .24);
  outline-offset: 3px;
}

/* Reviews page. */
.reviews-page {
  width: min(var(--site-width), calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0 100px;
}
.reviews-page__header {
  max-width: 760px;
  margin-bottom: 38px;
}
.reviews-page__header h1 {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: var(--page-title-size);
  line-height: var(--page-title-line-height);
}
.reviews-page__header > p:last-child {
  max-width: 620px;
  margin: 0;
  color: var(--color-muted);
  font-size: 18px;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.review-card {
  display: flex;
  min-width: 0;
  padding: 28px;
  flex-direction: column;
  border: var(--border);
  border-radius: var(--radius-large);
  background: var(--color-surface);
  box-shadow: var(--shadow-panel);
}
.review-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}
.review-card__top > div {
  display: grid;
  gap: 2px;
}
.review-card__top strong,
.review-card__reply strong {
  font-family: var(--font-display);
}
.review-card__top time {
  color: var(--color-muted);
  font-size: 13px;
}
.review-card__stars {
  color: #f4b400;
  font-size: 18px;
  font-style: normal;
  letter-spacing: 2px;
  white-space: nowrap;
}
.review-card__stars i {
  color: #dddcd3;
  font-style: normal;
}
.review-card h2 {
  margin: 22px 0 0;
  font-family: var(--font-display);
  font-size: 22px;
}
.review-card__text {
  margin: 18px 0 0;
  overflow-wrap: anywhere;
  line-height: 1.65;
}
.review-card__reply {
  margin-top: 24px;
  padding: 18px 20px;
  border-radius: var(--radius-medium-m);
  background: var(--color-gray);
}
.review-card__reply p {
  margin: 7px 0 0;
  overflow-wrap: anywhere;
}
.reviews-empty {
  padding: 36px;
  border: var(--border);
  border-radius: var(--radius-large);
  background: var(--color-surface);
  color: var(--color-muted);
  text-align: center;
}
/* Compact review form. */
.review-submit {
    max-width: 640px;
    margin: 0 0 32px;
}
.review-submit__toggle {
  list-style: none;
  cursor: pointer;
}
.review-submit__toggle::-webkit-details-marker {
  display: none;
}
.review-submit__panel {
  margin-top: 16px;
  padding: 22px;
  border: 1px solid var(--color-gray);
  border-radius: var(--radius-medium);
  background: var(--color-surface);
}
.review-submit__intro {
  margin-bottom: 16px;
}
.review-submit__intro h2 {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.2;
}
.review-submit__intro p {
  margin: 0;
  color: var(--color-muted);
  font-size: 14px;
}
.review-form {
  position: relative;
  display: grid;
  gap: 14px;
}
.review-form__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
}
.review-form__field {
  display: grid;
  gap: 6px;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}
.review-form__field > span,
.review-form__field legend {
  font-size: 13px;
  font-weight: 700;
}
.review-form__field small {
  color: var(--color-muted);
  font-weight: 400;
}
.review-form__rating {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: flex-end;
  min-height: 44px;
  gap: 3px;
}
.review-form__rating input {
  position: absolute;
  width: 1px;
  height: 1px;
  clip-path: inset(50%);
  overflow: hidden;
}
.review-form__rating label {
  color: #d6d6cf;
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}
.review-form__rating label:hover,
.review-form__rating label:hover ~ label,
.review-form__rating input:checked ~ label {
  color: var(--color-accent);
}
.review-form__rating input:focus-visible + label {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}
.review-form__privacy {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  color: var(--color-muted);
}
.review-form__privacy input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin: 0;
  accent-color: var(--color-accent);
}
.review-form__submit {
  justify-self: start;
}
.review-form__notice {
  padding: 12px;
  border-radius: 12px;
  font-size: 14px;
}
.review-form__notice--success {
  background: #ebf8e5;
  color: #2f6a26;
}
.review-form__notice--error {
  background: #fff0ed;
  color: #a52d1e;
}
.review-form__trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.site-action {
  margin-top: 0;
  border: 0;
  cursor: pointer;
}
.site-field {
  font-size: 16px;
}









/* Contacts page. */
.contacts-layout{display:grid;grid-template-columns:minmax(240px,.42fr) minmax(0,1fr);gap:40px;margin-top:70px;text-align:left}.contacts-card{align-self:center}.contacts-logo{max-width:220px;margin:0 0 30px}.contacts-logo img{display:block;width:100%;max-height:120px;object-fit:contain;object-position:left}.contacts-list{display:grid;gap:15px}.contact-row{display:flex;align-items:flex-start;gap:10px}.contact-row__icon{flex:0 0 30px;color:var(--color-accent);text-align:center}.contact-row__text{color:inherit;line-height:1.45;text-decoration:none}a.contact-row__text:hover{color:var(--color-accent)}.contacts-map,.contacts-map>div{min-height:500px}.contacts-map>div{position:relative;width:100%;overflow:hidden;border-radius:30px;background:var(--color-background)}.contacts-map__status{position:absolute;inset:50% auto auto 50%;z-index:1;transform:translate(-50%,-50%);color:var(--color-muted)}.contacts-map__status[hidden]{display:none}.contacts-balloon__logo{display:block;max-width:150px;max-height:70px;margin-bottom:10px;object-fit:contain}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: auto minmax(0, 1fr) auto 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 minmax(0, 1fr) auto auto;
    gap: 16px;
  }
  .mobile-menu-toggle {
    display: grid;
  }
  .main-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    display: none;
    width: min(300px, calc(100vw - 32px));
    padding: 9px;
    gap: 0;
    border: 1px solid var(--color-line);
    border-radius: 20px;
    background: var(--color-paper);
    box-shadow: 0 24px 70px rgba(39, 25, 18, 0.2);
  }
  .site-header.mobile-menu-open .main-nav {
    display: grid;
  }
  .main-nav a {
    min-height: 50px;
    padding: 0 14px;
    display: flex;
    align-items: center;
    border-radius: 13px;
    font-weight: 700;
  }
  .main-nav .main-nav-phone {
    display: flex;
    gap: 10px;
    margin-bottom: 8px;
    color: var(--color-accent);
    font-size: 20px;
  }
  .main-nav a::after {
    display: none;
  }
  .main-nav a:hover {
    background: var(--color-soft);
    color: var(--color-accent-dark);
  }
  .promotions-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .working-hours-trigger {
    min-width: 0;
    max-width: 190px;
    justify-self: end;
  }
  .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: 0;
    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: 767px) {
  .top-right {
    display: flex;
    gap: 15px;
}
.empty-page {
    padding: 20px;
}
  .site-header {
    gap: 10px;
  }
  .promotions-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }
  span.logo {
    width: 110px;
  }
  .site-header {
    gap: 6px;
  }
  .working-hours-trigger {
    max-width: 32px;
  }
  .working-hours-trigger > span {
    display: none;
  }
  .cart-trigger {
    gap: 6px;
  }
  .cart-trigger b {
    min-width: 28px;
    height: 28px;
  }
  .mobile-menu-toggle {
    width: 42px;
    height: 42px;
    padding: 10px;
    border-radius: 14px;
  }
  .cart-flow {
    --checkout-step-padding: 18px;
  }
  .checkout-fields, .checkout-conditional {
    gap: 10px;
  }
  .brand {
    font-size: 13px;
  }
  .main-nav {
    display: none;
  }
  .working-hours-trigger {
    max-width: 126px;
    gap: 7px;
  }
  .working-hours-trigger > i {
    width: 32px;
    height: 32px;
  }
  .working-hours-trigger small {
    display: none;
  }
  .working-hours-trigger strong {
    font-size: 10px;
    white-space: normal;
  }
  .cart-trigger {
    padding: 0 6px;
    min-height: auto;
    padding: 5px;
  }
  .hero {
    padding: 34px 24px 24px;
  }
  .hero-copy {
    width: 100%;
  }
  .hero h1 {
    font-size: clamp(26px, 8vw, 58px);
  }
  .hero-copy > p:not(.eyebrow) {
    margin-top: 22px;
    color: #000000;
    line-height: 1.3;
    font-size: 14px;
  }
  .primary-action {
    margin-top: 26px;
  }
  .hero-image {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    height: auto;
    margin-top: 24px;
  }
  .hero-navigation {
    display: none;
  }
  .kit-benefits {
    grid-template-columns: 1fr 1fr;
  }
  .utp-top.flex {
    flex-wrap: wrap;
  }
  .utp-title {
    width: 100%;
    padding: 0;
    font-size: 14px;
    text-align: center;
  }
  .utp-img {
    margin: 0 auto;
    padding: 0 20px;
}
  .utp-title h3 {
    margin-bottom: 0;
  }
  .utp-img img {
    border-radius: 20px;
  }
  .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: 0 22px 28px;
  }
  .quick-purchase-controls {
    margin: 20px 0 0;
  }
  .delivery-strip {
    width: calc(100% - 24px);
    padding: 38px 24px 250px;
    background: #f5ecd8 url(/images/1.png) no-repeat;
    background-position: 0 138%;
    background-size: 100%;
  }
  .delivery-strip > div {
    grid-template-columns: 1fr;
  }
  .paralax {
    display: none;
  }
  .delivery-strip span {
    font-size: 14px;
  }
  footer {
    width: calc(100% - 24px);
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
  footer .brand {
    margin: 0 0 10px;
  }
  .category-link {
    min-height: auto;
    padding: 5px 7px;
    border-radius: 7px;
    font-size: 14px;
  }
  .site-header {
    width: 100%;
    min-height: auto;
    padding: 5px 10px;
    display: flex;
    justify-content: space-between;
    gap: 15px;
    left: 0;
    top: 0;
    border-radius: 0 0 15px 15px;
  }
  .cart-trigger b {
    min-width: auto;
    width: 24px;
    height: 24px;
    padding: 0;
    font-weight: 700;
    font-size: 10px;
  }
  .kit-sidebar {
    position: fixed;
    top: var(--header-height-m);
    border-radius: 12px;
    overflow: auto;
    width: calc(100% - 24px);
    left: 12px;
    border: var(--border);
  }
  main {
    padding: 50px 0 0;
  }
  .eyebrow {
    margin: 0 0 15px;
    color: var(--color-accent);
    font-size: 10px;
  }
  .hero-layer:first-child {
    position: relative;
  }
  .layer-wrap {
    position: relative;
    width: 100%;
    height: auto;
  }
  .delivery-strip > .paralax img {
    height: auto;
    width: 230%;
    max-width: none;
    top: auto;
    left: 0;
    bottom: 0;
  }
  footer .brand {
    margin: 0 0 10px;
    width: 180px;
  }
  footer#contacts a.phones-f {
    color: #fff;
    font-size: 16px;
  }
  .working-hours-heading h2 {
    font-size: 16px;
  }
  .working-hours-status strong {
    font-family: var(--font-display);
    font-size: 14px;
  }
  .working-hours-status p {
    color: #000000;
    font-size: 12px;
  }
  .working-hours-status > i {
    width: 30px;
    height: 30px;
  }
  .working-hours-week h3 {
    font-size: 14px;
  }
  .working-hours-row {
    min-height: auto;
    padding: 5px 10px;
    font-size: 14px;
  }
  .working-hours-row span {
    color: #000;
  }
  .checkout-time-dialog, .working-hours-dialog {
    width: calc(100% - 24px);
    max-width: none;
    margin: 0;
    border-radius: 15px;
    left: 12px;
    top: 12px;
  }
  .icon-close {
    position: absolute;
    top: 12px;
    right: 12px;
  }
  .product-card {
    border-radius: var(--radius-medium-m);
  }
  .kit-menu-intro h1 {
    font-size: var(--page-title-size);
  }
  .catalog-section {
    padding: 10px 0 0;
  }
}

@media (max-width: 620px) {
  .promotions-carousel {
    --promotions-gap: 12px;
  }
  .promotion-card {
    border-radius: 20px;
  }
  .promotions-carousel__controls {
    display: none;
  }
  .promotion-card__body {
    padding: 17px;
  }
}

@media (max-width: 560px) {
  .checkout-time-dialog,
  .working-hours-dialog {
    max-width: none;
    max-height: calc(100dvh - 12px);
    margin: 0;
    border-radius: 26px;
    width: calc(100% - 24px);
  }
  .checkout-time-sheet {
    max-height: calc(100dvh - 12px);
    padding: 20px 16px;
  }
  .working-hours-sheet {
    max-height: calc(100dvh - 12px);
    padding: 22px 18px;
  }
  .checkout-time-wheel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-track {
    transition: none;
  }
  .cart-flight {
    display: none;
  }
  .cart-trigger.cart-received {
    animation: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .promotions-carousel__track {
    transition: none;
  }
  .promotion-card__image img {
    transition: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-layer,
  .delivery-strip > .paralax img {
    transition: none;
    transform: none;
  }
}

@media(max-width:767px){.contacts-layout{grid-template-columns:1fr;gap:28px;margin-top:28px}.contacts-map,.contacts-map>div{min-height:360px}}

@media (max-width: 767px) {
  .reviews-page {
    padding: 28px 0;
  }
  .reviews-page__header {
    margin-bottom: 24px;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .review-card {
    padding: 18px;
  }
  .review-card__top {
    flex-wrap: wrap;
  }
  .review-submit__panel {
    padding: 16px;
  }
  .review-form__row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .review-form__submit {
    width: 100%;
  }
}
