:root {
  --bg: #fffaf2;
  --surface: #fffdf8;
  --surface-strong: #fff6e7;
  --text: #421215;
  --muted: #82605d;
  --burgundy-950: #3b0607;
  --burgundy-900: #510708;
  --burgundy-800: #790a10;
  --burgundy-700: #a40d17;
  --burgundy-600: #bd101c;
  --gold: #f7c74f;
  --gold-strong: #ffd965;
  --gold-dark: #bd7e20;
  --line: #ecd4a8;
  --line-soft: rgba(236, 212, 168, 0.62);
  --green: #0e9c69;
  --orange: #f39a19;
  --red: #ef2b35;
  --shadow-soft: 0 14px 34px rgba(80, 18, 25, 0.12);
  --shadow-card: 0 12px 24px rgba(80, 18, 25, 0.08);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shell: 1520px;
  --gap: 16px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background:
    linear-gradient(180deg, #fffaf2 0, #fffaf2 42%, #fff7ea 100%);
  color: var(--text);
}

button,
input {
  font: inherit;
}

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

button {
  cursor: pointer;
}

a {
  color: inherit;
}

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

.icon {
  width: 21px;
  height: 21px;
  display: inline-block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
  vertical-align: middle;
}

.icon--tiny {
  width: 14px;
  height: 14px;
}

.shell {
  width: min(100% - 52px, var(--shell));
  margin: 0 auto;
}

.storefront {
  min-height: 100vh;
  overflow-x: hidden;
}

.hero {
  position: relative;
  min-height: 154px;
  background:
    radial-gradient(circle at 14% 20%, rgba(244, 83, 49, 0.26), transparent 28%),
    radial-gradient(circle at 88% 20%, rgba(247, 199, 79, 0.12), transparent 24%),
    linear-gradient(135deg, var(--burgundy-950), var(--burgundy-800) 52%, #3a0607);
  color: #fff8e8;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-conic-gradient(from 236deg at 42% 122%, rgba(255, 95, 67, 0.23) 0 1deg, transparent 1deg 9deg);
  opacity: 0.28;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(330px, 0.95fr) minmax(520px, 1.35fr) auto;
  align-items: center;
  gap: 34px;
  min-height: 154px;
  padding: 20px 0 44px;
}

.brand {
  display: grid;
  grid-template-columns: 156px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-width: 0;
  color: #fff;
  text-decoration: none;
}

.brand__photo {
  position: relative;
  display: grid;
  place-items: center;
  width: 156px;
  height: 78px;
  overflow: visible;
  border-radius: 0;
  filter: drop-shadow(0 14px 18px rgba(0, 0, 0, 0.26));
}

.brand__photo img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.brand__copy {
  display: grid;
  min-width: 0;
}

.brand__copy strong {
  font-size: 31px;
  line-height: 1.08;
  font-weight: 950;
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.service {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 4px 13px;
  align-items: center;
  min-width: 0;
}

.service__icon {
  grid-row: span 2;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(247, 199, 79, 0.44);
  border-radius: 999px;
  background: rgba(71, 5, 7, 0.54);
  color: var(--gold);
  box-shadow: inset 0 0 0 1px rgba(189, 16, 28, 0.42);
}

.service strong {
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}

.service span:not(.service__icon) {
  color: rgba(255, 248, 232, 0.72);
  font-size: 13px;
  line-height: 1.35;
}

.hero__quick-actions {
  display: inline-flex;
  gap: 12px;
}

.round-action {
  width: 58px;
  height: 58px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(247, 199, 79, 0.42);
  border-radius: 999px;
  background: rgba(83, 6, 8, 0.42);
  color: var(--gold);
  box-shadow: inset 0 0 0 1px rgba(189, 16, 28, 0.4);
}

.main {
  display: grid;
  gap: 18px;
  padding: 0 0 38px;
}

.home-view {
  display: grid;
  gap: 18px;
}

.home-view[hidden],
.catalog-page[hidden] {
  display: none;
}

.nav-search-row {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(600px, 0.62fr) minmax(360px, 0.38fr);
  gap: 56px;
  align-items: center;
  margin-top: -34px;
}

.nav-pills,
.search {
  min-height: 66px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.98);
  box-shadow: var(--shadow-soft);
}

.nav-pills {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  padding: 8px;
  border-radius: 34px;
  scrollbar-width: none;
}

.nav-pills::-webkit-scrollbar,
.categories::-webkit-scrollbar {
  display: none;
}

.nav-pill {
  position: relative;
  min-height: 50px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 0;
  border-radius: 26px;
  background: transparent;
  color: #5a1a1b;
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
}

.nav-pill.is-active {
  background: linear-gradient(135deg, #8d0710, #b70e18);
  color: #fff;
}

.count-badge {
  min-width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  padding: 0 6px;
  border-radius: 999px;
  background: #c91520;
  color: #fff;
  font-size: 12px;
  line-height: 1;
}

.search {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) 52px;
  align-items: center;
  gap: 14px;
  padding: 8px 8px 8px 21px;
  border-radius: 25px;
  color: rgba(69, 17, 20, 0.72);
}

.search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
  font-size: 15px;
}

.search input::placeholder {
  color: rgba(69, 17, 20, 0.5);
}

.search button {
  width: 52px;
  height: 50px;
  border: 0;
  border-radius: 17px;
  background: linear-gradient(135deg, #8d0710, #b70e18);
  color: #fff;
  box-shadow: 0 8px 16px rgba(141, 7, 16, 0.22);
}

.storefront.is-catalog-page .nav-search-row {
  grid-template-columns: 1fr;
}

.storefront.is-catalog-page .nav-search-row .search {
  display: none;
}

.categories {
  display: grid;
  grid-template-columns: repeat(7, minmax(78px, 1fr));
  gap: 12px;
  overflow-x: auto;
  padding: 2px 2px 8px;
  scrollbar-width: none;
}

.category-card {
  min-width: 78px;
  min-height: 102px;
  display: grid;
  grid-template-rows: 74px auto;
  gap: 7px;
  align-items: start;
  justify-items: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--text);
  transition: transform 160ms ease, color 160ms ease;
}

.category-card:hover,
.category-card.is-active {
  transform: translateY(-2px);
  color: var(--burgundy-800);
}

.category-card:hover .category-art,
.category-card.is-active .category-art {
  border-color: rgba(164, 13, 23, 0.5);
  box-shadow: 0 12px 24px rgba(141, 7, 16, 0.13);
}

.category-card strong {
  position: relative;
  z-index: 1;
  max-width: 96px;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.12;
  text-align: center;
}

.category-art {
  position: relative;
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 35%, #fff 0 34%, #fff8ec 62%, #f6e5ca 100%);
  box-shadow: 0 8px 18px rgba(80, 18, 25, 0.08);
  overflow: hidden;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.product-art {
  position: relative;
  display: block;
  width: 118px;
  height: 86px;
}

.category-art--photo {
  display: grid;
  place-items: center;
  overflow: hidden;
}

.category-art--photo::before,
.category-art--photo::after {
  display: none;
}

.category-art--photo img {
  display: block;
  width: 82%;
  height: 82%;
  object-fit: contain;
  object-position: center center;
  filter: drop-shadow(0 10px 10px rgba(80, 18, 25, 0.12));
}

.catalog-page {
  display: grid;
  gap: 18px;
  padding-bottom: 92px;
}

.catalog-page__head {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.catalog-page__back {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  color: var(--burgundy-800);
  box-shadow: var(--shadow-soft);
}

.catalog-page__back .icon {
  transform: rotate(180deg);
}

.catalog-page__search {
  min-height: 54px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.98);
  box-shadow: var(--shadow-soft);
}

.catalog-page__search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
  font-size: 15px;
}

.catalog-page__search button {
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 50%;
  background: #f5e8d4;
  color: var(--burgundy-800);
  font-size: 18px;
  font-weight: 900;
}

.catalog-page__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.catalog-page-card {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  min-height: 104px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
  color: var(--text);
  text-align: left;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.catalog-page-card:hover {
  transform: translateY(-2px);
  border-color: rgba(164, 13, 23, 0.35);
  box-shadow: var(--shadow-card);
}

.catalog-page-card .category-art {
  flex: 0 0 auto;
}

.catalog-page-card span:last-child {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.catalog-page-card strong {
  color: #3c1012;
  font-size: 17px;
  font-weight: 950;
}

.catalog-page-card small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.catalog-page__empty {
  display: grid;
  gap: 6px;
  padding: 18px;
  border: 1px dashed rgba(164, 13, 23, 0.28);
  border-radius: 18px;
  background: rgba(255, 250, 242, 0.82);
  color: var(--muted);
  text-align: center;
}

.catalog-page__empty strong {
  color: #3c1012;
}

.category-art::before,
.category-art::after,
.product-art::before,
.product-art::after {
  content: "";
  position: absolute;
}

.product-art::before,
.product-art::after {
  filter: drop-shadow(0 14px 14px rgba(80, 18, 25, 0.14));
}

.category-art--shirt::before,
.product-art--shirt::before {
  left: 32px;
  top: 7px;
  width: 50px;
  height: 60px;
  border-radius: 12px 12px 8px 8px;
  background: linear-gradient(135deg, #fff, #e8e8e8);
  box-shadow: 0 14px 18px rgba(80, 18, 25, 0.14);
}

.category-art--shirt::after,
.product-art--shirt::after {
  left: 18px;
  top: 12px;
  width: 78px;
  height: 24px;
  background: linear-gradient(135deg, #f8f8f8, #dedede);
  clip-path: polygon(0 24%, 26% 0, 38% 18%, 62% 18%, 74% 0, 100% 24%, 88% 100%, 12% 100%);
}

.category-art--hoodie::before,
.product-art--hoodie::before {
  left: 28px;
  top: 12px;
  width: 58px;
  height: 58px;
  border-radius: 15px 15px 9px 9px;
  background: linear-gradient(135deg, #6b2227, #a74d58);
  box-shadow: 0 14px 18px rgba(80, 18, 25, 0.16);
}

.category-art--hoodie::after,
.product-art--hoodie::after {
  left: 38px;
  top: 4px;
  width: 36px;
  height: 28px;
  border-radius: 18px 18px 9px 9px;
  border: 7px solid #70252d;
  border-bottom: 0;
}

.category-art--sneakers::before,
.product-art--sneakers::before {
  left: 16px;
  top: 34px;
  width: 80px;
  height: 26px;
  border-radius: 20px 30px 12px 12px;
  background: linear-gradient(135deg, #ffffff, #e4e7ea);
  box-shadow: 0 12px 18px rgba(80, 18, 25, 0.14);
}

.category-art--sneakers::after,
.product-art--sneakers::after {
  left: 39px;
  top: 22px;
  width: 55px;
  height: 23px;
  border-radius: 18px 24px 8px 8px;
  background: linear-gradient(135deg, #ffffff, #eef0f3);
  transform: rotate(4deg);
}

.category-art--bucket::before {
  left: 23px;
  top: 22px;
  width: 64px;
  height: 50px;
  border-radius: 4px 4px 18px 18px;
  background: linear-gradient(135deg, #3189ad, #82b8cc);
  box-shadow: inset 0 -10px 0 rgba(36, 87, 107, 0.22), 0 12px 18px rgba(80, 18, 25, 0.13);
}

.category-art--bucket::after {
  left: 27px;
  top: 6px;
  width: 55px;
  height: 32px;
  border: 6px solid #d9e5e8;
  border-bottom: 0;
  border-radius: 32px 32px 0 0;
}

.category-art--towels::before,
.product-art--towels::before {
  left: 19px;
  top: 15px;
  width: 76px;
  height: 18px;
  border-radius: 9px;
  background: #d8cabd;
  box-shadow:
    0 18px 0 #efe0ca,
    0 36px 0 #c4d1d3,
    0 54px 14px rgba(80, 18, 25, 0.12);
}

.category-art--pot::before,
.product-art--pot::before {
  left: 26px;
  top: 28px;
  width: 62px;
  height: 42px;
  border-radius: 11px 11px 18px 18px;
  background: linear-gradient(135deg, #f8f8f7, #a9acae 55%, #f4f4f4);
  box-shadow: 0 12px 18px rgba(80, 18, 25, 0.14);
}

.category-art--pot::after,
.product-art--pot::after {
  left: 20px;
  top: 22px;
  width: 74px;
  height: 15px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f7f7f6, #b7b7b7);
}

.category-art--bear::before {
  left: 30px;
  top: 19px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #c79252;
  box-shadow:
    -24px 16px 0 -8px #b97d41,
    24px 16px 0 -8px #b97d41,
    -18px -11px 0 -8px #b97d41,
    18px -11px 0 -8px #b97d41,
    0 12px 18px rgba(80, 18, 25, 0.14);
}

.category-art--rod::before {
  left: 16px;
  top: 44px;
  width: 90px;
  height: 4px;
  border-radius: 999px;
  background: #3b251a;
  transform: rotate(-28deg);
}

.category-art--rod::after {
  left: 68px;
  top: 42px;
  width: 27px;
  height: 27px;
  border: 4px solid #1d2229;
  border-radius: 50%;
}

.promo-grid {
  display: grid;
  grid-template-columns: minmax(620px, 1.7fr) minmax(360px, 1fr);
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 4px;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

.promo-grid::-webkit-scrollbar {
  display: none;
}

.promo {
  position: relative;
  scroll-snap-align: start;
  min-height: 244px;
  overflow: hidden;
  border: 1px solid rgba(247, 199, 79, 0.25);
  border-radius: 20px;
  background:
    radial-gradient(circle at 73% 12%, rgba(247, 199, 79, 0.18), transparent 28%),
    linear-gradient(135deg, #850a12, #4c0708);
  color: #fff;
}

.promo::after {
  content: "";
  position: absolute;
  left: -24px;
  bottom: -72px;
  width: 380px;
  height: 190px;
  border: 3px solid rgba(247, 199, 79, 0.16);
  border-color: rgba(247, 199, 79, 0.16) transparent transparent transparent;
  border-radius: 50%;
  transform: rotate(-15deg);
}

.promo__copy {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  gap: 13px;
  max-width: 410px;
  min-height: 244px;
  padding: 32px 40px;
}

.promo h1,
.promo h2,
.catalog h2 {
  margin: 0;
  font-weight: 950;
  line-height: 1.12;
}

.promo h1 {
  font-size: 35px;
}

.promo h2 {
  font-size: 30px;
}

.promo p,
.promo li {
  margin: 0;
  color: rgba(255, 248, 232, 0.88);
  font-size: 15px;
  line-height: 1.55;
}

.promo ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.promo li::before {
  content: "";
  width: 9px;
  height: 9px;
  display: inline-block;
  margin-right: 8px;
  border: 2px solid var(--gold);
  border-radius: 50%;
}

.promo-price strong {
  color: #fff;
  font-size: 24px;
}

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  border-radius: 12px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 900;
}

.button--gold {
  justify-self: start;
  padding: 0 22px;
  background: linear-gradient(135deg, #efb33a, var(--gold-strong));
  color: #64120f;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.18);
}

.button--cart {
  width: 100%;
  color: #fff;
  background: linear-gradient(135deg, #8d0710, #b70e18);
  box-shadow: 0 8px 14px rgba(141, 7, 16, 0.16);
}

.button--cart.is-added {
  background: linear-gradient(135deg, #0b8a5f, #10a979);
}

.product-cart-control {
  min-height: 44px;
}

.product-cart-control .button--cart {
  height: 100%;
}

.product-card-stepper {
  min-height: 44px;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  align-items: stretch;
  overflow: hidden;
  border-radius: 12px;
  background: linear-gradient(135deg, #8d0710, #b70e18);
  color: #fff;
  box-shadow: 0 8px 14px rgba(141, 7, 16, 0.16);
}

.product-card-stepper button,
.product-card-stepper output {
  min-width: 0;
  display: grid;
  place-items: center;
}

.product-card-stepper button {
  border: 0;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 20px;
  font-weight: 950;
}

.product-card-stepper button:active {
  background: rgba(255, 255, 255, 0.18);
}

.product-card-stepper output {
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 14px;
  font-weight: 950;
}

.button--checkout {
  width: 100%;
  min-height: 52px;
  color: #fff;
  background: linear-gradient(135deg, #8d0710, #b70e18);
}

.promo-image {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  user-select: none;
}

.promo-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: right bottom;
  filter: drop-shadow(0 18px 24px rgba(22, 0, 0, 0.28));
}

.promo-image--home {
  right: 22px;
  bottom: -18px;
  width: min(67%, 620px);
  height: 112%;
}

.promo-image--flowers {
  right: 16px;
  bottom: -18px;
  width: min(49%, 340px);
  height: 116%;
}

.promo-fav {
  position: absolute;
  z-index: 3;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: #f4c4b6;
}

.promo--badge-slider {
  isolation: isolate;
  --badge-slider-control-bottom: 18px;
  background:
    radial-gradient(circle at 82% 8%, rgba(247, 199, 79, 0.22), transparent 32%),
    radial-gradient(circle at 24% 88%, rgba(255, 255, 255, 0.08), transparent 30%),
    linear-gradient(135deg, #870812, #5c0809 72%);
}

.badge-slider__stage {
  position: relative;
  z-index: 2;
  height: 100%;
  min-height: 244px;
}

.badge-slide {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  min-height: 244px;
  padding: 26px 26px 54px 34px;
  overflow: hidden;
  border: 0;
  background: transparent;
  color: #fff;
  text-align: left;
  opacity: 0;
  pointer-events: none;
  transform: translateX(18px);
  transition: opacity 260ms ease, transform 260ms ease;
}

.badge-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.badge-slider__badges {
  position: absolute;
  z-index: 6;
  top: 26px;
  left: 34px;
  width: min(calc(100% - 68px), 320px);
  display: flex;
  flex-wrap: nowrap;
  gap: 6px;
  white-space: nowrap;
  pointer-events: none;
}

.badge-slider__badge {
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  color: #fff;
  font-size: 11.5px;
  font-weight: 950;
  line-height: 1;
  box-shadow: 0 9px 18px rgba(0, 0, 0, 0.18);
  animation: badgeSliderPulse 2.45s ease-in-out infinite;
  animation-delay: var(--badge-delay, 0ms);
}

.badge-slider__badge.is-new {
  background: linear-gradient(135deg, #009f72, #10bd88);
}

.badge-slider__badge.is-sale {
  background: linear-gradient(135deg, #ef2734, #b70e18);
}

.badge-slider__badge.is-hit {
  background: linear-gradient(135deg, #f59f0b, #f7c74f);
  color: #5b120d;
}

.badge-slider__badge.is-special {
  background: linear-gradient(135deg, #efb33a, var(--gold-strong));
  color: #5b120d;
}

.badge-slide__copy {
  position: absolute;
  z-index: 3;
  top: 72px;
  bottom: var(--badge-slider-control-bottom);
  left: 34px;
  display: grid;
  align-content: start;
  gap: 7px;
  width: 52%;
  min-width: 0;
  max-width: 260px;
}

.badge-slide__eyebrow {
  color: rgba(255, 229, 158, 0.86);
  font-size: 12px;
  font-weight: 900;
}

.badge-slide__copy > strong {
  color: #fff;
  font-size: 24px;
  font-weight: 950;
  line-height: 1.06;
}

.badge-slide__price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
}

.badge-slide__price b {
  color: #fff;
  font-size: 24px;
  font-weight: 950;
}

.badge-slide__price del {
  color: rgba(255, 238, 212, 0.58);
  font-size: 13px;
  font-weight: 850;
}

.badge-slide__wholesale {
  position: absolute;
  bottom: 0;
  left: 0;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  justify-self: start;
  max-width: 100%;
  min-height: 32px;
  padding: 6px 11px;
  border: 1px solid rgba(247, 199, 79, 0.45);
  border-radius: 999px;
  background: rgba(255, 248, 232, 0.16);
  color: rgba(255, 248, 232, 0.92);
  font-size: 12px;
  font-weight: 850;
}

.badge-slide__wholesale em {
  color: rgba(255, 248, 232, 0.86);
  font-style: normal;
}

.badge-slide__wholesale strong {
  color: #ffe08a;
  font-size: 14px;
}

.badge-slide__media {
  position: absolute;
  z-index: 2;
  top: 36px;
  right: 22px;
  bottom: 68px;
  width: 38%;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.badge-slide__media img {
  width: 96%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  transform: translateY(30px);
  filter: drop-shadow(0 24px 26px rgba(22, 0, 0, 0.28));
  animation: badgeSlideMediaFloat 4.8s ease-in-out infinite;
}

.badge-slider__controls {
  position: absolute;
  z-index: 5;
  right: 24px;
  bottom: var(--badge-slider-control-bottom);
  width: min(174px, 42%);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.badge-slider__arrow,
.badge-slider__dot {
  border: 0;
  cursor: pointer;
}

.badge-slider__arrow {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(247, 199, 79, 0.42);
  border-radius: 999px;
  background: rgba(255, 248, 232, 0.12);
  color: #ffe08a;
}

.badge-slider__arrow.is-prev .icon {
  transform: rotate(180deg);
}

.badge-slider__dots {
  display: flex;
  align-items: center;
  gap: 7px;
}

.badge-slider__dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border-radius: 999px;
  background: rgba(255, 248, 232, 0.48);
  transition: width 160ms ease, background 160ms ease;
}

.badge-slider__dot.is-active {
  width: 24px;
  background: #ffe08a;
}

.label {
  justify-self: start;
  min-height: 27px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

@keyframes badgeSliderPulse {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  48% {
    transform: translateY(-2px) scale(1.035);
  }
}

@keyframes badgeSlideMediaFloat {
  0%,
  100% {
    transform: translateY(30px);
  }
  50% {
    transform: translateY(22px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .badge-slider__badge,
  .badge-slide__media img {
    animation: none;
  }
}


.label--gold {
  color: #64120f;
  background: linear-gradient(135deg, #efb33a, var(--gold-strong));
}

.label--green {
  background: var(--green);
}

.label--red {
  background: var(--red);
}

.label--orange {
  background: var(--orange);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.product-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 10px;
  min-width: 0;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.product-card:hover {
  transform: translateY(-3px);
  border-color: rgba(164, 13, 23, 0.28);
  box-shadow: var(--shadow-card);
}

.product-card:focus-visible {
  outline: 3px solid rgba(247, 199, 79, 0.72);
  outline-offset: 3px;
}

.product-card[hidden] {
  display: none;
}

.product-card .label {
  position: absolute;
  z-index: 2;
  top: 12px;
  left: 12px;
}

.favorite-button {
  position: absolute;
  z-index: 2;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: #a35e5d;
}

.favorite-button.is-active {
  color: var(--burgundy-700);
}

.favorite-button.is-active .icon {
  fill: currentColor;
}

.product-art {
  width: 100%;
  height: auto;
  aspect-ratio: 1.16;
  border-radius: 14px;
  background:
    radial-gradient(circle at 50% 42%, #ffffff 0 31%, #f8efe1 60%, #fff7ea 100%);
  overflow: hidden;
}

.product-art--photo {
  display: grid;
  place-items: center;
  padding: 8px;
}

.product-art--photo::before,
.product-art--photo::after {
  display: none;
}

.product-art--photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 16px 18px rgba(80, 18, 25, 0.14));
}

.product-art--shirt,
.product-art--hoodie,
.product-art--sneakers,
.product-art--container,
.product-art--towels,
.product-art--pot {
  min-height: 132px;
}

.product-art--shirt::before,
.product-art--hoodie::before,
.product-art--sneakers::before,
.product-art--towels::before,
.product-art--pot::before {
  transform: scale(1.36);
  transform-origin: center;
}

.product-art--container::before {
  left: 28%;
  top: 34%;
  width: 47%;
  height: 33%;
  border: 4px solid #b7c6bd;
  border-radius: 7px 7px 18px 18px;
  background: rgba(220, 232, 226, 0.58);
  box-shadow: 0 14px 18px rgba(80, 18, 25, 0.12);
}

.product-art--container::after {
  left: 25%;
  top: 28%;
  width: 54%;
  height: 13%;
  border-radius: 8px;
  background: #a9c9b8;
}

.product-card__copy {
  display: grid;
  gap: 9px;
}

.product-card h3 {
  min-height: 38px;
  margin: 0;
  color: #3c1012;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.28;
}

.price-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.price-row strong {
  color: #3c1012;
  font-size: 20px;
  font-weight: 950;
}

.price-row del {
  color: #9a8982;
  font-size: 13px;
}

.rating {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #78615d;
  font-size: 13px;
}

.rating .icon {
  width: 15px;
  height: 15px;
  fill: #ffac21;
  stroke: #ffac21;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.benefit-card {
  min-height: 98px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  text-decoration: none;
}

.benefit-card__icon {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, #8d0710, #b70e18);
  color: var(--gold);
}

.benefit-card strong,
.benefit-card small {
  display: block;
}

.benefit-card strong {
  font-size: 16px;
  font-weight: 900;
  line-height: 1.28;
}

.benefit-card small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
}

.mobile-nav {
  display: none;
}

body.cart-drawer-open {
  overflow: hidden;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  justify-items: end;
  background: rgba(59, 6, 7, 0.34);
  opacity: 0;
  pointer-events: none;
  overscroll-behavior: contain;
  transition: opacity 180ms ease;
}

.cart-drawer.is-open {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer__panel {
  width: min(420px, 100%);
  height: 100dvh;
  max-height: 100dvh;
  min-height: 0;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto auto;
  gap: 16px;
  padding: 24px;
  background: var(--surface);
  box-shadow: -18px 0 40px rgba(59, 6, 7, 0.22);
  overflow: hidden;
  overscroll-behavior: contain;
  transform: translateX(18px);
  transition: transform 180ms ease;
}

.cart-drawer.is-open .cart-drawer__panel {
  transform: translateX(0);
}

.cart-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-drawer__head strong {
  font-size: 24px;
}

.cart-drawer__head .round-action {
  width: 42px;
  height: 42px;
  color: var(--burgundy-800);
  border-color: var(--line);
  background: var(--surface-strong);
}

.cart-drawer__head .icon {
  transform: rotate(180deg);
}

.cart-drawer__list {
  min-height: 0;
  display: grid;
  align-content: start;
  gap: 12px;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-right: 2px;
  -webkit-overflow-scrolling: touch;
}

.cart-line {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  grid-template-areas:
    "check check icon"
    "thumb info info"
    "thumb stepper price";
  gap: 8px 12px;
  align-items: center;
  padding: 12px 12px 11px;
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  background: #fffaf2;
}

.cart-line.is-wholesale {
  border-color: rgba(11, 138, 95, 0.34);
  background: linear-gradient(135deg, rgba(11, 138, 95, 0.08), #fffaf2 72%);
}

.cart-line.is-excluded {
  opacity: 0.68;
}

.cart-line__check {
  grid-area: check;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-self: start;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.cart-line__check span {
  width: 20px;
  height: 20px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(164, 13, 23, 0.42);
  border-radius: 6px;
  background: #fff;
}

.cart-line__check span::after {
  content: "";
  width: 9px;
  height: 5px;
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  transform: rotate(-45deg) translateY(-1px);
  opacity: 0;
}

.cart-line__check[aria-checked="true"] span {
  border-color: var(--burgundy-700);
  background: linear-gradient(135deg, #8d0710, #b70e18);
}

.cart-line__check[aria-checked="true"] span::after {
  opacity: 1;
}

.cart-line__check em {
  font-style: normal;
}

.cart-line__corner-icon {
  grid-area: icon;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  justify-self: end;
  border: 1px solid rgba(236, 212, 168, 0.82);
  border-radius: 999px;
  background: rgba(164, 13, 23, 0.08);
  color: var(--burgundy-800);
  padding: 0;
  cursor: pointer;
  transition: transform 120ms ease, background 120ms ease, color 120ms ease;
}

.cart-line__corner-icon .icon {
  width: 16px;
  height: 16px;
}

.cart-line__corner-icon:active {
  background: rgba(164, 13, 23, 0.16);
  color: #8d0710;
  transform: scale(0.94);
}

.cart-line__thumb {
  grid-area: thumb;
  align-self: start;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 12px;
  background: linear-gradient(135deg, #fff, #f0dfc4);
  border: 0;
  padding: 4px;
  cursor: pointer;
}

.cart-line__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cart-line__thumb span {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(135deg, #fff, #f0dfc4);
}

.cart-line__info {
  grid-area: info;
  min-width: 0;
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.cart-line__thumb:focus-visible,
.cart-line__info:focus-visible {
  outline: 2px solid rgba(164, 13, 23, 0.38);
  outline-offset: 3px;
}

.cart-line strong {
  display: block;
  font-size: 13px;
  line-height: 1.25;
}

.cart-line small {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
  color: var(--muted);
}

.cart-line b {
  grid-area: price;
  display: grid;
  justify-items: end;
  align-self: center;
  gap: 2px;
  color: #3c1012;
  font-size: 18px;
  line-height: 1;
  white-space: nowrap;
}

.cart-line b del {
  color: #9a8982;
  font-size: 12px;
  font-weight: 800;
}

.qty-stepper {
  grid-area: stepper;
  justify-self: start;
  display: inline-grid;
  grid-template-columns: 34px 38px 34px;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

.qty-stepper button,
.qty-stepper output {
  height: 32px;
  display: grid;
  place-items: center;
}

.qty-stepper button {
  border: 0;
  background: transparent;
  color: var(--burgundy-800);
  font-size: 18px;
  font-weight: 950;
}

.qty-stepper button:disabled {
  color: rgba(66, 18, 21, 0.28);
  cursor: not-allowed;
}

.qty-stepper output {
  border-right: 1px solid var(--line-soft);
  border-left: 1px solid var(--line-soft);
  color: #3c1012;
  font-size: 13px;
  font-weight: 900;
}

.cart-drawer__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface-strong);
}

.cart-drawer__summary-label {
  display: grid;
  gap: 3px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.cart-drawer__threshold {
  color: #8b5f39;
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
}

.cart-drawer__threshold.is-active {
  color: #0b8a5f;
}

.cart-drawer__total {
  display: grid;
  justify-items: end;
  gap: 2px;
  min-width: max-content;
}

.cart-drawer__total strong {
  color: #3c1012;
  font-size: 22px;
  font-weight: 950;
  line-height: 1;
}

.cart-drawer__total del {
  color: #8e7a78;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.1;
}

.cart-drawer__total.is-wholesale strong {
  color: #3c1012;
}

.button--checkout:disabled {
  opacity: 0.58;
  cursor: not-allowed;
  box-shadow: none;
}

body.cabinet-drawer-open,
body.order-modal-open {
  overflow: hidden;
}

.cabinet-drawer {
  position: fixed;
  inset: 0;
  z-index: 24;
  display: grid;
  justify-items: end;
  background: rgba(59, 6, 7, 0.34);
  opacity: 0;
  pointer-events: none;
  overscroll-behavior: contain;
  transition: opacity 180ms ease;
}

.cabinet-drawer.is-open {
  opacity: 1;
  pointer-events: auto;
}

.cabinet-drawer__panel {
  width: min(640px, 100%);
  height: 100dvh;
  max-height: 100dvh;
  min-height: 0;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 16px;
  padding: 24px;
  background:
    radial-gradient(circle at 94% 4%, rgba(247, 199, 79, 0.17), transparent 24%),
    linear-gradient(180deg, #fffdf8, #fff8ed);
  box-shadow: -18px 0 44px rgba(59, 6, 7, 0.24);
  overflow: hidden;
  overscroll-behavior: contain;
  transform: translateX(20px);
  transition: transform 180ms ease;
}

.cabinet-drawer.is-open .cabinet-drawer__panel {
  transform: translateX(0);
}

.cabinet-drawer__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.cabinet-drawer__head > div {
  display: grid;
  gap: 5px;
}

.cabinet-drawer__head span {
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.cabinet-drawer__head strong {
  color: #3c1012;
  font-size: 30px;
  font-weight: 950;
  line-height: 1.05;
}

.cabinet-drawer__head .round-action,
.order-modal__head .round-action {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  color: var(--burgundy-800);
  border-color: var(--line);
  background: var(--surface-strong);
}

.cabinet-drawer__head .icon,
.order-modal__head .icon {
  transform: rotate(180deg);
}

.cabinet-drawer__body {
  min-height: 0;
  display: grid;
  align-content: start;
  gap: 14px;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-right: 2px;
  -webkit-overflow-scrolling: touch;
}

.cabinet-card {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 253, 248, 0.9);
  box-shadow: 0 10px 24px rgba(80, 18, 25, 0.06);
}

.cabinet-card--profile {
  background:
    radial-gradient(circle at 92% 8%, rgba(247, 199, 79, 0.22), transparent 28%),
    linear-gradient(135deg, #8d0710, #4c0708);
  color: #fff;
  border-color: rgba(247, 199, 79, 0.28);
}

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

.cabinet-profile__avatar {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(247, 199, 79, 0.44);
  border-radius: 18px;
  background: rgba(255, 248, 232, 0.13);
  color: var(--gold);
}

.cabinet-profile span:last-child {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.cabinet-profile strong {
  font-size: 20px;
  font-weight: 950;
  line-height: 1.15;
}

.cabinet-profile small {
  color: rgba(255, 248, 232, 0.76);
  font-size: 13px;
  line-height: 1.32;
}

.cabinet-profile__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.cabinet-profile__badge {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 248, 232, 0.16);
  color: #ffe08a;
  font-size: 12px;
  font-weight: 950;
}

.cabinet-profile__badge.is-ready {
  background: rgba(14, 156, 105, 0.18);
  color: #9bf0ce;
}

.cabinet-profile__actions button,
.cabinet-card__head button {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 13px;
  border: 1px solid rgba(236, 212, 168, 0.84);
  border-radius: 12px;
  background: #fff8e8;
  color: var(--burgundy-800);
  font-size: 12px;
  font-weight: 950;
}

.cabinet-auth-card {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  background: linear-gradient(135deg, rgba(247, 199, 79, 0.17), rgba(164, 13, 23, 0.06));
}

.cabinet-auth-card > div:first-child,
.cabinet-card__head > div {
  display: grid;
  gap: 4px;
}

.cabinet-auth-card strong,
.cabinet-card__head strong {
  color: #3c1012;
  font-size: 16px;
  font-weight: 950;
  line-height: 1.2;
}

.cabinet-auth-card small,
.cabinet-card__head small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.35;
}

.cabinet-auth-providers {
  display: flex;
  gap: 8px;
}

.cabinet-auth-providers button {
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 16px;
  color: #fff;
  font-size: 12px;
  font-weight: 950;
}

.cabinet-auth-providers button:nth-child(1) {
  background: #2787f5;
}

.cabinet-auth-providers button:nth-child(2) {
  background: #229ed9;
}

.cabinet-auth-providers button:nth-child(3) {
  background: #7c3aed;
}

.cabinet-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.cabinet-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.cabinet-field {
  display: grid;
  gap: 7px;
}

.cabinet-field span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.cabinet-field input,
.cabinet-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fffdf8;
  color: var(--text);
  outline: none;
  font: inherit;
  font-size: 14px;
}

.cabinet-field input {
  min-height: 46px;
  padding: 0 13px;
}

.cabinet-field textarea {
  min-height: 96px;
  resize: vertical;
  padding: 12px 13px;
}

.cabinet-field input:focus,
.cabinet-field textarea:focus {
  border-color: rgba(164, 13, 23, 0.46);
  box-shadow: 0 0 0 4px rgba(164, 13, 23, 0.08);
}

.cabinet-checkout-summary {
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid rgba(236, 212, 168, 0.72);
  border-radius: 16px;
  background: var(--surface-strong);
}

.cabinet-checkout-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.cabinet-checkout-row b,
.cabinet-wholesale {
  max-width: 65%;
  color: #3c1012;
  text-align: right;
  font-weight: 950;
}

.cabinet-checkout-total {
  display: grid;
  justify-items: end;
  gap: 2px;
}

.cabinet-checkout-total strong {
  font-size: 22px;
  line-height: 1;
}

.cabinet-checkout-total del {
  color: #8e7a78;
  font-size: 13px;
  font-weight: 900;
}

.cabinet-wholesale {
  color: #8b5f39;
}

.cabinet-wholesale.is-active {
  color: #0b8a5f;
}

.cabinet-lines {
  display: grid;
  gap: 8px;
}

.cabinet-line {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 10px;
  border: 1px solid rgba(236, 212, 168, 0.62);
  border-radius: 15px;
  background: #fffaf2;
}

.cabinet-line__thumb,
.order-line__thumb {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 12px;
  background: linear-gradient(135deg, #fff, #f0dfc4);
  padding: 4px;
}

.cabinet-line__thumb img,
.order-line__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cabinet-line__thumb span,
.order-line__thumb span {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(135deg, #fff, #f0dfc4);
}

.cabinet-line__copy,
.order-line__copy {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.cabinet-line__copy strong,
.order-line__copy strong {
  color: #3c1012;
  font-size: 13px;
  font-weight: 950;
  line-height: 1.25;
}

.cabinet-line__copy small,
.order-line__copy small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.25;
}

.cabinet-line b {
  display: grid;
  justify-items: end;
  gap: 2px;
  color: #3c1012;
  font-size: 16px;
  font-weight: 950;
  white-space: nowrap;
}

.cabinet-line b del {
  color: #9a8982;
  font-size: 12px;
  font-weight: 850;
}

.cabinet-submit {
  min-height: 52px;
  border-radius: 16px;
}

.cabinet-status {
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(247, 199, 79, 0.16);
  color: #7a3f12;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.35;
}

.cabinet-status.is-success {
  background: rgba(14, 156, 105, 0.12);
  color: #0b7f58;
}

.cabinet-status.is-error {
  background: rgba(239, 43, 53, 0.1);
  color: #b70e18;
}

.cabinet-targets {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
}

.cabinet-target {
  min-width: 0;
  display: grid;
  gap: 4px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fffdf8;
  color: #3c1012;
  text-align: left;
}

.cabinet-target.is-active {
  border-color: rgba(164, 13, 23, 0.48);
  background: linear-gradient(135deg, rgba(164, 13, 23, 0.09), rgba(247, 199, 79, 0.16));
  box-shadow: 0 10px 20px rgba(80, 18, 25, 0.08);
}

.cabinet-target strong {
  font-size: 13px;
  font-weight: 950;
}

.cabinet-target small,
.cabinet-target em {
  color: var(--muted);
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
  line-height: 1.25;
}

.cabinet-target em {
  color: var(--burgundy-800);
}

.cabinet-orders {
  display: grid;
  gap: 9px;
}

.cabinet-order {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  border: 1px solid rgba(236, 212, 168, 0.72);
  border-radius: 16px;
  background: #fffaf2;
  color: var(--text);
  text-align: left;
}

.cabinet-order span:first-child {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.cabinet-order strong {
  color: #3c1012;
  font-size: 14px;
  font-weight: 950;
}

.cabinet-order small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.cabinet-order__side {
  display: grid;
  justify-items: end;
  gap: 5px;
  flex: 0 0 auto;
}

.cabinet-order-status {
  min-height: 25px;
  display: inline-flex;
  align-items: center;
  padding: 0 9px;
  border-radius: 999px;
  background: rgba(247, 199, 79, 0.2);
  color: #9a5c0e;
  font-size: 11px;
  font-style: normal;
  font-weight: 950;
}

.cabinet-order-status.is-confirmed {
  background: rgba(247, 199, 79, 0.22);
  color: #9a5c0e;
}

.cabinet-order-status.is-done {
  background: rgba(14, 156, 105, 0.12);
  color: #0b7f58;
}

.cabinet-order-status.is-pending {
  background: rgba(189, 16, 28, 0.11);
  color: var(--burgundy-800);
}

.cabinet-order b {
  color: #3c1012;
  font-size: 16px;
  font-weight: 950;
}

.cabinet-empty {
  padding: 13px;
  border: 1px dashed rgba(164, 13, 23, 0.22);
  border-radius: 14px;
  background: rgba(255, 250, 242, 0.72);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.order-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 30;
  background: rgba(59, 6, 7, 0.42);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.order-modal-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.order-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 31;
  width: min(560px, calc(100vw - 36px));
  max-height: min(760px, calc(100dvh - 36px));
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fffdf8;
  box-shadow: 0 28px 70px rgba(59, 6, 7, 0.3);
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
  transform: translate(-50%, calc(-50% + 18px));
  transition: opacity 180ms ease, transform 220ms ease;
}

.order-modal.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%);
}

.order-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.order-modal__head strong {
  color: #3c1012;
  font-size: 22px;
  font-weight: 950;
}

.order-modal__body {
  min-height: 0;
  display: grid;
  align-content: start;
  gap: 12px;
  overflow: auto;
  overscroll-behavior: contain;
}

.order-detail-hero {
  display: grid;
  gap: 10px;
  padding: 16px;
  border-radius: 20px;
  background:
    radial-gradient(circle at 90% 10%, rgba(247, 199, 79, 0.18), transparent 26%),
    linear-gradient(135deg, #8d0710, #4c0708);
  color: #fff8e8;
}

.order-detail-hero div {
  display: grid;
  gap: 4px;
}

.order-detail-hero span {
  color: rgba(255, 224, 138, 0.82);
  font-size: 12px;
  font-weight: 900;
}

.order-detail-hero strong {
  color: #fff;
  font-size: 28px;
  font-weight: 950;
  line-height: 1;
}

.order-detail-hero p {
  margin: 0;
  color: rgba(255, 248, 232, 0.82);
  font-size: 13px;
  line-height: 1.4;
}

.order-detail-hero > b {
  color: #fff;
  font-size: 26px;
  font-weight: 950;
}

.order-detail-code {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 248, 232, 0.14);
}

.order-detail-code strong {
  letter-spacing: 0.18em;
}

.order-lines {
  display: grid;
  gap: 9px;
}

.order-lines__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--maroon);
}

.order-lines__head strong {
  font-size: 16px;
  font-weight: 950;
}

.order-lines__head small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.order-line {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 11px;
  border: 1px solid rgba(236, 212, 168, 0.72);
  border-radius: 16px;
  background: #fffaf2;
}

body.product-modal-open {
  overflow: hidden;
}

.product-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 28;
  background: rgba(59, 6, 7, 0.48);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.product-modal-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.product-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 29;
  width: min(900px, calc(100vw - 48px));
  max-height: min(820px, calc(100dvh - 48px));
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr);
  gap: 6px;
  padding: 10px 12px 14px;
  border: 1px solid rgba(236, 212, 168, 0.82);
  border-radius: 28px;
  background: #fffdf8;
  box-shadow: 0 28px 70px rgba(59, 6, 7, 0.3);
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transform: translate(-50%, calc(-50% + 24px));
  transition: opacity 180ms ease, transform 220ms ease;
}

.product-modal.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%);
}

.product-modal__handle {
  width: 42px;
  height: 4px;
  margin: 0 auto -3px;
  border-radius: 999px;
  background: rgba(66, 18, 21, 0.14);
}

.product-modal__head {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
}

.product-modal__close {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(236, 212, 168, 0.7);
  border-radius: 999px;
  background: rgba(255, 246, 231, 0.86);
  color: var(--burgundy-800);
  box-shadow: 0 14px 24px rgba(80, 18, 25, 0.14);
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  backdrop-filter: blur(12px);
}

.product-modal__body {
  min-height: 0;
  overflow: auto;
  overscroll-behavior: contain;
  padding: 0 2px 2px;
}

.product-modal-card {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(330px, 1fr);
  gap: 18px;
  min-height: 0;
  padding: 12px;
}

.product-modal-card__media {
  position: relative;
  min-height: 400px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 40%, #fff 0 31%, #f8efe1 57%, #fff7ea 100%);
}

.product-modal-card__media img {
  width: 92%;
  height: 92%;
  object-fit: contain;
  filter: drop-shadow(0 22px 28px rgba(80, 18, 25, 0.18));
}

.product-modal-card__pills {
  position: absolute;
  top: 14px;
  left: 14px;
  right: 58px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  flex-wrap: wrap;
}

.product-modal-card__category {
  min-height: 27px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.9);
  color: var(--burgundy-800);
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(80, 18, 25, 0.1);
}

.product-modal-card__copy,
.product-modal-card__details {
  display: grid;
  align-content: start;
  gap: 16px;
  min-width: 0;
}

.product-modal-card__copy {
  padding: 20px 10px 0 0;
}

.product-modal-card__copy h2 {
  max-width: calc(100% - 46px);
  margin: 0;
  color: #3c1012;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.05;
  font-weight: 950;
}

.product-modal-card__copy p {
  max-width: 540px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.product-modal-card__price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px;
}

.product-modal-card__price strong {
  color: #3c1012;
  font-size: 32px;
  font-weight: 950;
  line-height: 1;
}

.product-modal-card__price del {
  color: #9a8982;
  font-size: 16px;
}

.product-modal-price-meta {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 8px;
}

.product-modal-price-meta__item {
  min-height: 48px;
  display: grid;
  align-content: center;
  gap: 2px;
  padding: 8px 12px;
  border: 1px solid rgba(236, 212, 168, 0.82);
  border-radius: 14px;
  background: var(--surface-strong);
}

.product-modal-price-meta__item.is-wholesale {
  background: linear-gradient(135deg, rgba(164, 13, 23, 0.1), rgba(255, 210, 74, 0.2));
}

.product-modal-price-meta__item em {
  color: var(--muted);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0;
}

.product-modal-price-meta__item strong {
  color: #3c1012;
  font-size: 14px;
  font-weight: 950;
  line-height: 1.15;
}

.product-modal-card__details {
  grid-column: 2;
  padding: 0 10px 4px 0;
}

.product-size-picker {
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(236, 212, 168, 0.82);
  border-radius: 18px;
  background: var(--surface-strong);
}

.product-size-picker__top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.product-size-picker__top strong {
  color: #3c1012;
  font-size: 14px;
  font-weight: 950;
}

.product-size-picker__options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-size-chip {
  min-width: 48px;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(116, 31, 40, 0.18);
  border-radius: 13px;
  background: #fffdf8;
  color: #4c1a1b;
  box-shadow: 0 8px 18px rgba(80, 18, 25, 0.08);
  font-size: 14px;
  font-weight: 950;
}

.product-size-chip.is-active {
  border-color: transparent;
  background: linear-gradient(135deg, #8d0710, #bd101c);
  color: #fff;
  box-shadow: 0 12px 22px rgba(164, 13, 23, 0.2);
}

.product-size-chip:active {
  transform: scale(0.96);
}

.product-modal-card__details ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-modal-card__details li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #4c1a1b;
  font-size: 14px;
  font-weight: 800;
}

.product-modal-card__details li::before {
  content: "";
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border: 2px solid var(--gold);
  border-radius: 999px;
}

.product-modal-card__actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: stretch;
}

.product-modal__buy {
  grid-column: 1 / -1;
  min-height: 56px;
  border-radius: 16px;
  font-size: 15px;
}

.product-modal__cart-state {
  min-height: 56px;
  display: grid;
  place-items: center;
  gap: 2px;
  padding: 8px 16px;
  border-radius: 16px;
  background: linear-gradient(135deg, #0b8a5f, #10a979);
  color: #fff;
  box-shadow: 0 14px 26px rgba(11, 138, 95, 0.18);
}

.product-modal__cart-state strong {
  font-size: 14px;
  font-weight: 950;
  line-height: 1.1;
}

.product-modal__cart-state span {
  font-size: 12px;
  font-weight: 850;
  opacity: 0.9;
}

.product-modal-stepper {
  display: grid;
  grid-template-columns: 44px 48px 44px;
  align-items: center;
  min-height: 56px;
  padding: 6px;
  border-radius: 16px;
  background: var(--surface-strong);
  box-shadow: inset 0 0 0 1px rgba(236, 212, 168, 0.72);
}

.product-modal-stepper button,
.product-modal-stepper output {
  height: 40px;
  display: grid;
  place-items: center;
}

.product-modal-stepper button {
  border: 0;
  border-radius: 13px;
  background: transparent;
  color: var(--burgundy-800);
  font-size: 25px;
  font-weight: 950;
  line-height: 1;
}

.product-modal-stepper button:active {
  background: rgba(164, 13, 23, 0.1);
  transform: scale(0.96);
}

.product-modal-stepper output {
  color: #3c1012;
  font-size: 15px;
  font-weight: 950;
}

@media (max-width: 1240px) {
  .hero__inner {
    grid-template-columns: minmax(320px, 1fr) minmax(360px, 1fr);
  }

  .hero__quick-actions {
    display: none;
  }

  .nav-search-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .catalog-page__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .benefits {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 840px) {
  .shell {
    width: min(100% - 24px, var(--shell));
  }

  .hero {
    min-height: auto;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 18px;
    min-height: 224px;
    padding: 22px 0 58px;
  }

  .service-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    overflow: visible;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .service-strip::-webkit-scrollbar {
    display: none;
  }

  .service {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 3px 8px;
  }

  .service:nth-child(3) {
    display: none;
  }

  .service__icon {
    width: 40px;
    height: 40px;
  }

  .service strong {
    font-size: 13px;
    line-height: 1.12;
  }

  .service span:not(.service__icon) {
    font-size: 12px;
    line-height: 1.2;
  }

  .brand {
    grid-template-columns: 126px minmax(0, 1fr);
  }

  .brand__photo {
    width: 126px;
    height: 64px;
  }

  .brand__photo img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }

  .brand__copy strong {
    font-size: 27px;
  }

  .nav-pills {
    display: none;
  }

  .nav-search-row {
    margin-top: -32px;
  }

  .categories {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: 88px;
    margin-right: -12px;
    margin-left: -12px;
    padding: 2px 12px 8px;
  }

  .promo-grid {
    grid-template-columns: 1fr;
    overflow-x: visible;
    padding-bottom: 0;
    scroll-snap-type: none;
  }

  .promo--wide {
    display: none;
  }

  .promo--badge-slider {
    width: 100%;
    min-width: 0;
  }

  .benefits {
    display: none;
  }

  .promo__copy {
    padding: 26px;
  }

  .promo h1 {
    font-size: 30px;
  }

  .promo-image--home {
    opacity: 0.42;
    right: -92px;
    bottom: -18px;
    width: 92%;
    height: 106%;
  }

  .promo-image--flowers {
    opacity: 0.46;
    right: -70px;
    bottom: -20px;
    width: 64%;
    height: 112%;
  }

  .badge-slide {
    padding: 24px 24px 52px;
  }

  .badge-slider__badges {
    top: 24px;
    left: 24px;
    width: min(calc(100% - 48px), 300px);
  }

  .badge-slide__copy {
    top: 58px;
    left: 24px;
    width: 52%;
    max-width: 238px;
  }

  .badge-slide__media {
    top: 38px;
    right: 14px;
    bottom: 64px;
    width: 37%;
  }

  .badge-slider__controls {
    right: 18px;
    width: min(168px, 42%);
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px;
  }

  .product-card {
    padding: 8px;
    border-radius: 16px;
  }

  .product-modal {
    top: calc(64px + env(safe-area-inset-top));
    right: 10px;
    bottom: 0;
    left: 10px;
    width: auto;
    max-height: none;
    padding: 8px 8px calc(12px + env(safe-area-inset-bottom));
    border-radius: 24px 24px 0 0;
    transform: translateY(calc(100% + 24px));
  }

  .product-modal.is-open {
    transform: translateY(0);
  }

  .product-modal-card {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 8px;
  }

  .product-modal-card__media {
    min-height: 220px;
    height: min(36dvh, 320px);
    aspect-ratio: auto;
  }

  .product-modal-card__copy {
    padding: 0 8px;
  }

  .product-modal-card__copy h2 {
    max-width: calc(100% - 44px);
    font-size: 30px;
  }

  .product-modal-card__copy p {
    font-size: 14px;
  }

  .product-modal-card__details {
    grid-column: auto;
    padding: 0 8px 4px;
  }

  .cabinet-drawer__panel {
    width: 100%;
    padding: 20px 18px calc(104px + env(safe-area-inset-bottom));
  }

  .cabinet-drawer__head strong {
    font-size: 28px;
  }

  .cabinet-card {
    padding: 14px;
    border-radius: 18px;
  }

  .cabinet-auth-card {
    grid-template-columns: 1fr;
  }

  .cabinet-form-grid,
  .cabinet-targets {
    grid-template-columns: 1fr;
  }

  .cabinet-line {
    grid-template-columns: 46px minmax(0, 1fr);
  }

  .cabinet-line b {
    grid-column: 2;
    justify-self: start;
  }

  .order-modal {
    top: auto;
    right: 10px;
    bottom: 10px;
    left: 10px;
    width: auto;
    max-height: min(82dvh, 720px);
    border-radius: 24px;
    transform: translateY(calc(100% + 18px));
  }

  .order-modal.is-open {
    transform: translateY(0);
  }

  .product-modal-price-meta__item {
    flex: 1 1 140px;
  }

  .product-art--shirt,
  .product-art--hoodie,
  .product-art--sneakers,
  .product-art--container,
  .product-art--towels,
  .product-art--pot {
    min-height: 120px;
  }

  .benefit-card {
    min-height: 86px;
    padding: 14px;
  }

  .mobile-nav {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 10px;
    z-index: 12;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 4px;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: rgba(255, 253, 248, 0.98);
    box-shadow: 0 18px 36px rgba(80, 18, 25, 0.18);
  }

  .mobile-nav__item {
    position: relative;
    min-height: 58px;
    display: grid;
    justify-items: center;
    align-content: center;
    gap: 4px;
    border: 0;
    border-radius: 22px;
    background: transparent;
    color: #5a1a1b;
    text-decoration: none;
    font-size: 10px;
    font-weight: 850;
  }

  .mobile-nav__item.is-active {
    background: linear-gradient(135deg, #8d0710, #b70e18);
    color: #fff;
  }

  .mobile-nav__item .count-badge {
    position: absolute;
    top: 4px;
    right: 10px;
  }

  .main {
    padding-bottom: 108px;
  }
}

@media (max-width: 420px) {
  .shell {
    width: min(100% - 18px, var(--shell));
  }

  .brand {
    grid-template-columns: 108px minmax(0, 1fr);
    gap: 12px;
  }

  .brand__photo {
    width: 108px;
    height: 56px;
  }

  .brand__copy strong {
    font-size: 24px;
  }

  .search {
    grid-template-columns: 20px minmax(0, 1fr) 46px;
    min-height: 58px;
    padding-left: 16px;
  }

  .search button {
    width: 46px;
    height: 44px;
  }

  .category-card {
    min-height: 96px;
    grid-template-rows: 68px auto;
  }

  .category-art {
    width: 68px;
    height: 68px;
  }

  .service-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service {
    grid-template-columns: 36px minmax(0, 1fr);
  }

  .service__icon {
    width: 36px;
    height: 36px;
  }

  .service strong {
    font-size: 12px;
  }

  .service span:not(.service__icon) {
    font-size: 11px;
  }

  .catalog-page__head {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .catalog-page__back {
    width: 48px;
    height: 48px;
    border-radius: 16px;
  }

  .catalog-page__grid {
    grid-template-columns: 1fr;
  }

  .promo {
    min-height: 218px;
  }

  .badge-slider__stage,
  .badge-slide {
    min-height: 218px;
  }

  .promo__copy {
    min-height: 218px;
    padding: 22px;
  }

  .promo h1 {
    font-size: 27px;
  }

  .promo h2 {
    font-size: 26px;
  }

  .badge-slide {
    padding: 20px 18px 48px;
  }

  .promo--badge-slider {
    --badge-slider-control-bottom: 14px;
  }

  .badge-slider__badges {
    top: 20px;
    left: 18px;
    width: min(calc(100% - 36px), 278px);
    gap: 4px;
  }

  .badge-slider__badge {
    min-height: 22px;
    padding: 0 7px;
    font-size: 10.5px;
  }

  .badge-slide__copy {
    gap: 5px;
    top: 50px;
    left: 18px;
    width: 54%;
    max-width: 192px;
  }

  .badge-slide__copy > strong {
    font-size: 21px;
  }

  .badge-slide__price b {
    font-size: 21px;
  }

  .badge-slide__wholesale {
    min-height: 28px;
    padding: 5px 8px;
    font-size: 11px;
  }

  .badge-slide__media {
    top: 42px;
    right: 8px;
    bottom: 62px;
    width: 36%;
  }

  .badge-slider__controls {
    right: 14px;
    width: min(150px, 44%);
  }

  .product-card h3 {
    font-size: 13px;
  }

  .price-row strong {
    font-size: 18px;
  }

  .button--cart {
    font-size: 13px;
  }

  .product-modal {
    top: calc(44px + env(safe-area-inset-top));
    right: 0;
    left: 0;
    border-right: 0;
    border-left: 0;
  }

  .product-modal-card__media {
    min-height: 210px;
    height: min(34dvh, 260px);
  }

  .product-modal-card__copy h2 {
    font-size: 26px;
  }

  .product-modal-card__price strong {
    font-size: 28px;
  }

  .product-size-chip {
    min-width: 44px;
    min-height: 38px;
    padding: 0 12px;
  }

  .product-modal-card__actions {
    grid-template-columns: 1fr;
  }

  .cabinet-drawer__panel {
    padding-right: 14px;
    padding-left: 14px;
  }

  .cabinet-drawer__head strong {
    font-size: 26px;
  }

  .cabinet-profile {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .cabinet-profile__avatar {
    width: 52px;
    height: 52px;
  }

  .cabinet-checkout-row {
    font-size: 12px;
  }

  .cabinet-checkout-row b,
  .cabinet-wholesale {
    max-width: 58%;
  }

  .cabinet-card__head {
    gap: 8px;
  }

  .cabinet-card__head button {
    padding: 0 10px;
  }

  .cabinet-order {
    gap: 8px;
  }

  .cabinet-order__side {
    max-width: 42%;
  }

  .product-modal-stepper {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
  }
}
