* {
  box-sizing: border-box;
}

@font-face {
  font-family: "Oswald";
  font-style: normal;
  font-weight: 350;
  font-display: block;
  src: url("assets/fonts/oswald-regular.ttf") format("truetype");
}

@font-face {
  font-family: "Oswald";
  font-style: normal;
  font-weight: 300;
  font-display: block;
  src: url("assets/fonts/oswald-light.ttf") format("truetype");
}

@font-face {
  font-family: "Oswald";
  font-style: normal;
  font-weight: 500;
  font-display: block;
  src: url("assets/fonts/oswald-medium.ttf") format("truetype");
}

@font-face {
  font-family: "Oswald";
  font-style: normal;
  font-weight: 600;
  font-display: block;
  src: url("assets/fonts/oswald-semibold.ttf") format("truetype");
}

:root {
  --sheji-yellow: #ffd014;
  --sheji-green: #62dc11;
  --sheji-pink: #f61da0;
  --sheji-black: #000000;
  --sheji-white: #ffffff;

  --green: var(--sheji-green);
  --green-light: #7ae633;
  --green-hover: #83f439;
  --green-dark: #56c10e;
  --pink: var(--sheji-pink);
  --black: var(--sheji-black);
  --yellow: var(--sheji-yellow);
  --yellow-light: #ffe478;

  --duration-search: 360ms;
  --duration-menu-cycle: 760ms;
  --duration-menu-fade: 520ms;
  --duration-expand: 720ms;
  --duration-expand-buffer: 100ms;
  --duration-expand-content: 480ms;
  --duration-expand-content-buffer: 80ms;
  --duration-cta-replay: 520ms;
  --duration-cta-collapse: 420ms;
  --duration-view-transition: 860ms;
  --width-expanded-max: 626px;

  --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --smooth: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-jelly: cubic-bezier(0.34, 2.1, 0.64, 1);
}

html {
  font-family: "Oswald";
}

body,
button,
input,
textarea {
  font: inherit;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background: var(--yellow);
  color: var(--black);
}

button,
input,
textarea {
  letter-spacing: 0;
}

button {
  appearance: none;
}

[hidden] {
  display: none !important;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.home-page {
  position: relative;
  width: 100vw;
  min-height: 100vh;
  overflow: visible;
  background: var(--yellow);
}

.hero-stage {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background: var(--sheji-white);
}

.home-actions {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 30;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 2px;
}

.language-switcher {
  position: fixed;
  left: 12px;
  bottom: 12px;
  z-index: 180;
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border: 4px solid var(--black);
  border-radius: 999px;
  background: var(--sheji-white);
}

.language-switcher__option {
  display: inline-flex;
  min-width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 14px 2px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--black);
  cursor: pointer;
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    opacity 180ms ease,
    transform 220ms var(--spring);
}

.language-switcher__option:hover,
.language-switcher__option.is-active {
  background: var(--green);
}

.language-switcher__option:active {
  transform: scale(0.95);
}

.language-switcher__option:disabled {
  cursor: not-allowed;
  opacity: 0.38;
}

.button-icon-shell {
  display: inline-flex;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  align-items: center;
  justify-content: center;
}

.button-icon {
  display: block;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  overflow: visible;
}

.button-icon--large {
  width: 40px;
  height: 40px;
  flex-basis: 40px;
}

.button-icon path,
.search-menu__suggestion path {
  fill: none;
  stroke: var(--black);
  stroke-width: 4;
  stroke-linecap: square;
  stroke-linejoin: miter;
  vector-effect: non-scaling-stroke;
}

.button {
  --button-width: 194px;
  --button-hover-width: 274px;
  --button-height: 144px;
  --button-hover-height: 144px;
  --button-radius: 72px;

  display: inline-flex;
  width: var(--button-width);
  height: var(--button-height);
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 0;
  overflow: hidden;
  border: 6px solid var(--green-dark);
  border-radius: var(--button-radius);
  background: var(--green-light);
  color: var(--black);
  cursor: pointer;
  font-size: 40px;
  font-weight: 350;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transform-origin: center;
  transition:
    width var(--duration-search) var(--smooth),
    height var(--duration-search) var(--smooth),
    padding var(--duration-search) var(--smooth),
    border-radius var(--duration-search) var(--smooth),
    background-color 180ms ease,
    transform 260ms var(--spring);
  will-change: width, height, transform;
}

.button:hover {
  width: var(--button-hover-width);
  height: var(--button-hover-height);
  background-color: var(--green-hover);
}

.button:active {
  background-color: var(--green);
  transform: scale(0.97);
}

.button:focus-visible,
.button-s:focus-visible,
.language-switcher__option:focus-visible,
.shows-menu__summary:focus-visible,
.shows-menu__event:focus-visible,
.filter-control__trigger:focus-visible,
.filter-control__option:focus-visible,
.cart-status:focus-visible,
.commerce-status__action:focus-visible,
.home-catalogue-link:focus-visible,
.catalogue__back:focus-visible,
.product-card__favorite:focus-visible,
.product-card__detail-link:focus-visible,
.price-pill:focus-visible,
.product-detail__back:focus-visible,
.product-detail__nav:focus-visible,
.product-detail__add:focus-visible,
.product-recommendation-card:focus-visible,
.cart-detail__back:focus-visible,
.cart-detail__shop-link:focus-visible,
.cart-detail__clear:focus-visible,
.cart-item__media:focus-visible,
.cart-item__quantity-button:focus-visible,
.cart-item__remove:focus-visible,
.cart-checkout__field input:focus-visible,
.cart-checkout__field textarea:focus-visible,
.cart-checkout__submit:focus-visible,
.not-found__action:focus-visible,
.show-detail__back:focus-visible,
.size-selector__trigger:focus-visible,
.size-selector__option:focus-visible,
.search-menu__input:focus-visible,
.search-menu__suggestion:focus-visible {
  outline: 4px solid var(--black);
  outline-offset: 6px;
}

.button--shows {
  --button-width: 244px;
  --button-hover-width: min(1080px, calc(100vw - 16px));
  --button-hover-height: 820px;

  position: relative;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 64px 4px;
  transform-origin: right top;
}

.button--shows:hover,
.button--shows.is-open {
  width: var(--button-hover-width);
  height: var(--button-hover-height);
  align-items: flex-start;
  justify-content: flex-start;
  padding: 50px 64px 54px;
  background-color: var(--green-hover);
}

.shows-menu__summary {
  display: flex;
  width: auto;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  outline: 0;
  cursor: pointer;
  list-style: none;
  transform: translateX(4px);
}

.button--shows:hover .shows-menu__summary,
.button--shows.is-open .shows-menu__summary {
  justify-content: flex-start;
  transform: none;
}

.shows-menu__summary::-webkit-details-marker {
  display: none;
}

.shows-menu__icon {
  display: inline-flex;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  align-items: center;
  justify-content: center;
}

.shows-menu__icon img {
  display: block;
  width: 40px;
  height: 40px;
}

.shows-menu__label {
  display: inline-flex;
  padding-bottom: 4px;
}

.shows-menu__content {
  display: none;
  position: absolute;
  top: 118px;
  left: 64px;
  right: 64px;
  width: auto;
  min-width: 0;
  max-height: calc(100% - 132px);
  flex-direction: column;
  gap: 18px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.button--shows:hover .shows-menu__content,
.button--shows.is-open .shows-menu__content {
  display: flex;
  opacity: 1;
  pointer-events: auto;
}

.shows-menu__eyebrow {
  margin: 0;
  padding: 0 2px;
  font-size: 18px;
  font-weight: 500;
  line-height: 0.95;
  text-transform: uppercase;
}

.shows-menu__list {
  display: flex;
  width: 100%;
  min-width: 0;
  flex-direction: column;
  gap: 0;
}

.shows-menu__event {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr) 56px;
  min-height: 128px;
  align-items: center;
  gap: 24px;
  padding: 12px 0;
  border-top: 6px solid var(--green-dark);
  color: var(--black);
  text-decoration: none;
  transition:
    background-color 180ms ease,
    padding 220ms var(--spring);
}

.shows-menu__event:last-child {
  border-bottom: 6px solid var(--green-dark);
}

.shows-menu__event:hover {
  background: rgb(255 255 255 / 20%);
  padding-right: 14px;
  padding-left: 14px;
}

.shows-menu__thumb {
  display: block;
  width: 112px;
  height: 112px;
  flex: 0 0 112px;
  overflow: hidden;
  border: 4px solid var(--green-dark);
  background: var(--sheji-white);
}

.shows-menu__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shows-menu__event-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 5px;
}

.shows-menu__badge {
  width: fit-content;
  padding: 5px 8px 6px;
  background: var(--black);
  color: var(--green);
  font-size: 14px;
  font-weight: 500;
  line-height: 0.9;
  text-transform: uppercase;
}

.shows-menu__date,
.shows-menu__meta,
.shows-menu__summary-line {
  overflow: hidden;
  font-size: 16px;
  font-weight: 300;
  line-height: 1;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.shows-menu__summary-line {
  display: -webkit-box;
  max-width: 680px;
  font-size: 17px;
  line-height: 1.08;
  text-transform: none;
  white-space: normal;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.shows-menu__title {
  overflow: hidden;
  font-size: 42px;
  font-weight: 500;
  line-height: 0.95;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.shows-menu__arrow {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
}

.shows-menu__empty {
  margin: 0;
  padding: 24px 0;
  border-top: 6px solid var(--green-dark);
  font-size: 32px;
  line-height: 1;
}

.home-catalogue-link {
  --catalogue-link-x: 0;
  --catalogue-link-scale-x: 1;
  --catalogue-link-scale-y: 1;

  position: fixed;
  right: 8px;
  bottom: 8px;
  z-index: 120;
  display: inline-flex;
  width: 144px;
  height: 144px;
  align-items: center;
  justify-content: center;
  border: 6px solid var(--yellow-light);
  border-radius: 72px;
  background: var(--yellow);
  color: var(--black);
  cursor: pointer;
  transform: translate3d(var(--catalogue-link-x), 0, 0)
    scale(var(--catalogue-link-scale-x), var(--catalogue-link-scale-y));
  transform-origin: right center;
  transition:
    width var(--duration-search) var(--smooth),
    background-color 180ms ease,
    transform 620ms var(--ease-jelly),
    opacity 180ms ease;
  will-change: transform;
}

.home-catalogue-link:hover {
  width: 194px;
  border-color: #fff19a;
  background: #ffe05a;
}

.home-catalogue-link:active {
  --catalogue-link-scale-x: 0.97;
  --catalogue-link-scale-y: 0.97;
}

.home-catalogue-link img {
  width: 48px;
  height: 48px;
  transition: transform var(--duration-search) var(--smooth);
}

.home-catalogue-link.is-docked {
  --catalogue-link-x: calc(100% + 18px);
  --catalogue-link-scale-x: 0.82;
  --catalogue-link-scale-y: 1.08;

  opacity: 0.96;
  pointer-events: none;
}

.search-menu {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  width: auto;
  height: 70vh;
  pointer-events: none;
}

.search-menu > * {
  pointer-events: auto;
}

.search-menu__surface {
  position: relative;
  margin: 0;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
  transform-origin: right top;
}

.button--search {
  --button-width: 144px;
  --button-hover-width: 800px;
  --search-open-width: 920px;
  --search-open-height: 718px;
  --search-shell-padding: 46px;

  width: var(--button-width);
  height: var(--button-height);
  padding: var(--search-shell-padding);
}

.button-icon-shell--search {
  position: absolute;
  top: var(--search-shell-padding);
  right: var(--search-shell-padding);
}

.search-menu__slot--idle {
  display: flex;
  min-width: 0;
  flex: 1 1 auto;
}

.search-menu__slot--head {
  flex: 0 0 auto;
}

.search-menu__slot--body {
  display: none;
  width: 100%;
  flex-direction: column;
  gap: 46px;
}

.search-menu__slot--body > * {
  opacity: 0;
  transition: opacity 140ms ease;
}

.search-menu__prompt {
  display: flex;
  width: 0;
  height: fit-content;
  margin-bottom: 0;
  padding-bottom: 8px;
  overflow: hidden;
  opacity: 0;
  line-height: 1.16;
  transition:
    width var(--duration-search) var(--smooth),
    opacity 160ms ease;
}

.search-menu:not(.is-open):not(.is-closing) .search-menu__input {
  width: 0;
  min-width: 0;
  padding: 0;
  opacity: 0;
  pointer-events: none;
}

.search-menu:not(.is-open):not(.is-closing):hover .search-menu__surface {
  width: var(--button-hover-width);
  justify-content: space-between;
  background-color: var(--green-hover);
}

.search-menu:not(.is-open):not(.is-closing):hover .search-menu__prompt {
  width: 100%;
  opacity: 1;
}

.search-menu.is-open .search-menu__surface,
.search-menu.is-closing .search-menu__surface {
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 46px;
  padding: var(--search-shell-padding);
}

.search-menu.is-open .search-menu__surface {
  width: var(--search-open-width);
  height: var(--search-open-height);
}

.search-menu.is-closing .search-menu__surface {
  width: var(--button-width);
  height: var(--button-height);
  padding: var(--search-shell-padding);
}

.search-menu.is-closing .search-menu__input {
  width: 0;
  height: 0;
  padding: 0;
  line-height: 0;
  opacity: 0;
  pointer-events: none;
}

.search-menu.is-open .search-menu__slot--idle,
.search-menu.is-closing .search-menu__slot--idle {
  display: none;
}

.search-menu.is-open .search-menu__input {
  width: 720px;
  opacity: 1;
  pointer-events: auto;
}

.search-menu.is-open .search-menu__slot--body,
.search-menu.is-closing .search-menu__slot--body {
  display: flex;
}

.search-menu.is-open .search-menu__slot--body > * {
  opacity: 1;
  transition: opacity 140ms ease 120ms;
}

.search-menu.is-closing .search-menu__slot--body > * {
  opacity: 0;
  transition-delay: 0ms;
}

.search-menu__row {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}

.search-menu__input {
  width: 720px;
  min-width: 0;
  padding: 0 0 8px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--black);
  font-size: 40px;
  font-weight: 350;
  line-height: 1.16;
}

.search-menu__input:focus-visible {
  outline: 0;
}

.search-menu__input::placeholder {
  color: var(--black);
  opacity: 1;
}

.search-menu__input::-webkit-search-cancel-button {
  appearance: none;
}

.search-menu__divider {
  width: 100%;
  height: 6px;
  flex: 0 0 6px;
  border-radius: 999px;
  background: var(--green-dark);
}

.search-menu__suggestion {
  display: flex;
  width: 100%;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--black);
  cursor: pointer;
  font-size: 40px;
  font-weight: 350;
  line-height: 1;
}

.search-menu__suggestion svg {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
}

.button-s {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 212px;
  height: 34px;
  padding: 6px 16px 8px;
  border: 0;
  border-radius: 6px;
  background-color: var(--green);
  color: var(--black);
  cursor: pointer;
  font-size: 20px;
  font-weight: 500;
  line-height: 0.9;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.button-s__icon {
  display: inline-flex;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  align-items: center;
  justify-content: center;
}

.button-s__icon svg {
  width: 20px;
  height: 20px;
  display: block;
}

.button-s__icon path {
  fill: none;
  stroke: currentColor;
  stroke-width: 4;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.collection-menu {
  position: absolute;
  top: 0;
  left: 96px;
  z-index: 10;
  width: 626px;
  height: var(--collection-menu-height, 1080px);
  overflow: visible;
  transform: none;
  touch-action: none;
}

.collection-card {
  --collection-card-x: 0px;
  --collection-card-y: 1340px;
  --collection-card-scale: 1;
  --collection-card-gap: 32px;

  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  width: 626px;
  height: fit-content;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--collection-card-gap);
  margin: 0;
  padding: 36px;
  overflow: hidden;
  border: 6px solid #ffdf5d;
  border-radius: 108px;
  background-color: var(--yellow);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(var(--collection-card-x), var(--collection-card-y), 0)
    scale(var(--collection-card-scale));
  transform-origin: top left;
  transition:
    transform var(--duration-menu-cycle) var(--spring),
    opacity var(--duration-menu-fade) ease;
  will-change: transform, opacity;
}

.collection-card.is-menu-active {
  --collection-card-y: 295px;

  z-index: 3;
  opacity: 1;
  pointer-events: auto;
  cursor: default;
}

.collection-card.is-menu-next {
  --collection-card-y: -228px;

  z-index: 2;
  opacity: 1;
  pointer-events: auto;
}

.collection-card.is-menu-prev {
  --collection-card-y: 818px;

  z-index: 1;
  opacity: 1;
  pointer-events: auto;
}

.collection-card.is-menu-hidden {
  z-index: 0;
  opacity: 0;
  pointer-events: none;
  transition:
    transform var(--duration-menu-cycle) var(--spring),
    opacity 320ms ease 220ms;
}

.collection-card.is-menu-hidden.is-hidden-above {
  --collection-card-y: -760px;
}

.collection-card.is-menu-hidden.is-hidden-below {
  --collection-card-y: 1340px;
}

.collection-card.is-restoring-menu,
.collection-card.is-restoring-menu .collection-card__cta {
  transition: none !important;
}

.collection-card__expanded-actions {
  display: flex;
  width: 100%;
  height: 0;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  max-height: 0;
  opacity: 0;
  flex-shrink: 0;
  margin-bottom: calc(var(--collection-card-gap) * -1);
  overflow: hidden;
  pointer-events: none;
  transform: translate3d(-105%, 0, 0);
  transition:
    transform var(--duration-expand-content) var(--ease-jelly),
    height var(--duration-expand-content) var(--smooth),
    margin-bottom var(--duration-expand-content) var(--smooth),
    max-height var(--duration-expand-content) var(--smooth),
    opacity var(--duration-expand-content) var(--smooth);
  will-change: transform, height, opacity;
}

.collection-card__expanded-copy {
  grid-area: expanded;
  display: flex;
  max-height: 0;
  flex-direction: column;
  gap: 24px;
  overflow: hidden;
  opacity: 0;
  padding: 0;
  pointer-events: none;
  transition:
    opacity var(--duration-expand-content) var(--smooth) 80ms,
    max-height var(--duration-expand-content) var(--smooth),
    padding var(--duration-expand-content) var(--smooth);
}

.collection-card__figure {
  width: 530px;
  max-width: 100%;
  margin: 0;
}

.collection-card__image {
  display: block;
  width: 100%;
  aspect-ratio: 530 / 329;
  background: #d9d9d9;
  object-fit: contain;
}

.collection-card__caption {
  margin: 8px 0 0;
  padding: 0 2px;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.12;
  text-transform: uppercase;
}

.collection-card__content {
  display: grid;
  width: 100%;
  min-height: 0;
  flex: 1 1 auto;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "title meta"
    "description description"
    "expanded expanded";
  align-items: start;
  gap: 32px 12px;
  overflow: hidden;
  padding: 4px;
  transition:
    gap var(--duration-expand-content) var(--smooth),
    padding var(--duration-expand-content) var(--smooth);
}

.collection-card__header {
  grid-area: title;
  display: contents;
}

.collection-card__eyebrow {
  display: none;
  margin: 0 0 4px;
  padding: 0 16px;
  font-size: 16px;
  font-weight: 300;
  line-height: 0.95;
  text-transform: uppercase;
}

.collection-card__title {
  grid-area: title;
  min-width: 0;
  max-width: 100%;
  margin: 0;
  padding: 0 8px;
  overflow-wrap: normal;
  font-size: var(--collection-card-title-size, 128px);
  font-weight: 600;
  letter-spacing: -2.56px;
  line-height: 0.9;
  text-transform: uppercase;
  white-space: nowrap;
  word-break: normal;
  transition:
    font-size var(--duration-expand-content) var(--smooth),
    margin-bottom var(--duration-expand-content) var(--smooth);
}

html[lang="ru"] .collection-card__title {
  font-size: var(--collection-card-title-size, 92px);
  letter-spacing: -1px;
}

html[lang="ru"] .collection-card__description {
  max-height: 48px;
  -webkit-line-clamp: 2;
}

.collection-card__meta {
  grid-area: meta;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0;
  padding: 0 18px;
  font-size: 24px;
  font-weight: 300;
  letter-spacing: -0.48px;
  line-height: 0.9;
  text-transform: lowercase;
  white-space: nowrap;
}

.collection-card__meta strong {
  display: inline-flex;
  width: fit-content;
  padding: 5px 6px 7px;
  background: var(--green);
  font-size: 36px;
  font-weight: 500;
  line-height: 0.9;
  text-transform: uppercase;
}

.collection-card__description,
.collection-card__expanded-paragraph {
  margin: 0;
  padding: 0 16px;
  font-size: 20px;
  font-weight: 350;
  line-height: 1.2;
}

.collection-card__description {
  grid-area: description;
  display: -webkit-box;
  max-height: 96px;
  max-width: none;
  margin-top: 0;
  overflow: hidden;
  padding: 0 24px 0;
  opacity: 1;
  letter-spacing: 0.2px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  transition:
    opacity var(--duration-expand-content) var(--smooth),
    max-height var(--duration-expand-content) var(--smooth),
    margin-top var(--duration-expand-content) var(--smooth);
}

.collection-card__cta {
  position: relative;
  z-index: 2;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  gap: 12px;
  width: 100%;
  min-width: 0;
  height: 144px;
  margin-top: auto;
  padding: 52px;
  border: 6px solid var(--green-dark);
  border-radius: 72px;
  background-color: var(--green);
  font-size: 40px;
  font-weight: 350;
  line-height: 0.9;
  text-transform: none;
  transition:
    left var(--duration-expand-content) var(--smooth),
    right var(--duration-expand-content) var(--smooth),
    bottom var(--duration-expand-content) var(--smooth),
    gap var(--duration-expand-content) var(--smooth),
    padding var(--duration-expand-content) var(--smooth),
    border-radius var(--duration-expand-content) var(--smooth),
    background-color 180ms ease,
    transform 260ms var(--spring);
  will-change: gap, padding, transform;
}

.collection-card__cta:hover:not(.is-label-replay) {
  padding-right: 52px;
  padding-left: 52px;
  background-color: var(--green-hover);
  transform: scale(1.03);
}

.collection-card__cta:active {
  transform: scale(0.97);
}

.collection-card__cta .button-s__icon {
  width: 40px;
  height: 40px;
  flex-basis: 40px;
  order: -1;
  transition: opacity var(--duration-expand-content) var(--smooth);
}

.collection-card__cta .button-s__icon svg {
  width: 40px;
  height: 40px;
}

.collection-card__cta .button-s__icon path {
  fill: currentColor;
  stroke: none;
}

.collection-card__cta-label {
  display: inline-flex;
  height: fit-content;
  padding: 0 12px 4px;
  letter-spacing: -0.8px;
}

.collection-card.is-menu-next .collection-card__cta,
.collection-card.is-menu-prev .collection-card__cta {
  border: 0;
  background-color: var(--yellow-light);
}

@keyframes collection-cta-label-replay {
  0%,
  100% {
    background-color: var(--green);
    transform: scale(1);
  }

  45%,
  55% {
    background-color: var(--green-hover);
    transform: scale(1.03);
  }
}

.collection-card__cta.is-label-replay {
  animation: collection-cta-label-replay var(--duration-cta-replay) var(--smooth);
}

@keyframes collection-cta-click-collapse {
  0% {
    gap: 36px;
    padding-right: 98px;
    padding-left: 98px;
    opacity: 1;
    transform: scaleX(1);
  }

  60% {
    opacity: 0.45;
  }

  100% {
    gap: 0;
    padding-right: 0;
    padding-left: 0;
    opacity: 0;
    transform: scaleX(0);
  }
}

.collection-card__cta.is-click-collapse {
  overflow: hidden;
  pointer-events: none;
  transform-origin: center;
  animation: collection-cta-click-collapse var(--duration-cta-collapse) var(--smooth) forwards;
}

.collection-card.is-animating {
  position: fixed;
  z-index: 100;
  left: var(--card-left, 0);
  top: var(--card-top, 0);
  width: var(--card-width, 734px);
  height: var(--card-height, 402px);
  margin: 0;
  cursor: default;
  pointer-events: auto;
  transform: none;
  transform-origin: top left;
  transition:
    left var(--duration-expand) var(--smooth),
    top var(--duration-expand) var(--smooth),
    width var(--duration-expand) var(--smooth),
    height var(--duration-expand) var(--smooth),
    padding var(--duration-expand) var(--smooth),
    border-width var(--duration-expand) var(--smooth),
    border-radius var(--duration-expand) var(--smooth),
    transform var(--duration-expand) var(--smooth),
    opacity 220ms ease;
}

.collection-card.is-expanded {
  position: fixed;
  z-index: 100;
  max-width: none;
  gap: 0;
  padding: 8px 0 0;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: none;
  border-width: 0;
  border-radius: 0;
  background-color: var(--yellow);
  opacity: 1;
  transform: none;
  transform-origin: top left;
  transition:
    padding var(--duration-expand-content) var(--smooth),
    border-width var(--duration-expand-content) var(--smooth),
    border-radius var(--duration-expand-content) var(--smooth);
}

.collection-card.is-expanded::-webkit-scrollbar,
.collection-card.is-expanding-content.is-expanded::-webkit-scrollbar,
.collection-card.is-collapsing-content.is-expanded::-webkit-scrollbar {
  width: 0;
}

.collection-card.is-expanded .collection-card__expanded-actions,
.collection-card.is-expanding-content .collection-card__expanded-actions,
.collection-card.is-collapsing-content .collection-card__expanded-actions {
  height: 190px;
  margin-bottom: 0;
  max-height: 190px;
  opacity: 1;
  pointer-events: auto;
}

.collection-card.is-expanded .collection-card__expanded-actions {
  position: sticky;
  top: 0;
  z-index: 4;
}

.collection-card.is-expanded .collection-card__expanded-actions,
.collection-card.is-expanding-content.is-expanded .collection-card__expanded-actions {
  transform: translate3d(0, 0, 0);
}

.collection-card.is-collapsing-content:not(.is-expanded) .collection-card__expanded-actions {
  transform: translate3d(-105%, 0, 0);
}

.button--expanded {
  --button-width: 309px;
  --button-hover-width: 389px;

  justify-content: center;
  padding: 0 52px 4px;
}

.collection-card__back {
  border-left-width: 0;
  border-radius: 0 72px 72px 0;
  gap: 18px;
}

.collection-card__designer {
  flex: 0 0 auto;
  display: none;
  margin: 0;
}

.collection-card:not(.is-expanded) .collection-card__designer {
  display: none !important;
  visibility: hidden;
  pointer-events: none;
}

.collection-card.is-expanded .collection-card__designer,
.collection-card.is-expanding-content.is-expanded .collection-card__designer,
.collection-card.is-collapsing-content.is-expanded .collection-card__designer {
  display: block;
}

.collection-card__designer-face {
  position: relative;
  display: inline-grid;
  grid-template-areas:
    "mark"
    "copy"
    "sticker";
  grid-template-columns: minmax(118px, 190px);
  width: auto;
  min-height: 0;
  align-items: center;
  justify-content: center;
  column-gap: 0;
  row-gap: 10px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--black);
  cursor: pointer;
  text-align: right;
  text-transform: uppercase;
}

.collection-card__designer-face:hover,
.collection-card__designer-face:focus-visible {
  background: transparent;
  outline: 0;
}

.collection-card__designer-face:hover .collection-card__designer-copy,
.collection-card__designer-face:focus-visible .collection-card__designer-copy {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.collection-card__designer-mark {
  grid-area: mark;
  justify-self: center;
  position: relative;
  display: block;
  width: 118px;
  height: 118px;
  border: 0;
  border-radius: 0;
  background: transparent;
  overflow: hidden;
}

.collection-card__designer-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.collection-card__designer-initials {
  display: none;
  width: 100%;
  height: 100%;
  place-items: center;
  font-size: 24px;
  font-weight: 600;
  line-height: 0.9;
}

.collection-card__designer-mark.is-fallback .collection-card__designer-initials {
  display: grid;
}

.collection-card__designer-mark.is-fallback .collection-card__designer-image {
  display: none;
}

.collection-card__designer-copy {
  grid-area: copy;
  justify-self: center;
  max-width: 190px;
  font-size: 28px;
  font-weight: 600;
  line-height: 0.82;
  text-align: center;
}

.collection-card__designer-sticker {
  grid-area: sticker;
  align-self: start;
  justify-self: center;
  position: static;
  max-width: 210px;
  min-width: min(174px, 100%);
  padding: 14px 18px 17px;
  border: 5px solid var(--black);
  background: transparent;
  font-size: 28px;
  font-weight: 600;
  line-height: 0.9;
  text-align: center;
  white-space: normal;
}

.collection-card.is-game-arming .collection-card__designer-face {
  background: transparent;
}

.collection-card.is-game-active {
  overflow: hidden;
}

.collection-card.is-game-active .collection-card__expanded-actions,
.collection-card.is-game-active .collection-card__content,
.collection-card.is-game-active .collection-card__cta {
  opacity: 0;
  pointer-events: none;
}

body.collection-game-open .home-actions,
body.collection-game-open .language-switcher,
body.collection-game-open .home-catalogue-link {
  opacity: 0;
  pointer-events: none;
}

.collection-game {
  --collection-game-accent: var(--pink);
  --collection-game-accent-text: var(--black);
  --collection-game-secondary: var(--green);
  --collection-game-paper: var(--yellow-light);
  position: absolute;
  inset: 0;
  z-index: 8;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 18px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.08) 0 2px, transparent 2px 34px),
    linear-gradient(0deg, rgba(0, 0, 0, 0.08) 0 2px, transparent 2px 34px),
    var(--yellow);
  color: var(--black);
  outline: 0;
}

.collection-game::before,
.collection-game::after {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  font-weight: 600;
  line-height: 0.85;
  text-transform: uppercase;
}

.collection-game::before {
  content: "SHEJI PLAY TEST / NO DISCOUNT / NO RULES";
  top: 10px;
  right: -62px;
  width: 300px;
  padding: 8px 12px 10px;
  border: 4px solid var(--black);
  background: var(--collection-game-accent);
  color: var(--collection-game-accent-text);
  font-size: 18px;
  text-align: center;
  transform: rotate(9deg);
}

.collection-game::after {
  content: "";
  right: 16px;
  bottom: 16px;
  width: 96px;
  height: 96px;
  border: 5px solid var(--black);
  background:
    linear-gradient(90deg, var(--black) 0 8px, transparent 8px 16px) 0 0 / 16px 16px,
    var(--collection-game-secondary);
  opacity: 0.95;
}

.collection-game--fruity {
  --collection-game-accent: var(--pink);
  --collection-game-secondary: var(--green);
  --collection-game-paper: #fff2a6;
}

.collection-game--stone {
  --collection-game-accent: var(--black);
  --collection-game-accent-text: var(--yellow);
  --collection-game-secondary: var(--green);
  --collection-game-paper: var(--yellow-light);
}

.collection-game--water {
  --collection-game-accent: var(--green);
  --collection-game-secondary: var(--pink);
  --collection-game-paper: #fff1f9;
}

.collection-game--bloom {
  --collection-game-accent: var(--pink);
  --collection-game-secondary: var(--yellow-light);
  --collection-game-paper: #ffffff;
}

.collection-game--chrome {
  --collection-game-accent: var(--black);
  --collection-game-accent-text: var(--yellow);
  --collection-game-secondary: var(--pink);
  --collection-game-paper: #ffffff;
}

.collection-game__hud {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 108px;
  grid-template-columns: minmax(0, 1fr) minmax(150px, 230px) auto;
  align-items: stretch;
  gap: 10px;
}

.collection-game__copy,
.collection-game__controls,
.collection-game__exit,
.collection-game__restart,
.collection-game__end-exit,
.collection-game__result {
  border: 4px solid var(--black);
  box-shadow: 6px 6px 0 var(--black);
  background: var(--collection-game-paper);
  color: var(--black);
}

.collection-game__copy {
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 12px 16px 14px;
  background:
    linear-gradient(90deg, var(--collection-game-accent) 0 12px, transparent 12px),
    var(--collection-game-paper);
}

.collection-game__title,
.collection-game__score,
.collection-game__controls,
.collection-game__result {
  margin: 0;
  text-transform: uppercase;
}

.collection-game__title {
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 600;
  line-height: 0.85;
}

.collection-game__score {
  width: fit-content;
  padding: 4px 8px 6px;
  border: 3px solid var(--black);
  background: var(--collection-game-secondary);
  font-size: 24px;
  font-weight: 500;
  line-height: 0.95;
  box-shadow: 3px 3px 0 var(--black);
}

.collection-game__controls {
  display: grid;
  align-content: center;
  padding: 12px 14px 14px;
  background:
    repeating-linear-gradient(-8deg, transparent 0 10px, rgba(0, 0, 0, 0.08) 10px 12px),
    var(--collection-game-paper);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.02;
}

.collection-game__exit,
.collection-game__restart,
.collection-game__end-exit {
  display: inline-flex;
  min-width: 116px;
  align-items: center;
  justify-content: center;
  padding: 0 20px 4px;
  background: var(--collection-game-secondary);
  box-shadow: 6px 6px 0 var(--black);
  cursor: pointer;
  font-size: 28px;
  font-weight: 500;
  line-height: 0.9;
  text-transform: uppercase;
}

.collection-game__exit:hover,
.collection-game__exit:focus-visible,
.collection-game__restart:hover,
.collection-game__restart:focus-visible,
.collection-game__end-exit:hover,
.collection-game__end-exit:focus-visible {
  background: var(--pink);
  outline: 0;
}

.collection-game__stage {
  position: relative;
  z-index: 1;
  min-height: 320px;
  flex: 1 1 auto;
  overflow: hidden;
  border: 6px solid var(--black);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.1) 0 4px, transparent 4px 40px),
    var(--yellow);
  box-shadow: 10px 10px 0 var(--black);
  touch-action: none;
  outline: 0;
}

.collection-game__stage::before {
  content: "";
  position: absolute;
  inset: 10px;
  z-index: 1;
  border: 3px solid var(--black);
  pointer-events: none;
  mix-blend-mode: multiply;
}

.collection-game__stage::after {
  content: "SHEJI ARCADE";
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 1;
  padding: 5px 9px 7px;
  border: 3px solid var(--black);
  background: var(--collection-game-accent);
  pointer-events: none;
  font-size: 17px;
  font-weight: 600;
  line-height: 0.9;
  text-transform: uppercase;
}

.collection-game__stage--fruity::after {
  content: "FRUIT LABEL TEST";
}

.collection-game__stage--stone::after {
  content: "STONE IMPACT LAB";
  color: var(--yellow);
}

.collection-game__stage--water::after {
  content: "WATER LEAK RUN";
}

.collection-game__stage--bloom::after {
  content: "BLOOM COURT";
}

.collection-game__stage--chrome::after {
  content: "CHROME LANE";
  color: var(--yellow);
}

.collection-game__canvas {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.collection-game__end {
  position: absolute;
  inset: auto 24px 24px;
  z-index: 3;
  display: grid;
  gap: 10px;
}

.collection-game__result {
  padding: 16px 18px 18px;
  background:
    linear-gradient(90deg, var(--collection-game-secondary) 0 18px, transparent 18px),
    var(--pink);
  font-size: clamp(32px, 6vw, 64px);
  font-weight: 600;
  line-height: 0.9;
}

.collection-game__end-actions {
  display: flex;
  gap: 10px;
}

.collection-game__end-actions button {
  min-height: 74px;
  flex: 1 1 0;
}

.collection-card.is-expanded .collection-card__content,
.collection-card.is-expanding-content.is-expanded .collection-card__content,
.collection-card.is-collapsing-content.is-expanded .collection-card__content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  flex: 0 0 auto;
  min-height: 0;
  gap: 0;
  overflow: visible;
  padding: 28px 0;
}

.collection-card.is-expanded .collection-card__header,
.collection-card.is-expanding-content.is-expanded .collection-card__header,
.collection-card.is-collapsing-content.is-expanded .collection-card__header {
  order: 1;
  display: flex;
  width: 100%;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin: 36px 0 0;
  padding: 0 64px;
}

.collection-card.is-expanded .collection-card__title,
.collection-card.is-expanding-content.is-expanded .collection-card__title,
.collection-card.is-collapsing-content.is-expanded .collection-card__title {
  order: initial;
  min-width: 0;
  flex: 1 1 auto;
  margin: 0;
  padding: 0;
  font-size: 128px;
  letter-spacing: -2.56px;
  line-height: 0.9;
  white-space: normal;
}

html[lang="ru"] .collection-card.is-expanded .collection-card__title,
html[lang="ru"] .collection-card.is-expanding-content.is-expanded .collection-card__title,
html[lang="ru"] .collection-card.is-collapsing-content.is-expanded .collection-card__title {
  font-size: 78px;
  letter-spacing: -1.2px;
}

.collection-card.is-expanded .collection-card__meta,
.collection-card.is-expanding-content.is-expanded .collection-card__meta,
.collection-card.is-collapsing-content.is-expanded .collection-card__meta {
  position: static;
  order: 2;
  align-items: flex-start;
  gap: 6px;
  margin: 24px 0 0;
  padding: 0 72px;
  font-size: 24px;
  letter-spacing: -0.48px;
  line-height: 0.9;
  text-align: left;
}

.collection-card.is-expanded .collection-card__meta strong,
.collection-card.is-expanding-content.is-expanded .collection-card__meta strong,
.collection-card.is-collapsing-content.is-expanded .collection-card__meta strong {
  padding: 5px 6px 7px;
  font-size: 36px;
  letter-spacing: 0;
  line-height: 0.9;
}

.collection-card.is-expanded .collection-card__eyebrow,
.collection-card.is-expanding-content.is-expanded .collection-card__eyebrow,
.collection-card.is-collapsing-content.is-expanded .collection-card__eyebrow {
  order: 3;
  display: block;
  margin: 44px 0 0;
  padding: 0 72px;
  font-size: 40px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.9;
  text-transform: uppercase;
}

.collection-card.is-expanded .collection-card__description,
.collection-card.is-expanding-content.is-expanded .collection-card__description,
.collection-card.is-collapsing-content.is-expanded .collection-card__description {
  order: 4;
  display: block;
  max-height: 360px;
  max-width: none;
  width: auto;
  margin-top: 24px;
  overflow: visible;
  padding: 0 72px;
  font-size: 24px;
  opacity: 1;
  pointer-events: auto;
  -webkit-box-orient: initial;
  -webkit-line-clamp: initial;
}

.collection-card.is-expanded .collection-card__expanded-copy,
.collection-card.is-expanding-content.is-expanded .collection-card__expanded-copy,
.collection-card.is-collapsing-content.is-expanded .collection-card__expanded-copy {
  order: 5;
  width: 100%;
  max-height: 3600px;
  flex: 1 1 auto;
  gap: 16px;
  overflow: visible;
  opacity: 1;
  padding: 16px 8px 0;
  pointer-events: auto;
}

.collection-card.is-expanded .collection-card__expanded-paragraph,
.collection-card.is-expanding-content.is-expanded .collection-card__expanded-paragraph,
.collection-card.is-collapsing-content.is-expanded .collection-card__expanded-paragraph {
  width: auto;
  max-width: none;
  padding: 0 72px;
  font-size: 24px;
  line-height: 1.2;
  transition: font-size var(--duration-expand-content) var(--smooth);
}

.collection-card.is-expanded .collection-card__slider,
.collection-card.is-expanding-content.is-expanded .collection-card__slider,
.collection-card.is-collapsing-content.is-expanded .collection-card__slider {
  display: flex;
  gap: 16px;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 64px 8px;
  scroll-padding-inline: 64px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.collection-card.is-expanded .collection-card__slider::-webkit-scrollbar,
.collection-card.is-expanding-content.is-expanded .collection-card__slider::-webkit-scrollbar,
.collection-card.is-collapsing-content.is-expanded .collection-card__slider::-webkit-scrollbar {
  display: none;
}

.collection-card.is-expanded .collection-card__figure,
.collection-card.is-expanding-content.is-expanded .collection-card__figure,
.collection-card.is-collapsing-content.is-expanded .collection-card__figure {
  display: flex;
  min-width: min(760px, calc(100% - 96px));
  flex: 0 0 min(760px, calc(100% - 96px));
  flex-direction: column;
  gap: 10px;
  scroll-snap-align: start;
}

.collection-card.is-expanded .collection-card__image,
.collection-card.is-expanding-content.is-expanded .collection-card__image,
.collection-card.is-collapsing-content.is-expanded .collection-card__image {
  display: block;
  width: 100%;
  min-height: 329px;
  max-height: 520px;
  border-radius: 72px;
  background: var(--yellow-light);
  object-fit: contain;
}

.collection-card.is-expanded .collection-card__caption,
.collection-card.is-expanding-content.is-expanded .collection-card__caption,
.collection-card.is-collapsing-content.is-expanded .collection-card__caption {
  padding: 0 8px;
  color: var(--black);
}

.collection-card.is-expanding-content.is-expanded .collection-card__expanded-copy {
  transition:
    opacity 260ms var(--smooth) 140ms,
    max-height var(--duration-expand-content) var(--smooth),
    padding var(--duration-expand-content) var(--smooth);
}

.collection-card.is-collapsing-content:not(.is-expanded) .collection-card__expanded-copy {
  transition:
    opacity 160ms var(--smooth),
    max-height var(--duration-expand-content) var(--smooth),
    padding var(--duration-expand-content) var(--smooth);
}

.collection-card.is-expanded .collection-card__cta,
.collection-card.is-expanding-content.is-expanded .collection-card__cta,
.collection-card.is-collapsing-content.is-expanded .collection-card__cta {
  position: absolute;
  top: auto;
  right: auto;
  left: 48px;
  bottom: 48px;
  height: 144px;
  --button-width: 334px;
  --button-hover-width: 414px;
  justify-content: center;
  min-width: var(--button-width);
  width: var(--button-width);
  opacity: 0;
  pointer-events: none;
}

.collection-card.is-expanded .collection-card__cta .button-s__icon,
.collection-card.is-expanding-content.is-expanded .collection-card__cta .button-s__icon,
.collection-card.is-collapsing-content.is-expanded .collection-card__cta .button-s__icon {
  width: 0;
  flex-basis: 0;
  opacity: 0;
}

.collection-card.is-collapsing-content {
  padding: 8px 0 0;
  border-width: 0;
  border-radius: 0;
}

.collection-card.is-collapsing-shell {
  padding: 36px;
  border-width: 6px;
  border-radius: 108px;
}

.collection-card.is-collapsing-shell .collection-card__expanded-actions {
  height: 0;
  margin-bottom: calc(var(--collection-card-gap) * -1);
  max-height: 0;
  opacity: 0;
  pointer-events: none;
}

.collection-view-open {
  overflow: hidden;
}

.collection-view-open .language-switcher,
.collection-view-closing .language-switcher {
  left: calc(var(--width-expanded-max) + 24px);
}

.collection-view-open .collection-menu {
  pointer-events: none;
}

.collection-view-closing .collection-menu {
  pointer-events: none;
}

.collection-view-open .collection-card.is-expanded,
.collection-view-open .collection-card.is-animating {
  pointer-events: auto;
}

.collection-view-open .collection-card:not(.is-expanded):not(.is-animating) {
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-320px, 295px, 0) scale(0.72);
  transition:
    transform var(--duration-view-transition) var(--spring),
    opacity 420ms ease 300ms;
}

.collection-view-closing .collection-card:not(.is-expanded):not(.is-animating) {
  pointer-events: none;
  transition:
    transform var(--duration-view-transition) var(--spring),
    opacity 1ms linear;
}

.collection-view-closing .collection-card.is-menu-next:not(.is-expanded):not(.is-animating) {
  opacity: 1;
  --collection-card-y: -228px;
}

.collection-view-closing .collection-card.is-menu-prev:not(.is-expanded):not(.is-animating) {
  opacity: 1;
  --collection-card-y: 818px;
}

.collection-view-open .home-actions,
.collection-view-closing .home-actions {
  z-index: 110;
  opacity: 1;
  pointer-events: auto;
}

.collection-view-open .home-collage {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.collection-view-closing .home-collage {
  z-index: 105;
  top: 84px;
  right: clamp(180px, 16vw, 320px);
  bottom: 188px;
  width: min(34vw, 650px);
  opacity: 1;
  pointer-events: auto;
}

.home-collage {
  position: absolute;
  top: 164px;
  right: clamp(150px, 14vw, 280px);
  bottom: 100px;
  z-index: 5;
  width: min(36vw, 690px);
  min-width: 650px;
  pointer-events: auto;
}

.home-collage__stage {
  position: relative;
  width: 100%;
  height: 100%;
  margin-left: auto;
  touch-action: pan-y;
}

.collage-card {
  --base-rotate: var(--look-rotate-desktop, 0deg);
  --base-scale: 1;
  --hover-scale: 1;
  --cursor-x: 0px;
  --cursor-y: 0px;
  --entry-x: 0px;
  --entry-y: 0px;
  --entry-opacity: 1;
  --look-delay: 0ms;
  --scroll-x: 0px;
  --scroll-y: 0px;
  --scroll-rotate: 0deg;

  position: absolute;
  top: var(--look-y-desktop, 50%);
  left: var(--look-x-desktop, 50%);
  z-index: var(--look-z-desktop, 1);
  display: block;
  width: var(--look-w-desktop, 32%);
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--black);
  cursor: pointer;
  opacity: var(--entry-opacity);
  pointer-events: none;
  text-decoration: none;
  transform:
    translate3d(-50%, -50%, 0)
    translate3d(var(--entry-x), var(--entry-y), 0)
    translate3d(
      calc(var(--scroll-x) + var(--cursor-x)),
      calc(var(--scroll-y) + var(--cursor-y)),
      0
    )
    rotate(calc(var(--base-rotate) + var(--scroll-rotate)))
    scale(calc(var(--base-scale) * var(--hover-scale)));
  transform-origin: center;
  transition:
    opacity 260ms ease var(--look-delay),
    transform 760ms var(--spring) var(--look-delay);
  will-change: transform, opacity;
}

.collage-card:hover {
  --hover-scale: 1.07;
}

.collage-card:active {
  --hover-scale: 1.03;
}

.collage-card:focus-visible {
  outline: 4px solid var(--green-dark);
  outline-offset: 8px;
}

.collage-card img {
  display: block;
  width: 100%;
  height: auto;
  user-select: none;
  pointer-events: none;
}

.look-item__hotspot {
  position: absolute;
  top: var(--hotspot-y, 50%);
  left: var(--hotspot-x, 50%);
  z-index: 2;
  display: block;
  width: max(44px, var(--hotspot-current-w, 56%));
  height: max(44px, var(--hotspot-current-h, 56%));
  border-radius: 999px;
  cursor: pointer;
  pointer-events: auto;
  transform: translate3d(-50%, -50%, 0);
}

.look-item__info {
  position: absolute;
  top: var(--hotspot-y, 50%);
  left: calc(var(--hotspot-x, 50%) + var(--hotspot-info-offset, 28%) + 12px);
  display: grid;
  min-width: 174px;
  max-width: 220px;
  gap: 3px;
  padding: 12px 16px 14px;
  border: 4px solid var(--black);
  border-radius: 24px;
  background: var(--yellow);
  color: var(--black);
  opacity: 0;
  pointer-events: none;
  text-align: left;
  transform: translate3d(10px, -50%, 0) scale(0.96);
  transition:
    opacity 180ms ease,
    transform 220ms var(--spring);
}

.collage-card:hover .look-item__info,
.collage-card:focus-visible .look-item__info {
  opacity: 1;
  transform: translate3d(0, -50%, 0) scale(1);
}

.look-item__collection,
.look-mobile-panel__collection {
  font-size: 14px;
  font-weight: 300;
  line-height: 0.95;
  text-transform: uppercase;
}

.look-item__name,
.look-mobile-panel__name {
  font-size: 28px;
  font-weight: 500;
  line-height: 0.9;
  text-transform: uppercase;
}

.look-item__price,
.look-mobile-panel__price {
  font-size: 22px;
  font-weight: 350;
  line-height: 0.95;
}

.look-mobile-panel {
  display: none;
}

.diagonal-banner {
  --banner-height: clamp(104px, 8.9vw, 136px);
  --banner-width: clamp(980px, 92vw, 1580px);
  --banner-gap: clamp(22px, 2vw, 36px);
  --banner-speed: 18s;

  position: absolute;
  right: max(-420px, -20vw);
  bottom: 118px;
  z-index: 3;
  width: var(--banner-width);
  height: var(--banner-height);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--pink);
  color: var(--sheji-white);
  font-size: clamp(92px, 8.1vw, 126px);
  font-weight: 600;
  line-height: 0.78;
  letter-spacing: 0;
  box-shadow: none;
  contain: paint;
  text-transform: uppercase;
  transform: rotate(-30deg);
  transform-origin: center;
  pointer-events: none;
}

.diagonal-banner__track {
  display: flex;
  width: max-content;
  min-width: 200%;
  flex: 0 0 auto;
  align-items: center;
  animation: diagonal-banner-marquee var(--banner-speed) linear infinite;
  will-change: transform;
}

.diagonal-banner__group {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: var(--banner-gap);
  padding-right: var(--banner-gap);
}

.diagonal-banner__item {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  white-space: nowrap;
}

.diagonal-banner__item::after {
  content: none;
}

@keyframes diagonal-banner-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.catalogue {
  position: relative;
  z-index: 20;
  min-height: 3756px;
  background: var(--yellow);
  color: var(--black);
}

.catalogue__toolbar {
  position: sticky;
  top: 0;
  z-index: 60;
  display: flex;
  min-height: 160px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 8px;
  background: transparent;
}

.catalogue__intro,
.catalogue__controls {
  display: flex;
  align-items: flex-start;
}

.catalogue__intro {
  min-width: 0;
  gap: 8px;
}

.catalogue__back {
  display: inline-flex;
  width: 144px;
  height: 144px;
  flex: 0 0 144px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--black);
}

.catalogue__back img {
  width: 48px;
  height: 48px;
}

.catalogue__heading {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 6px;
}

.catalogue__heading h1 {
  margin: 0;
  padding: 0 8px;
  font-size: clamp(84px, 6.67vw, 128px);
  font-weight: 600;
  letter-spacing: -2.56px;
  line-height: 0.9;
  white-space: nowrap;
}

.catalogue__heading p {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  margin: 0;
  padding: 0 16px;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -1.34px;
  line-height: 0.9;
}

.catalogue__heading mark {
  padding: 2px 2px 4px;
  background: var(--green);
  color: var(--black);
}

.catalogue__controls {
  position: relative;
  justify-content: flex-end;
  gap: 2px;
}

.filter-control {
  --filter-control-trigger-width: 194px;
  --filter-control-trigger-hover-width: 274px;
  --filter-control-option-width: 132px;
  --filter-control-option-padding-x: 42px;
  --filter-control-active-option-width: 132px;
  --filter-control-active-padding-x: 42px;
  --filter-control-duration: 325ms;

  display: inline-flex;
  flex: 0 0 auto;
  align-items: flex-start;
  border-radius: 72px;
  isolation: isolate;
}

.filter-control--colour {
  --filter-control-trigger-width: 214px;
  --filter-control-trigger-hover-width: 330px;
  --filter-control-option-width: 180px;
  --filter-control-active-option-width: 180px;
}

html[lang="ru"] .filter-control--colour {
  --filter-control-option-width: 212px;
  --filter-control-option-padding-x: 20px;
  --filter-control-active-option-width: 212px;
  --filter-control-active-padding-x: 20px;
}

html[lang="ru"] .filter-control--colour .filter-control__option {
  font-size: 36px;
}

.filter-control--price {
  --filter-control-trigger-width: 214px;
  --filter-control-trigger-hover-width: 310px;
  --filter-control-option-width: 268px;
  --filter-control-option-padding-x: 34px;
  --filter-control-active-option-width: 268px;
  --filter-control-active-padding-x: 34px;
}

.filter-control__trigger,
.filter-control__option {
  display: inline-flex;
  height: 144px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--black);
  cursor: pointer;
  font-size: 40px;
  font-weight: 350;
  line-height: 1;
  white-space: nowrap;
  transform-origin: right center;
  transition:
    max-width var(--filter-control-duration) var(--spring),
    min-width var(--filter-control-duration) var(--spring),
    padding var(--filter-control-duration) var(--spring),
    border-width var(--filter-control-duration) var(--spring),
    border-radius var(--filter-control-duration) var(--spring),
    background-color var(--filter-control-duration) var(--spring),
    opacity 180ms ease,
    transform var(--filter-control-duration) var(--spring);
  will-change: max-width, min-width, padding, opacity, transform;
}

.filter-control__trigger {
  order: 1;
  max-width: var(--filter-control-trigger-width);
  min-width: var(--filter-control-trigger-width);
  padding: 0;
  gap: 24px;
  border: 6px solid var(--green-dark);
  border-radius: 10000px;
  background: var(--green-light);
}

.filter-control__trigger:hover {
  max-width: var(--filter-control-trigger-hover-width);
  min-width: var(--filter-control-trigger-hover-width);
  background: var(--green-hover);
}

.filter-control__trigger:active {
  background: var(--green);
  transform: scale(0.97);
}

.filter-control__trigger > .text-shell {
  padding-bottom: 4px;
}

.filter-control__option {
  order: 0;
  max-width: 0;
  min-width: 0;
  padding: 0;
  border: 0 solid var(--green-dark);
  border-radius: 36px;
  background: var(--green);
  opacity: 0;
  pointer-events: none;
  transform: translateX(16px);
}

.filter-control.is-open .filter-control__trigger {
  max-width: 0;
  min-width: 0;
  padding-right: 0;
  padding-left: 0;
  border-width: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-16px);
}

.catalogue__controls .filter-control__trigger {
  min-width: var(--filter-control-trigger-width);
}

.catalogue__controls .filter-control.is-open .filter-control__trigger {
  min-width: 0;
}

.filter-control.is-open .filter-control__option {
  max-width: var(--filter-control-option-width);
  min-width: 116px;
  padding: 0 var(--filter-control-option-padding-x);
  border-width: 6px;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.filter-control.is-open .filter-control__option:hover {
  background: var(--green-hover);
}

.filter-control__option.is-active {
  max-width: var(--filter-control-active-option-width);
  min-width: 116px;
  padding: 0 var(--filter-control-active-padding-x);
  border-width: 6px;
  background: var(--green-light);
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.cart-status-menu {
  position: fixed;
  right: 8px;
  bottom: 8px;
  z-index: 120;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.home-actions .cart-status-menu {
  position: relative;
  right: auto;
  bottom: auto;
  z-index: auto;
  flex: 0 0 auto;
}

.commerce-status {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 52px;
  overflow: visible;
  border: 6px solid #ffdf5d;
  border-radius: 10000px;
  background: var(--yellow);
  color: var(--black);
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    transform 260ms var(--spring),
    filter 180ms ease;
}

.commerce-status:has(.commerce-status__action:active) {
  transform: scale(0.97);
}

.commerce-status__action {
  position: relative;
  display: inline-flex;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--black);
  cursor: pointer;
  text-decoration: none;
}

.commerce-status__action img {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  transition:
    filter 180ms ease,
    transform 260ms var(--spring);
}

.commerce-status__action:hover img {
  filter: brightness(0) invert(1);
}

.commerce-status__action:active img {
  transform: scale(0.9);
}

.commerce-status__divider {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  background: url("source/icons/remove.svg") center / 40px 40px no-repeat;
  pointer-events: none;
}

.commerce-status__count {
  position: absolute;
  top: -50px;
  right: -50px;
  display: inline-flex;
  min-width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 12px 2px;
  border-radius: 28px;
  background: var(--pink);
  color: var(--sheji-white);
  font-size: 32px;
  font-weight: 600;
  line-height: 32px;
  letter-spacing: 0.64px;
}

.search-menu--compact,
.catalogue__controls .search-menu {
  --catalogue-search-hover-width: 274px;
  --catalogue-search-hover-duration: 325ms;

  position: relative;
  width: 144px;
  height: 144px;
  flex: 0 0 144px;
  pointer-events: none;
  transition:
    width var(--catalogue-search-hover-duration) var(--spring),
    flex-basis var(--catalogue-search-hover-duration) var(--spring);
}

.search-menu--compact:not(.is-open):not(.is-closing):hover,
.catalogue__controls .search-menu:not(.is-open):not(.is-closing):hover {
  width: var(--catalogue-search-hover-width);
  flex-basis: var(--catalogue-search-hover-width);
}

.search-menu--compact .search-menu__surface,
.catalogue__controls .search-menu__surface {
  position: absolute;
  top: 0;
  right: 0;
  pointer-events: auto;
}

.search-menu--compact:not(.is-open):not(.is-closing)
  .button-icon-shell--search,
.catalogue__controls
  .search-menu:not(.is-open):not(.is-closing)
  .button-icon-shell--search {
  right: 50%;
  transform: translateX(50%);
  transition:
    right var(--catalogue-search-hover-duration) var(--spring),
    transform var(--catalogue-search-hover-duration) var(--spring);
}

.search-menu--compact:not(.is-open):not(.is-closing):hover
  .search-menu__prompt,
.search-menu--catalogue:not(.is-open):not(.is-closing):hover
  .search-menu__prompt {
  width: 0;
  opacity: 0;
}

.search-menu--compact:not(.is-open):not(.is-closing) .search-menu__surface,
.catalogue__controls
  .search-menu:not(.is-open):not(.is-closing)
  .search-menu__surface {
  transition:
    width var(--catalogue-search-hover-duration) var(--spring),
    height var(--duration-search) var(--smooth),
    padding var(--duration-search) var(--smooth),
    border-radius var(--duration-search) var(--smooth),
    background-color var(--catalogue-search-hover-duration) var(--spring),
    transform 260ms var(--spring);
}

.search-menu--compact .button--search,
.search-menu--catalogue .button--search {
  --button-hover-width: var(--catalogue-search-hover-width);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: clamp(72px, 7.5vw, 144px);
  row-gap: 80px;
  padding: 48px 144px 144px;
}

.product-card {
  position: relative;
  display: flex;
  aspect-ratio: 372 / 450;
  min-width: 0;
  flex-direction: column;
  justify-content: space-between;
}

.product-card__detail-link {
  position: absolute;
  inset: 72px 0 86px;
  z-index: 1;
  display: block;
  border-radius: 24px;
}

.product-card__favorite {
  position: relative;
  z-index: 2;
  align-self: flex-end;
  display: inline-flex;
  width: 72px;
  height: 72px;
  align-items: center;
  justify-content: center;
  padding: 24px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
}

.product-card__favorite[aria-pressed="true"] {
  background: #ea151c;
}

.product-card__favorite img {
  width: 24px;
  height: 24px;
  transition: filter 180ms ease;
}

.product-card__favorite:hover img {
  filter: brightness(0) invert(1);
}

.product-card__media {
  position: absolute;
  inset: 7% 0 14%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.product-card__media img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  user-select: none;
}

.product-card[data-tone="jacket"] .product-card__media img {
  width: 100%;
}

.product-card[data-tone="shirt"] .product-card__media {
  inset: 9% 7% 17%;
}

.product-card[data-tone="object"] .product-card__media {
  inset: 8% 4% 17%;
}

.product-card__footer {
  position: relative;
  z-index: 2;
  display: flex;
  width: 100%;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0;
}

.product-card__name,
.price-pill,
.product-card__sale-rail {
  height: 72px;
  align-items: center;
  border-radius: 36px;
}

.product-card__name {
  display: inline-flex;
  min-width: 72px;
  justify-content: center;
  padding: 24px;
  background: var(--yellow);
  font-size: 20px;
  font-weight: 350;
  letter-spacing: -0.8px;
  line-height: 0.9;
}

.price-pill {
  display: inline-flex;
  flex: 0 0 auto;
  justify-content: center;
  gap: 16px;
  padding: 24px;
  border: 0;
  background: var(--green);
  color: var(--black);
  cursor: pointer;
  font-size: 24px;
  font-weight: 350;
  letter-spacing: -0.96px;
  line-height: 1;
}

.price-pill:hover {
  background: var(--green-hover);
}

.price-pill img {
  width: 24px;
  height: 24px;
}

.product-card--sale .product-card__media img {
  width: 83%;
}

.product-card--sale .product-card__footer {
  align-items: stretch;
}

.product-card__sale-rail {
  --sale-marquee-gap: 28px;
  --sale-marquee-speed: 5.8s;

  position: relative;
  display: flex;
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  background: var(--pink);
  color: var(--sheji-white);
  contain: paint;
}

.product-card__sale-name {
  position: relative;
  z-index: 2;
  display: inline-flex;
  min-width: 72px;
  height: 72px;
  align-items: center;
  justify-content: center;
  padding: 24px;
  border-radius: 36px;
  background: #c70e7e;
  font-size: 20px;
  font-weight: 350;
  letter-spacing: -0.8px;
  line-height: 0.9;
}

.product-card__sale-line {
  position: absolute;
  top: 0;
  left: -39px;
  display: flex;
  width: max-content;
  min-width: max-content;
  height: 72px;
  align-items: center;
  animation: product-sale-marquee var(--sale-marquee-speed) linear infinite;
  color: var(--sheji-white);
  font-size: 64px;
  font-weight: 600;
  letter-spacing: -3.2px;
  line-height: 1;
  white-space: nowrap;
  will-change: transform;
}

.product-card__sale-group {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  padding-right: var(--sale-marquee-gap);
}

@keyframes product-sale-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.product-card--sale .price-pill {
  background: var(--pink);
  color: var(--sheji-white);
}

.product-card--sale .price-pill img {
  filter: brightness(0) invert(1);
}

.cart-popover {
  position: absolute;
  right: 0;
  bottom: calc(100% + 12px);
  z-index: 1;
  width: 360px;
  max-width: calc(100vw - 16px);
  padding: 24px;
  border: 6px solid var(--green-dark);
  border-radius: 36px;
  background: var(--green);
  font-size: 24px;
  font-weight: 350;
  line-height: 1.1;
}

.home-actions .cart-popover {
  top: calc(100% + 12px);
  bottom: auto;
}

.cart-popover[hidden] {
  display: none;
}

.cart-popover p {
  margin: 0;
}

.cart-popover__row,
.cart-popover__total {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.cart-popover__row span:first-child {
  min-width: 0;
}

.cart-popover__row + .cart-popover__row {
  margin-top: 10px;
}

.cart-popover__total {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 4px solid var(--green-dark);
  font-weight: 600;
  text-transform: uppercase;
}

.product-grid__empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 96px 24px;
  font-size: clamp(56px, 6vw, 116px);
  font-weight: 600;
  letter-spacing: -2px;
  line-height: 0.9;
  text-align: center;
}

.product-detail {
  position: relative;
  z-index: 20;
  min-height: 1432px;
  overflow: hidden;
  background: var(--sheji-white);
  color: var(--black);
}

.product-detail__toolbar {
  display: flex;
  width: 100%;
  min-height: 160px;
  align-items: flex-start;
  justify-content: flex-start;
}

.product-detail__back {
  display: inline-flex;
  width: 309px;
  height: 144px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-block: 8px;
  padding: 0 72px 4px 52px;
  border: 6px solid var(--green-dark);
  border-left-width: 0;
  border-radius: 0 72px 72px 0;
  background: var(--green);
  color: var(--black);
  cursor: pointer;
  font-size: 40px;
  font-weight: 350;
  line-height: 0.9;
  text-decoration: none;
  white-space: nowrap;
  transition:
    width var(--duration-search) var(--smooth),
    background-color 180ms ease,
    transform 260ms var(--spring);
}

.product-detail__back:hover {
  width: 389px;
  background: var(--green-hover);
}

.product-detail__back:active {
  transform: scale(0.98);
}

.product-detail__back img,
.product-detail__add img {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
}

.product-detail__size-selector {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 0;
}

.product-detail__cart-status {
  position: fixed;
  top: 8px;
  right: 8px;
  bottom: auto;
  z-index: 130;
}

.size-selector {
  --size-selector-trigger-width: 194px;
  --size-selector-trigger-hover-width: 274px;
  --size-selector-option-width: 132px;
  --size-selector-option-padding-x: 42px;
  --size-selector-duration: 325ms;

  display: inline-flex;
  flex: 0 0 auto;
  align-items: flex-start;
  border-radius: 72px;
  isolation: isolate;
}

.size-selector__trigger,
.size-selector__option {
  display: inline-flex;
  height: 144px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--black);
  cursor: pointer;
  font-size: 40px;
  font-weight: 350;
  line-height: 1;
  white-space: nowrap;
  transition:
    max-width var(--size-selector-duration) var(--spring),
    min-width var(--size-selector-duration) var(--spring),
    padding var(--size-selector-duration) var(--spring),
    border-width var(--size-selector-duration) var(--spring),
    background-color var(--size-selector-duration) var(--spring),
    opacity 180ms ease,
    transform var(--size-selector-duration) var(--spring);
}

.size-selector__trigger {
  order: 1;
  max-width: var(--size-selector-trigger-width);
  min-width: var(--size-selector-trigger-width);
  padding: 0 52px 4px;
  border: 6px solid var(--green-dark);
  border-radius: 10000px;
  background: var(--green-light);
}

.size-selector__trigger:hover {
  max-width: var(--size-selector-trigger-hover-width);
  min-width: var(--size-selector-trigger-hover-width);
  background: var(--green-hover);
}

.size-selector__option {
  order: 0;
  max-width: 0;
  min-width: 0;
  padding: 0;
  border: 0 solid var(--green-dark);
  border-radius: 72px;
  background: var(--green);
  opacity: 0;
  pointer-events: none;
  transform: translateX(16px);
}

.size-selector.is-open .size-selector__trigger {
  max-width: 0;
  min-width: 0;
  padding-right: 0;
  padding-left: 0;
  border-width: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-16px);
}

.size-selector.is-open .size-selector__option {
  max-width: var(--size-selector-option-width);
  min-width: 116px;
  padding: 0 var(--size-selector-option-padding-x) 4px;
  border-width: 6px;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.size-selector__option.is-active {
  background: var(--green-light);
}

.size-selector.is-open .size-selector__option:hover {
  background: var(--green-hover);
}

.product-detail__stage {
  position: relative;
  display: flex;
  height: 600px;
  align-items: center;
  justify-content: center;
}

.product-detail__product {
  display: flex;
  width: 496px;
  height: 599px;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.product-detail__image {
  display: block;
  width: 100%;
  max-width: 496px;
  max-height: 496px;
  object-fit: contain;
  user-select: none;
}

.product-detail__nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: inline-flex;
  width: 144px;
  height: 144px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 6px solid var(--green-dark);
  border-radius: 999px;
  background: var(--sheji-white);
  color: var(--black);
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    background-color 180ms ease,
    transform 260ms var(--spring);
}

.product-detail__nav:hover {
  background: #f8f8f8;
  transform: translateY(-50%) scale(1.04);
}

.product-detail__nav:active {
  transform: translateY(-50%) scale(0.97);
}

.product-detail__nav--prev {
  left: 8px;
}

.product-detail__nav--next {
  right: 8px;
}

.product-detail__nav img {
  width: 40px;
  height: 40px;
}

.product-detail__purchase {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 32px 0;
}

.product-detail__add {
  display: inline-flex;
  height: 144px;
  min-width: 334px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 52px 4px;
  border: 6px solid var(--green-dark);
  border-radius: 10000px;
  background: var(--green);
  color: var(--black);
  cursor: pointer;
  font-size: 40px;
  font-weight: 350;
  line-height: 0.9;
  white-space: nowrap;
  transition:
    min-width var(--duration-search) var(--smooth),
    background-color 180ms ease,
    transform 260ms var(--spring);
}

.product-detail__add:hover {
  min-width: 414px;
  background: var(--green-hover);
}

.product-detail__add:active {
  transform: scale(0.97);
}

.product-detail__recommendations {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 32px;
  width: 100%;
  padding: 32px 48px;
}

.product-recommendation-card {
  position: relative;
  display: flex;
  height: 400px;
  min-width: 0;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: transparent;
  color: var(--black);
  cursor: pointer;
}

.product-recommendation-card::after {
  position: absolute;
  inset: 0;
  border: 0 solid var(--green-dark);
  content: "";
  pointer-events: none;
  transition:
    border-width 180ms ease,
    background-color 180ms ease;
}

.product-recommendation-card:hover::after,
.product-recommendation-card.is-active::after {
  border-width: 6px;
  background: rgb(98 220 17 / 7%);
}

.product-recommendation-card img {
  display: block;
  max-width: 96%;
  max-height: 88%;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
}

.product-recommendation-card[data-tone="shirt"] img {
  max-width: 90%;
}

.product-recommendation-card[data-tone="jacket"] img {
  max-width: 100%;
  max-height: 92%;
}

.cart-page,
.favorites-page {
  min-height: 100vh;
  background: var(--sheji-white);
}

.cart-detail {
  min-height: 100vh;
  overflow: hidden;
  background: var(--sheji-white);
  color: var(--black);
}

.cart-detail__hero {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 32px;
  padding: 12px clamp(48px, 7.5vw, 144px) 38px 0;
}

.cart-detail__toolbar {
  display: flex;
  min-height: 0;
  align-items: flex-start;
  justify-content: flex-start;
}

.cart-detail__back {
  display: inline-flex;
  width: 309px;
  height: 144px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 72px 4px 52px;
  border: 6px solid var(--green-dark);
  border-left-width: 0;
  border-radius: 0 72px 72px 0;
  background: var(--green);
  color: var(--black);
  cursor: pointer;
  font-size: 40px;
  font-weight: 350;
  line-height: 0.9;
  text-decoration: none;
  white-space: nowrap;
  transition:
    width var(--duration-search) var(--smooth),
    background-color 180ms ease,
    transform 260ms var(--spring);
}

.cart-detail__back:hover {
  width: 389px;
  background: var(--green-hover);
}

.cart-detail__back:active {
  transform: scale(0.98);
}

.cart-detail__back img {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
}

.cart-detail__header {
  display: grid;
  justify-items: end;
  gap: 10px;
  min-width: 0;
  padding: 34px 0 0;
  text-align: right;
}

.cart-detail__eyebrow,
.cart-item__eyebrow {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.cart-detail__header h1 {
  margin: 0;
  font-size: clamp(104px, 12vw, 210px);
  font-weight: 600;
  line-height: 0.84;
}

.cart-detail__summary {
  margin: 0;
  font-size: 32px;
  font-weight: 350;
  line-height: 1;
}

.cart-detail__empty {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 28px;
  padding: 0 clamp(48px, 7.5vw, 144px) 120px;
}

.cart-detail__empty p {
  margin: 0;
  font-size: clamp(64px, 8vw, 140px);
  font-weight: 600;
  line-height: 0.9;
}

.cart-detail__shop-link,
.cart-detail__clear,
.cart-item__remove {
  display: inline-flex;
  min-height: 72px;
  align-items: center;
  justify-content: center;
  padding: 0 34px 4px;
  border: 6px solid var(--green-dark);
  border-radius: 10000px;
  background: var(--green);
  color: var(--black);
  cursor: pointer;
  font-size: 28px;
  font-weight: 350;
  line-height: 0.9;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background-color 180ms ease,
    transform 260ms var(--spring);
}

.cart-detail__shop-link:hover,
.cart-detail__clear:hover,
.cart-item__remove:hover {
  background: var(--green-hover);
}

.cart-detail__shop-link:active,
.cart-detail__clear:active,
.cart-item__remove:active,
.cart-item__quantity-button:active {
  transform: scale(0.97);
}

.cart-detail__list {
  display: grid;
  gap: 16px;
  padding: 0 clamp(48px, 7.5vw, 144px) 32px;
}

.cart-item {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  min-height: 220px;
  padding: 20px 24px;
  border: 6px solid var(--black);
  border-radius: 8px;
  background: var(--yellow);
}

.cart-item__media {
  display: flex;
  width: 180px;
  height: 180px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--sheji-white);
}

.cart-item__media img {
  display: block;
  max-width: 92%;
  max-height: 92%;
  object-fit: contain;
}

.cart-item__copy {
  min-width: 0;
}

.cart-item__title {
  margin: 8px 0 0;
  font-size: clamp(52px, 5vw, 96px);
  font-weight: 600;
  line-height: 0.9;
}

.cart-item__meta {
  margin: 16px 0 0;
  font-size: 24px;
  font-weight: 350;
  line-height: 1;
  text-transform: uppercase;
}

.cart-item__controls {
  display: grid;
  min-width: 300px;
  justify-items: end;
  gap: 14px;
}

.favorite-item__controls {
  min-width: 340px;
}

.favorite-item__view {
  min-height: 64px;
  padding: 0 28px 4px;
  border-color: var(--green-dark);
  background: var(--green);
  font-size: 24px;
}

.cart-item__quantity {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cart-item__quantity-button {
  display: inline-flex;
  width: 64px;
  height: 64px;
  align-items: center;
  justify-content: center;
  padding: 0 0 6px;
  border: 6px solid var(--green-dark);
  border-radius: 999px;
  background: var(--green);
  color: var(--black);
  cursor: pointer;
  font-size: 40px;
  font-weight: 350;
  line-height: 1;
  transition:
    background-color 180ms ease,
    transform 260ms var(--spring);
}

.cart-item__quantity-button:hover {
  background: var(--green-hover);
}

.cart-item__quantity-value {
  display: inline-flex;
  min-width: 64px;
  height: 64px;
  align-items: center;
  justify-content: center;
  padding: 0 16px 4px;
  border: 6px solid var(--black);
  border-radius: 999px;
  background: var(--sheji-white);
  font-size: 34px;
  font-weight: 500;
  line-height: 1;
}

.cart-item__price {
  font-size: 44px;
  font-weight: 600;
  line-height: 1;
}

.cart-item__remove {
  min-height: 64px;
  padding: 0 28px 4px;
  border-color: var(--black);
  background: var(--sheji-white);
  font-size: 24px;
}

.cart-detail__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(48px, 7.5vw, 144px) 96px;
}

.cart-detail__clear {
  border-color: var(--black);
  background: var(--sheji-white);
}

.cart-detail__total {
  display: flex;
  align-items: baseline;
  gap: 24px;
  margin: 0;
  font-size: 32px;
  font-weight: 350;
  line-height: 1;
  text-transform: uppercase;
}

.cart-detail__total strong {
  font-size: clamp(56px, 6vw, 108px);
  font-weight: 600;
  line-height: 0.9;
}

.cart-detail__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 440px);
  gap: 24px;
  align-items: start;
  padding: 0 clamp(48px, 7.5vw, 144px) 96px;
}

.cart-detail__items {
  min-width: 0;
}

.cart-detail__list {
  padding: 0;
}

.cart-detail__footer {
  position: sticky;
  bottom: 16px;
  margin-top: 18px;
  min-height: 136px;
  padding: 18px 22px;
  border: 6px solid var(--black);
  border-radius: 8px;
  background: var(--sheji-white);
  box-shadow: 10px 10px 0 var(--black);
  overflow: visible;
}

.cart-checkout {
  position: sticky;
  top: 24px;
  overflow: hidden;
  border: 6px solid var(--black);
  border-radius: 8px;
  background: var(--green);
  box-shadow: 10px 10px 0 var(--black);
}

.cart-checkout__header {
  display: grid;
  gap: 10px;
  padding: 28px 28px 24px;
  border-bottom: 6px solid var(--black);
  background: var(--yellow);
}

.cart-checkout__eyebrow {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.cart-checkout__header h2 {
  margin: 0;
  font-size: clamp(48px, 4vw, 72px);
  font-weight: 600;
  line-height: 0.88;
}

.cart-checkout__header p:last-child {
  max-width: 32ch;
  margin: 0;
  font-size: 22px;
  font-weight: 350;
  line-height: 1.05;
}

.cart-checkout__form {
  display: grid;
  gap: 18px;
  padding: 24px;
}

.cart-checkout__section {
  display: grid;
  gap: 12px;
}

.cart-checkout__section h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

.cart-checkout__fields {
  display: grid;
  gap: 12px;
}

.cart-checkout__fields--split,
.cart-checkout__fields--card {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cart-checkout__field {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.cart-checkout__field span {
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.cart-checkout__field input,
.cart-checkout__field textarea {
  width: 100%;
  min-width: 0;
  border: 4px solid var(--black);
  border-radius: 8px;
  background: var(--sheji-white);
  color: var(--black);
  font-size: 24px;
  font-weight: 350;
  line-height: 1;
}

.cart-checkout__field input {
  min-height: 58px;
  padding: 0 14px 3px;
}

.cart-checkout__field textarea {
  min-height: 92px;
  resize: vertical;
  padding: 12px 14px;
  line-height: 1.1;
}

.cart-checkout__field input::placeholder {
  color: rgba(0, 0, 0, 0.36);
}

.cart-checkout__submit {
  display: inline-flex;
  min-height: 76px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 28px 4px;
  border: 6px solid var(--black);
  border-radius: 999px;
  background: var(--pink);
  color: var(--black);
  cursor: pointer;
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
  transition:
    background-color 180ms ease,
    transform 260ms var(--spring);
}

.cart-checkout__submit:hover {
  background: #ff55b8;
}

.cart-checkout__submit:active {
  transform: scale(0.97);
}

.cart-checkout__submit img {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
}

.cart-checkout__status {
  min-height: 22px;
  margin: 0;
  font-size: 18px;
  font-weight: 350;
  line-height: 1.1;
}

.not-found-page {
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--yellow);
  color: var(--black);
}

.language-switcher--static {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 10;
}

.not-found {
  position: relative;
  display: grid;
  min-height: 100vh;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: clamp(24px, 4vw, 72px);
  align-items: stretch;
  padding: clamp(18px, 3vw, 48px);
}

.not-found__panel {
  display: grid;
  min-height: calc(100vh - clamp(36px, 6vw, 96px));
  align-content: end;
  padding: clamp(24px, 4vw, 64px);
  border: 6px solid var(--black);
  border-radius: 8px;
  background: var(--yellow);
  box-shadow: 14px 14px 0 var(--black);
}

.not-found__eyebrow {
  margin: 0 0 18px;
  font-size: clamp(22px, 2vw, 36px);
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.not-found__panel h1 {
  margin: 0;
  font-size: clamp(168px, 30vw, 430px);
  font-weight: 600;
  line-height: 0.75;
  letter-spacing: 0;
}

.not-found__statement {
  max-width: 12ch;
  margin: 26px 0 0;
  font-size: clamp(46px, 6vw, 104px);
  font-weight: 600;
  line-height: 0.86;
  text-transform: uppercase;
}

.not-found__copy {
  display: grid;
  align-content: center;
  gap: 24px;
  min-width: 0;
  padding: clamp(78px, 9vw, 140px) 0 clamp(24px, 4vw, 64px);
}

.not-found__badge {
  display: grid;
  justify-items: center;
  gap: 6px;
  width: min(100%, 420px);
  padding: 34px 28px 40px;
  border: 6px solid var(--black);
  border-radius: 999px;
  background: var(--pink);
  box-shadow: 10px 10px 0 var(--black);
  transform: rotate(-4deg);
}

.not-found__badge span {
  font-size: clamp(46px, 6vw, 92px);
  font-weight: 600;
  line-height: 0.82;
  text-align: center;
}

.not-found__message {
  display: grid;
  gap: 24px;
  max-width: 560px;
  padding: 32px;
  border: 6px solid var(--black);
  border-radius: 8px;
  background: var(--sheji-white);
  box-shadow: 10px 10px 0 var(--black);
}

.not-found__message p {
  margin: 0;
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 350;
  line-height: 0.98;
}

.not-found__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.not-found__action {
  display: inline-flex;
  min-height: 72px;
  align-items: center;
  justify-content: center;
  padding: 0 30px 5px;
  border: 6px solid var(--black);
  border-radius: 999px;
  color: var(--black);
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition:
    background-color 180ms ease,
    transform 260ms var(--spring);
}

.not-found__action:hover {
  transform: translate3d(0, -3px, 0);
}

.not-found__action:active {
  transform: scale(0.97);
}

.not-found__action--primary {
  background: var(--green);
}

.not-found__action--primary:hover {
  background: var(--green-hover);
}

.not-found__action--secondary {
  background: var(--sheji-white);
}

.not-found__ticker {
  position: fixed;
  left: -4vw;
  bottom: 28px;
  z-index: 2;
  width: 108vw;
  margin: 0;
  padding: 10px 0 15px;
  border-block: 6px solid var(--black);
  background: var(--green);
  font-size: clamp(24px, 3vw, 48px);
  font-weight: 600;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  transform: rotate(-2deg);
}

.show-page {
  min-height: 100vh;
  background: var(--sheji-white);
}

.show-detail {
  min-height: 100vh;
  overflow: hidden;
  background: var(--sheji-white);
  color: var(--black);
}

.show-detail__toolbar {
  display: flex;
  min-height: 160px;
  align-items: flex-start;
  justify-content: flex-start;
}

.show-detail__back {
  display: inline-flex;
  width: 309px;
  height: 144px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 72px 4px 52px;
  border: 6px solid var(--green-dark);
  border-left-width: 0;
  border-radius: 0 72px 72px 0;
  background: var(--green);
  color: var(--black);
  cursor: pointer;
  font-size: 40px;
  font-weight: 350;
  line-height: 0.9;
  text-decoration: none;
  white-space: nowrap;
  transition:
    width var(--duration-search) var(--smooth),
    background-color 180ms ease,
    transform 260ms var(--spring);
}

.show-detail__back:hover {
  width: 389px;
  background: var(--green-hover);
}

.show-detail__back:active {
  transform: scale(0.98);
}

.show-detail__back img {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
}

.show-detail__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 640px);
  gap: clamp(40px, 5vw, 96px);
  align-items: start;
  padding: 40px clamp(48px, 7.5vw, 144px) 64px;
}

.show-detail__copy {
  min-width: 0;
}

.show-detail__eyebrow {
  display: inline-flex;
  margin: 0 0 16px;
  padding: 8px 12px 10px;
  background: var(--black);
  color: var(--green);
  font-size: 20px;
  font-weight: 500;
  line-height: 0.9;
  text-transform: uppercase;
}

.show-detail__copy h1 {
  max-width: 880px;
  margin: 0;
  padding: 0 4px;
  font-size: clamp(104px, 10vw, 192px);
  font-weight: 600;
  line-height: 0.86;
}

.show-detail__meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin: 36px 0 0;
}

.show-detail__meta div {
  min-width: 0;
  padding: 18px 20px 20px;
  border-top: 6px solid var(--green-dark);
  background: var(--yellow);
}

.show-detail__meta dt {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.show-detail__meta dd {
  margin: 0;
  font-size: 24px;
  font-weight: 350;
  line-height: 1.05;
}

.show-detail__summary,
.show-detail__details p {
  max-width: 760px;
  margin: 0;
  font-size: 28px;
  font-weight: 350;
  line-height: 1.18;
}

.show-detail__summary {
  margin-top: 48px;
}

.show-detail__details {
  display: flex;
  max-width: 760px;
  flex-direction: column;
  gap: 22px;
  margin-top: 28px;
}

.show-detail__hero-photo {
  display: flex;
  width: 100%;
  min-height: 520px;
  flex-direction: column;
  gap: 12px;
  margin: 0;
}

.show-detail__hero-photo img {
  display: block;
  width: 100%;
  min-height: 480px;
  border: 6px solid var(--black);
  object-fit: cover;
}

.show-detail__hero-photo figcaption {
  padding: 12px 16px 14px;
  background: var(--green);
  font-size: 20px;
  font-weight: 350;
  line-height: 1;
  text-transform: uppercase;
}

.show-detail__program {
  max-width: 760px;
  margin-top: 36px;
  padding: 22px 24px 24px;
  border-top: 6px solid var(--black);
  background: var(--green);
}

.show-detail__program-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.show-detail__program h2 {
  margin: 0;
  font-size: 26px;
  font-weight: 500;
  line-height: 0.95;
  text-transform: uppercase;
}

.show-detail__program-header span {
  flex: 0 0 auto;
  padding: 5px 8px 6px;
  background: var(--black);
  color: var(--green);
  font-size: 16px;
  font-weight: 500;
  line-height: 0.9;
  text-transform: uppercase;
}

.show-detail__program ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: show-program;
}

.show-detail__program li {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 12px;
  align-items: baseline;
  font-size: 26px;
  font-weight: 350;
  line-height: 1.05;
  counter-increment: show-program;
}

.show-detail__program li::before {
  content: counter(show-program, decimal-leading-zero);
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
}

.show-detail__section {
  padding: 0 clamp(48px, 7.5vw, 144px) 80px;
}

.show-detail__section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
  border-top: 6px solid var(--black);
  padding-top: 22px;
}

.show-detail__section-heading p {
  margin: 0;
  padding: 8px 10px 9px;
  background: var(--yellow);
  font-size: 20px;
  font-weight: 350;
  line-height: 0.95;
  text-transform: uppercase;
}

.show-detail__section-heading h2 {
  margin: 0;
  font-size: clamp(48px, 5vw, 84px);
  font-weight: 600;
  line-height: 0.86;
  text-align: right;
  text-transform: uppercase;
}

.show-detail__pieces {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.show-detail__piece {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  border: 6px solid var(--black);
  background: var(--yellow);
  color: var(--black);
  text-decoration: none;
  transition:
    background-color 180ms ease,
    transform 220ms var(--spring);
}

.show-detail__piece:hover {
  background: var(--green);
  transform: translate3d(0, -6px, 0);
}

.show-detail__piece img {
  display: block;
  width: 100%;
  height: 240px;
  object-fit: contain;
}

.show-detail__piece-copy {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 18px;
}

.show-detail__piece-name {
  font-size: 32px;
  font-weight: 500;
  line-height: 0.9;
  text-transform: uppercase;
}

.show-detail__piece-meta {
  font-size: 18px;
  font-weight: 350;
  line-height: 1;
  text-transform: uppercase;
}

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

.show-detail__gallery-item {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  margin: 0;
  background: var(--yellow);
}

.show-detail__gallery-item.is-event-photo {
  grid-column: span 2;
}

.show-detail__gallery-item img {
  display: block;
  width: 100%;
  height: 280px;
  border: 6px solid var(--black);
  background: var(--sheji-white);
  object-fit: contain;
}

.show-detail__gallery-item.is-event-photo img {
  height: 420px;
  object-fit: cover;
}

.show-detail__gallery-item figcaption {
  padding: 12px 14px 14px;
  font-size: 20px;
  font-weight: 350;
  line-height: 1;
  text-transform: uppercase;
}

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

.show-detail__archive-card {
  display: grid;
  min-height: 220px;
  grid-template-rows: 160px minmax(0, 1fr);
  border: 6px solid var(--green-dark);
  background: var(--green);
  color: var(--black);
  text-decoration: none;
  transition:
    background-color 180ms ease,
    transform 220ms var(--spring);
}

.show-detail__archive-card:hover {
  background: var(--green-hover);
  transform: translate3d(0, -5px, 0);
}

.show-detail__archive-card img {
  display: block;
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.show-detail__archive-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 8px;
  padding: 14px 16px 16px;
}

.show-detail__archive-copy span {
  font-size: 18px;
  font-weight: 350;
  line-height: 1;
  text-transform: uppercase;
}

.show-detail__archive-copy strong {
  overflow: hidden;
  font-size: 34px;
  font-weight: 500;
  line-height: 0.9;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

@media (min-width: 1280px) and (max-width: 1439px) {
  .home-page,
  .hero-stage,
  .catalogue,
  .product-detail,
  .cart-detail,
  .favorites-detail,
  .show-detail {
    min-width: 1120px;
  }

  .home-collage {
    left: 540px;
    right: auto;
    width: 620px;
    min-width: 0;
  }
}

@media (min-width: 1280px) and (max-width: 1535px) {
  .catalogue__toolbar {
    flex-wrap: wrap;
  }

  .catalogue__controls {
    min-width: 0;
    flex: 1 1 auto;
    flex-wrap: wrap;
  }

  .catalogue__controls .filter-control.is-open {
    width: 100%;
    flex: 1 1 100%;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 2px;
  }

  .catalogue__controls .filter-control.is-open .filter-control__option {
    flex: 0 0 var(--filter-control-option-width);
  }

  .catalogue__controls .search-menu.is-open {
    width: 144px;
    flex: 0 0 144px;
  }

  .catalogue__controls .search-menu.is-open .search-menu__surface {
    position: absolute;
    top: 0;
    right: 0;
    width: min(var(--search-open-width), calc(100vw - 16px));
    max-width: calc(100vw - 16px);
  }

  .catalogue__controls .search-menu.is-open .search-menu__input {
    width: 100%;
  }
}

@media (min-width: 1024px) and (max-width: 1279px) {
  .home-page,
  .hero-stage,
  .catalogue,
  .product-detail,
  .cart-detail,
  .favorites-detail,
  .show-detail {
    min-width: 0;
  }

  .hero-stage {
    min-height: 760px;
  }

  .home-actions {
    transform: scale(0.74);
    transform-origin: right top;
  }

  .language-switcher {
    transform: scale(0.88);
    transform-origin: left bottom;
  }

  .button--shows {
    --button-hover-width: min(760px, calc(100vw - 16px));
    --button-hover-height: 760px;
  }

  .home-catalogue-link {
    width: 112px;
    height: 112px;
    border-radius: 56px;
  }

  .home-catalogue-link:hover {
    width: 152px;
  }

  .home-catalogue-link img {
    width: 42px;
    height: 42px;
  }

  .collection-menu {
    left: clamp(32px, 6vw, 72px);
  }

  .collection-card {
    width: clamp(500px, 50vw, 626px);
    padding: 32px;
    border-radius: 96px;
  }

  .collection-card__title {
    font-size: var(--collection-card-title-size, clamp(96px, 10vw, 124px));
  }

  .collection-card__cta {
    height: 128px;
    border-radius: 64px;
  }

  .home-collage {
    top: 150px;
    right: 32px;
    bottom: 116px;
    left: auto;
    width: min(38vw, 430px);
    min-width: 0;
  }

  .diagonal-banner {
    --banner-height: clamp(88px, 10vw, 112px);
    --banner-width: min(1080px, calc(100vw + 320px));

    right: -340px;
    bottom: 96px;
    font-size: clamp(78px, 9vw, 104px);
  }

  .catalogue {
    min-height: 0;
  }

  .catalogue__toolbar {
    min-height: 0;
    flex-wrap: wrap;
    gap: 16px;
  }

  .catalogue__intro {
    flex: 1 1 100%;
  }

  .catalogue__controls {
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 4px;
  }

  .catalogue__back {
    width: 112px;
    height: 112px;
    flex-basis: 112px;
  }

  .catalogue__back img {
    width: 42px;
    height: 42px;
  }

  .catalogue__heading h1 {
    font-size: clamp(72px, 8vw, 96px);
  }

  .filter-control {
    --filter-control-trigger-width: 132px;
    --filter-control-trigger-hover-width: 180px;
    --filter-control-option-width: 108px;
    --filter-control-option-padding-x: 28px;
    --filter-control-active-option-width: 108px;
    --filter-control-active-padding-x: 28px;
  }

  .filter-control--colour {
    --filter-control-trigger-width: 154px;
    --filter-control-trigger-hover-width: 216px;
    --filter-control-option-width: 142px;
    --filter-control-active-option-width: 142px;
  }

  .filter-control--price {
    --filter-control-trigger-width: 154px;
    --filter-control-trigger-hover-width: 216px;
    --filter-control-option-width: 224px;
    --filter-control-option-padding-x: 26px;
    --filter-control-active-option-width: 224px;
    --filter-control-active-padding-x: 26px;
  }

  .filter-control__trigger,
  .filter-control__option {
    height: 96px;
    border-width: 5px;
    border-radius: 48px;
    font-size: 30px;
  }

  .filter-control.is-open .filter-control__option,
  .filter-control__option.is-active {
    min-width: 96px;
    border-width: 5px;
  }

  .search-menu--compact,
  .catalogue__controls .search-menu {
    --catalogue-search-hover-width: 180px;

    width: 96px;
    height: 96px;
    flex-basis: 96px;
  }

  .search-menu--compact .button--search,
  .search-menu--catalogue .button--search {
    --button-width: 96px;
    --button-height: 96px;
    --button-hover-width: var(--catalogue-search-hover-width);
    --search-open-width: min(560px, calc(100vw - 16px));
    --search-open-height: 430px;
    --search-shell-padding: 28px;
  }

  .search-menu--compact.is-open .search-menu__input,
  .search-menu--catalogue.is-open .search-menu__input {
    width: 100%;
  }

  .button-icon-shell--search {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }

  .button-icon--large {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: clamp(48px, 8vw, 96px);
    row-gap: 64px;
    padding: 48px clamp(64px, 8vw, 96px) 112px;
  }

  .product-card {
    max-width: 430px;
    width: 100%;
    margin: 0 auto;
  }

  .product-detail,
  .cart-detail,
  .favorites-detail,
  .show-detail {
    min-height: 0;
  }

  .product-detail__toolbar,
  .cart-detail__toolbar,
  .show-detail__toolbar {
    min-height: 128px;
  }

  .product-detail__back,
  .cart-detail__back,
  .show-detail__back {
    width: 260px;
    height: 112px;
    padding: 0 48px 4px 36px;
    border-width: 5px;
    border-left-width: 0;
    border-radius: 0 56px 56px 0;
    font-size: 32px;
  }

  .product-detail__back:hover,
  .cart-detail__back:hover,
  .show-detail__back:hover {
    width: 320px;
  }

  .product-detail__back img,
  .product-detail__add img,
  .product-detail__nav img,
  .cart-detail__back img,
  .show-detail__back img {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }

  .product-detail__cart-status .commerce-status {
    padding: 36px;
  }

  .product-detail__stage {
    height: clamp(500px, 50vw, 600px);
    padding: 0 120px;
  }

  .product-detail__product {
    width: min(48vw, 460px);
    height: 100%;
  }

  .product-detail__nav {
    width: 104px;
    height: 104px;
    border-width: 5px;
  }

  .product-detail__purchase {
    padding: 24px 16px;
  }

  .size-selector {
    --size-selector-trigger-width: 154px;
    --size-selector-trigger-hover-width: 216px;
    --size-selector-option-width: 108px;
    --size-selector-option-padding-x: 28px;
  }

  .size-selector__trigger,
  .size-selector__option,
  .product-detail__add {
    height: 112px;
    border-width: 5px;
    border-radius: 56px;
    font-size: 32px;
  }

  .product-detail__add {
    min-width: 286px;
  }

  .product-detail__add:hover {
    min-width: 346px;
  }

  .product-detail__recommendations {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    padding: 24px 32px 72px;
  }

  .product-recommendation-card {
    height: 300px;
  }

  .cart-detail__header {
    padding: 32px clamp(32px, 5vw, 72px) 44px;
  }

  .cart-detail__list {
    padding: 0 clamp(32px, 5vw, 72px) 28px;
  }

  .cart-detail__footer {
    padding: 24px clamp(32px, 5vw, 72px) 80px;
  }

  .cart-item {
    grid-template-columns: 150px minmax(0, 1fr) auto;
    gap: 24px;
    min-height: 190px;
    padding: 18px 20px;
  }

  .cart-item__media {
    width: 150px;
    height: 150px;
  }

  .cart-item__title {
    font-size: clamp(44px, 5vw, 72px);
  }

  .cart-item__controls {
    min-width: 260px;
  }

  .favorite-item__controls {
    min-width: 280px;
  }

  .show-detail__body {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
    gap: 40px;
    padding: 32px clamp(32px, 5vw, 72px) 56px;
  }

  .show-detail__copy h1 {
    font-size: clamp(82px, 9vw, 128px);
  }

  .show-detail__meta,
  .show-detail__pieces,
  .show-detail__gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .show-detail__section {
    padding: 0 clamp(32px, 5vw, 72px) 72px;
  }

  .show-detail__gallery-item.is-event-photo {
    grid-column: span 2;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .home-page,
  .hero-stage,
  .catalogue,
  .product-detail,
  .cart-detail,
  .favorites-detail,
  .show-detail {
    min-width: 0;
  }

  .hero-stage {
    min-height: 720px;
  }

  .home-actions {
    top: 8px;
    right: 8px;
    transform: scale(0.58);
    transform-origin: right top;
  }

  .language-switcher {
    top: 8px;
    bottom: auto;
    left: 8px;
    transform: scale(0.82);
    transform-origin: left top;
  }

  .button--shows {
    --button-hover-width: min(680px, calc(100vw - 16px));
    --button-hover-height: 720px;
  }

  .home-catalogue-link {
    width: 88px;
    height: 88px;
    border-width: 5px;
    border-radius: 44px;
  }

  .home-catalogue-link:hover {
    width: 120px;
  }

  .home-catalogue-link img {
    width: 36px;
    height: 36px;
  }

  .collection-menu {
    left: 24px;
    width: min(66vw, 520px);
  }

  .collection-card {
    width: min(66vw, 520px);
    padding: 28px;
    border-width: 5px;
    border-radius: 78px;
  }

  .collection-card__title {
    font-size: var(--collection-card-title-size, clamp(72px, 11vw, 104px));
    letter-spacing: -1.6px;
  }

  .collection-card__meta {
    padding: 0 10px;
    font-size: 18px;
  }

  .collection-card__meta strong {
    font-size: 28px;
  }

  .collection-card__description {
    padding: 0 16px;
    font-size: 18px;
  }

  .collection-card__cta {
    height: 104px;
    padding: 36px;
    border-width: 5px;
    border-radius: 52px;
    font-size: 32px;
  }

  .home-collage {
    top: 124px;
    right: -40px;
    bottom: 138px;
    left: auto;
    width: min(50vw, 380px);
    min-width: 0;
  }

  .diagonal-banner {
    --banner-height: clamp(78px, 10vw, 96px);
    --banner-width: min(980px, calc(100vw + 280px));

    right: -300px;
    bottom: 104px;
    font-size: clamp(68px, 9vw, 88px);
  }

  .catalogue,
  .product-detail,
  .cart-detail,
  .favorites-detail,
  .show-detail {
    min-height: 0;
  }

  .catalogue__toolbar {
    position: relative;
    min-height: 0;
    flex-direction: column;
    gap: 14px;
    padding: 8px;
  }

  .catalogue__intro,
  .catalogue__controls {
    width: 100%;
  }

  .catalogue__controls {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 4px;
  }

  .catalogue__back {
    width: 88px;
    height: 88px;
    flex-basis: 88px;
  }

  .catalogue__back img {
    width: 36px;
    height: 36px;
  }

  .catalogue__heading h1 {
    font-size: clamp(64px, 10vw, 88px);
    white-space: normal;
  }

  .filter-control {
    --filter-control-trigger-width: 112px;
    --filter-control-trigger-hover-width: 152px;
    --filter-control-option-width: 96px;
    --filter-control-option-padding-x: 24px;
    --filter-control-active-option-width: 96px;
    --filter-control-active-padding-x: 24px;
  }

  .filter-control--colour {
    --filter-control-trigger-width: 140px;
    --filter-control-trigger-hover-width: 184px;
    --filter-control-option-width: 128px;
    --filter-control-active-option-width: 128px;
  }

  .filter-control--price {
    --filter-control-trigger-width: 132px;
    --filter-control-trigger-hover-width: 176px;
    --filter-control-option-width: 204px;
    --filter-control-option-padding-x: 22px;
    --filter-control-active-option-width: 204px;
    --filter-control-active-padding-x: 22px;
  }

  .filter-control__trigger,
  .filter-control__option {
    height: 80px;
    min-width: 80px;
    border-width: 4px;
    border-radius: 40px;
    font-size: 26px;
  }

  .filter-control.is-open .filter-control__option,
  .filter-control__option.is-active {
    min-width: 80px;
    border-width: 4px;
  }

  .search-menu--compact,
  .catalogue__controls .search-menu {
    --catalogue-search-hover-width: 152px;

    width: 80px;
    height: 80px;
    flex-basis: 80px;
  }

  .search-menu--compact .button--search,
  .search-menu--catalogue .button--search {
    --button-width: 80px;
    --button-height: 80px;
    --button-hover-width: var(--catalogue-search-hover-width);
    --search-open-width: min(520px, calc(100vw - 16px));
    --search-open-height: 390px;
    --search-shell-padding: 24px;
  }

  .search-menu--compact.is-open .search-menu__input,
  .search-menu--catalogue.is-open .search-menu__input {
    width: 100%;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: clamp(28px, 6vw, 56px);
    row-gap: 52px;
    padding: 40px 40px 88px;
  }

  .product-card {
    max-width: 380px;
    width: 100%;
    margin: 0 auto;
  }

  .product-detail__toolbar,
  .cart-detail__toolbar,
  .show-detail__toolbar {
    min-height: 0;
    padding: 8px 0;
  }

  .product-detail__back,
  .cart-detail__back,
  .show-detail__back {
    width: 218px;
    height: 80px;
    padding: 0 30px 3px 22px;
    border-width: 4px;
    border-left-width: 0;
    border-radius: 0 40px 40px 0;
    font-size: 26px;
  }

  .product-detail__back:hover,
  .cart-detail__back:hover,
  .show-detail__back:hover {
    width: 260px;
  }

  .product-detail__back img,
  .product-detail__add img,
  .product-detail__nav img,
  .cart-detail__back img,
  .show-detail__back img {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }

  .product-detail__cart-status .commerce-status {
    padding: 24px;
    border-width: 4px;
  }

  .product-detail__stage {
    height: clamp(420px, 58vw, 520px);
    padding: 0 96px;
  }

  .product-detail__product {
    width: min(calc(100vw - 220px), 430px);
    height: 100%;
  }

  .product-detail__image {
    max-height: 82%;
  }

  .product-detail__nav {
    width: 80px;
    height: 80px;
    border-width: 4px;
  }

  .product-detail__purchase {
    flex-wrap: wrap;
    gap: 8px;
    padding: 22px 16px 30px;
  }

  .size-selector {
    --size-selector-trigger-width: 112px;
    --size-selector-trigger-hover-width: 152px;
    --size-selector-option-width: 96px;
    --size-selector-option-padding-x: 24px;
  }

  .size-selector__trigger,
  .size-selector__option,
  .product-detail__add {
    height: 80px;
    border-width: 4px;
    border-radius: 40px;
    font-size: 26px;
  }

  .product-detail__add {
    min-width: 240px;
    padding: 0 28px 3px;
  }

  .product-detail__add:hover {
    min-width: 280px;
  }

  .product-detail__recommendations {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    padding: 20px 24px 64px;
  }

  .product-recommendation-card {
    height: min(34vw, 260px);
    min-height: 210px;
  }

  .cart-detail__header {
    gap: 8px;
    padding: 36px 32px 36px;
  }

  .cart-detail__header h1 {
    font-size: clamp(88px, 18vw, 148px);
  }

  .cart-detail__list {
    gap: 14px;
    padding: 0 32px 24px;
  }

  .cart-item {
    grid-template-columns: 132px minmax(0, 1fr);
    gap: 18px;
    min-height: 0;
    padding: 18px;
    border-width: 5px;
  }

  .cart-item__media {
    width: 132px;
    height: 132px;
  }

  .cart-item__title {
    font-size: clamp(42px, 8vw, 68px);
  }

  .cart-item__meta {
    font-size: 20px;
  }

  .cart-item__controls {
    grid-column: 1 / -1;
    grid-template-columns: auto 1fr auto;
    min-width: 0;
    align-items: center;
    justify-items: start;
  }

  .favorite-item__controls {
    grid-template-columns: 1fr auto auto;
    min-width: 0;
  }

  .cart-detail__footer {
    padding: 24px 32px 72px;
  }

  .show-detail__body {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px 32px 52px;
  }

  .show-detail__copy h1 {
    font-size: clamp(76px, 15vw, 124px);
  }

  .show-detail__meta,
  .show-detail__pieces,
  .show-detail__gallery,
  .show-detail__archive {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .show-detail__section {
    padding: 0 32px 64px;
  }

  .show-detail__gallery-item.is-event-photo {
    grid-column: span 2;
  }
}

@media (max-width: 767px) {
  .home-page,
  .hero-stage,
  .catalogue,
  .product-detail,
  .cart-detail,
  .favorites-detail,
  .show-detail {
    min-width: 0;
  }

  .catalogue,
  .product-detail,
  .cart-detail,
  .favorites-detail,
  .show-detail {
    min-height: 0;
  }

  .catalogue__toolbar {
    position: sticky;
    top: 0;
    z-index: 80;
    min-height: 0;
    flex-direction: column;
    gap: 12px;
    padding: 8px;
    background: var(--yellow);
  }

  .catalogue__intro,
  .catalogue__controls {
    width: 100%;
  }

  .catalogue__back {
    width: 72px;
    height: 72px;
    flex-basis: 72px;
  }

  .catalogue__back img {
    width: 32px;
    height: 32px;
  }

  .catalogue__heading h1 {
    font-size: clamp(44px, 13vw, 56px);
    white-space: normal;
  }

  .catalogue__heading p {
    font-size: 16px;
  }

  .catalogue__controls {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .filter-control {
    --filter-control-trigger-width: 96px;
    --filter-control-trigger-hover-width: 132px;
    --filter-control-option-width: 86px;
    --filter-control-option-padding-x: 20px;
    --filter-control-active-option-width: 86px;
    --filter-control-active-padding-x: 20px;
  }

  .filter-control--colour {
    --filter-control-trigger-width: 126px;
    --filter-control-trigger-hover-width: 160px;
    --filter-control-option-width: 118px;
    --filter-control-active-option-width: 118px;
  }

  html[lang="ru"] .filter-control--colour {
    --filter-control-option-width: 148px;
    --filter-control-option-padding-x: 16px;
    --filter-control-active-option-width: 148px;
    --filter-control-active-padding-x: 16px;
  }

  html[lang="ru"] .filter-control--colour .filter-control__option {
    font-size: 22px;
  }

  .filter-control--price {
    --filter-control-trigger-width: 116px;
    --filter-control-trigger-hover-width: 148px;
    --filter-control-option-width: 180px;
    --filter-control-option-padding-x: 18px;
    --filter-control-active-option-width: 180px;
    --filter-control-active-padding-x: 18px;
  }

  .filter-control__trigger,
  .filter-control__option {
    height: 72px;
    min-width: 72px;
    border-width: 4px;
    border-radius: 36px;
    font-size: 24px;
  }

  .filter-control.is-open .filter-control__option,
  .filter-control__option.is-active {
    min-width: 72px;
    border-width: 4px;
  }

  .commerce-status {
    gap: 6px;
    padding: 20px;
    border-width: 4px;
  }

  .commerce-status__action,
  .commerce-status__action img {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }

  .commerce-status__divider {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
    background-size: 32px 32px;
  }

  .commerce-status__count {
    top: -14px;
    right: -14px;
    min-width: 26px;
    height: 26px;
    padding: 0 7px 2px;
    font-size: 16px;
    line-height: 1;
    letter-spacing: 0.32px;
  }

  .cart-popover {
    right: 0;
    bottom: calc(100% + 8px);
    width: min(360px, calc(100vw - 16px));
  }

  .home-catalogue-link {
    bottom: 262px;
    width: 72px;
    height: 72px;
    border-width: 4px;
    border-radius: 36px;
  }

  .home-catalogue-link:hover {
    width: 104px;
  }

  .home-catalogue-link img {
    width: 32px;
    height: 32px;
  }

  .search-menu--compact,
  .catalogue__controls .search-menu {
    --catalogue-search-hover-width: 132px;

    width: 72px;
    height: 72px;
    flex-basis: 72px;
  }

  .search-menu--compact .button--search,
  .search-menu--catalogue .button--search {
    --button-width: 72px;
    --button-height: 72px;
    --button-hover-width: var(--catalogue-search-hover-width);
    --search-open-width: min(96vw, 420px);
    --search-open-height: 360px;
    --search-shell-padding: 20px;
  }

  .search-menu--compact.is-open .search-menu__input,
  .search-menu--catalogue.is-open .search-menu__input {
    width: 100%;
  }

  .product-grid {
    grid-template-columns: 1fr;
    row-gap: 42px;
    padding: 32px 16px 72px;
  }

  .product-card {
    max-width: 430px;
    margin: 0 auto;
    width: 100%;
  }

  .product-card__detail-link {
    inset: 56px 0 72px;
  }

  .product-detail__toolbar {
    min-height: 0;
    padding: 8px;
  }

  .product-detail__back {
    width: 194px;
    height: 72px;
    margin-block: 0;
    padding: 0 28px 3px 20px;
    border-width: 4px;
    border-left-width: 0;
    border-radius: 0 36px 36px 0;
    font-size: 24px;
  }

  .product-detail__back:hover {
    width: 234px;
  }

  .product-detail__back img,
  .product-detail__add img,
  .product-detail__nav img {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }

  .product-detail__size-selector {
    width: auto;
    flex-wrap: nowrap;
    justify-content: center;
    padding: 0;
  }

  .size-selector {
    --size-selector-trigger-width: 96px;
    --size-selector-trigger-hover-width: 132px;
    --size-selector-option-width: 86px;
    --size-selector-option-padding-x: 20px;
  }

  .size-selector__trigger,
  .size-selector__option {
    height: 72px;
    border-width: 4px;
    border-radius: 36px;
    font-size: 24px;
  }

  .size-selector__trigger {
    min-width: var(--size-selector-trigger-width);
    padding: 0 20px 3px;
  }

  .size-selector__trigger:hover {
    min-width: var(--size-selector-trigger-hover-width);
    padding: 0 26px 3px;
  }

  .size-selector.is-open .size-selector__option {
    min-width: 72px;
    padding: 0 var(--size-selector-option-padding-x) 3px;
    border-width: 4px;
  }

  .product-detail__stage {
    height: clamp(360px, 76vw, 520px);
    padding: 0 88px;
  }

  .product-detail__product {
    width: min(calc(100vw - 176px), 430px);
    height: 100%;
  }

  .product-detail__image {
    max-height: 78%;
  }

  .product-detail__nav {
    width: 72px;
    height: 72px;
    border-width: 4px;
  }

  .product-detail__nav--prev {
    left: 8px;
  }

  .product-detail__nav--next {
    right: 8px;
  }

  .product-detail__purchase {
    width: 100vw;
    gap: 8px;
    padding: 20px 8px 28px;
  }

  .product-detail__add {
    height: 72px;
    min-width: 192px;
    padding: 0 20px 3px;
    border-width: 4px;
    border-radius: 36px;
    font-size: 24px;
  }

  .product-detail__add:hover {
    min-width: 220px;
  }

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

  .product-recommendation-card {
    height: min(52vw, 260px);
    min-height: 180px;
  }

  .cart-detail__toolbar {
    min-height: 0;
    padding: 8px 0;
  }

  .cart-detail__back {
    width: 194px;
    height: 72px;
    padding: 0 28px 3px 20px;
    border-width: 4px;
    border-left-width: 0;
    border-radius: 0 36px 36px 0;
    font-size: 24px;
  }

  .cart-detail__back:hover {
    width: 234px;
  }

  .cart-detail__back img {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }

  .cart-detail__header {
    gap: 8px;
    padding: 36px 16px 32px;
  }

  .cart-detail__eyebrow,
  .cart-item__eyebrow {
    font-size: 16px;
  }

  .cart-detail__header h1 {
    font-size: clamp(72px, 26vw, 128px);
  }

  .cart-detail__summary {
    font-size: 24px;
  }

  .cart-detail__empty {
    min-height: 280px;
    padding: 0 16px 72px;
  }

  .cart-detail__empty p {
    font-size: clamp(48px, 18vw, 78px);
  }

  .cart-detail__shop-link,
  .cart-detail__clear,
  .cart-item__remove {
    min-height: 56px;
    padding: 0 24px 3px;
    border-width: 4px;
    font-size: 22px;
  }

  .cart-detail__list {
    gap: 12px;
    padding: 0 16px 20px;
  }

  .cart-item {
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 14px;
    min-height: 0;
    padding: 14px;
    border-width: 4px;
  }

  .cart-item__media {
    width: 104px;
    height: 104px;
  }

  .cart-item__title {
    margin-top: 6px;
    font-size: clamp(36px, 12vw, 52px);
  }

  .cart-item__meta {
    margin-top: 10px;
    font-size: 16px;
  }

  .cart-item__controls {
    grid-column: 1 / -1;
    grid-template-columns: auto minmax(0, 1fr);
    min-width: 0;
    align-items: center;
    justify-items: start;
    gap: 12px;
  }

  .favorite-item__controls {
    grid-template-columns: 1fr auto auto;
    min-width: 0;
  }

  .cart-item__quantity {
    gap: 6px;
  }

  .cart-item__quantity-button,
  .cart-item__quantity-value {
    width: 48px;
    min-width: 48px;
    height: 48px;
    border-width: 4px;
    font-size: 28px;
  }

  .cart-item__quantity-value {
    padding: 0 12px 3px;
  }

  .cart-item__price {
    justify-self: end;
    font-size: 30px;
  }

  .cart-item__remove {
    grid-column: 1 / -1;
    width: 100%;
    justify-self: stretch;
  }

  .cart-detail__footer {
    flex-direction: column-reverse;
    align-items: stretch;
    gap: 18px;
    padding: 20px 16px 64px;
  }

  .cart-detail__clear {
    width: 100%;
  }

  .cart-detail__total {
    justify-content: space-between;
    font-size: 24px;
  }

  .cart-detail__total strong {
    font-size: clamp(44px, 15vw, 72px);
  }

  .home-actions {
    top: 8px;
    right: 8px;
    transform: scale(0.5);
    transform-origin: right top;
  }

  .home-actions .search-menu--compact {
    --catalogue-search-hover-width: 264px;

    width: 144px;
    height: 144px;
    flex-basis: 144px;
  }

  .home-actions .search-menu--compact .button--search {
    --button-width: 144px;
    --button-height: 144px;
    --button-hover-width: var(--catalogue-search-hover-width);
    --search-open-width: min(192vw, 840px);
    --search-open-height: 720px;
    --search-shell-padding: 40px;

    border-width: 12px;
  }

  .home-actions .search-menu--compact .button-icon-shell--search,
  .home-actions .search-menu--compact .button-icon--large {
    width: 80px;
    height: 80px;
    flex-basis: 80px;
  }

  .home-actions .search-menu--compact .button-icon path {
    stroke-width: 8;
  }

  .language-switcher {
    top: 8px;
    bottom: auto;
    left: 8px;
    z-index: 190;
    transform: scale(0.78);
    transform-origin: left top;
  }

  .button--shows {
    --button-hover-width: min(560px, calc(100vw - 16px));
    --button-hover-height: 760px;
  }

  .button--shows:hover,
  .button--shows.is-open {
    padding: 42px 48px 46px;
  }

  .shows-menu__content {
    top: 106px;
    left: 48px;
    right: 48px;
    max-height: calc(100% - 118px);
    gap: 18px;
  }

  .shows-menu__event {
    grid-template-columns: 82px minmax(0, 1fr) 32px;
    min-height: 116px;
    gap: 14px;
    padding: 10px 0;
  }

  .shows-menu__thumb {
    width: 82px;
    height: 82px;
    flex-basis: 82px;
    border-width: 3px;
  }

  .shows-menu__badge {
    font-size: 12px;
  }

  .shows-menu__title {
    font-size: 28px;
  }

  .shows-menu__summary-line {
    display: none;
  }

  .shows-menu__arrow {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }

  .show-detail__toolbar {
    min-height: 0;
    padding: 8px 0;
  }

  .show-detail__back {
    width: 194px;
    height: 72px;
    padding: 0 28px 3px 20px;
    border-width: 4px;
    border-left-width: 0;
    border-radius: 0 36px 36px 0;
    font-size: 24px;
  }

  .show-detail__back:hover {
    width: 234px;
  }

  .show-detail__back img {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }

  .show-detail__body {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px 16px 48px;
  }

  .show-detail__copy h1 {
    font-size: clamp(56px, 18vw, 92px);
  }

  .show-detail__meta {
    grid-template-columns: 1fr 1fr;
    margin-top: 28px;
  }

  .show-detail__meta div {
    padding: 14px 16px 16px;
    border-top-width: 4px;
  }

  .show-detail__meta dd {
    font-size: 24px;
  }

  .show-detail__summary,
  .show-detail__details p {
    font-size: 22px;
  }

  .show-detail__summary {
    margin-top: 32px;
  }

  .show-detail__hero-photo {
    min-height: 0;
  }

  .show-detail__hero-photo img {
    min-height: 320px;
    border-width: 4px;
  }

  .show-detail__hero-photo figcaption {
    font-size: 16px;
  }

  .show-detail__program {
    padding: 18px;
    border-top-width: 4px;
  }

  .show-detail__program-header {
    display: block;
  }

  .show-detail__program-header span {
    display: inline-flex;
    margin-top: 10px;
    font-size: 14px;
  }

  .show-detail__program li {
    grid-template-columns: 38px minmax(0, 1fr);
    font-size: 21px;
  }

  .show-detail__section {
    padding: 0 16px 56px;
  }

  .show-detail__section-heading {
    display: block;
    border-top-width: 4px;
    padding-top: 16px;
  }

  .show-detail__section-heading p {
    display: inline-flex;
    margin-bottom: 12px;
    font-size: 16px;
  }

  .show-detail__section-heading h2 {
    font-size: clamp(42px, 14vw, 64px);
    text-align: left;
  }

  .show-detail__pieces,
  .show-detail__archive {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .show-detail__piece {
    min-height: 260px;
    padding: 12px;
    border-width: 4px;
  }

  .show-detail__piece img {
    height: 170px;
  }

  .show-detail__piece-name {
    font-size: 22px;
  }

  .show-detail__piece-meta {
    font-size: 14px;
  }

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

  .show-detail__gallery-item,
  .show-detail__gallery-item.is-event-photo {
    grid-column: span 1;
    min-height: 220px;
  }

  .show-detail__gallery-item img,
  .show-detail__gallery-item.is-event-photo img {
    height: 180px;
    border-width: 4px;
  }

  .show-detail__gallery-item figcaption {
    font-size: 15px;
  }

  .show-detail__archive-card {
    min-height: 190px;
    grid-template-rows: 116px minmax(0, 1fr);
    border-width: 4px;
  }

  .show-detail__archive-card img {
    height: 116px;
  }

  .show-detail__archive-copy {
    padding: 10px;
  }

  .show-detail__archive-copy span {
    font-size: 13px;
  }

  .show-detail__archive-copy strong {
    font-size: 22px;
  }

  .hero-stage {
    height: 100svh;
    min-height: 680px;
  }

  .collection-menu {
    top: auto;
    bottom: 12px;
    left: 0;
    z-index: 24;
    width: 100vw;
    height: var(--collection-menu-height, 318px);
    transform: none;
    transform-origin: center bottom;
    touch-action: pan-y;
  }

  .collection-card {
    --collection-card-gap: 16px;

    width: min(86vw, 430px);
    height: fit-content;
    padding: 20px 24px;
    border-width: 4px;
    border-radius: 52px;
  }

  .collection-card.is-menu-active {
    --collection-card-x: 7vw;
    --collection-card-y: 0px;
    --collection-card-scale: 1;
  }

  .collection-card.is-menu-next {
    --collection-card-x: -74vw;
    --collection-card-y: 18px;
    --collection-card-scale: 0.86;
  }

  .collection-card.is-menu-prev {
    --collection-card-x: 74vw;
    --collection-card-y: 18px;
    --collection-card-scale: 0.86;
  }

  .collection-card.is-menu-hidden.is-hidden-above {
    --collection-card-x: -112vw;
    --collection-card-y: 22px;
    --collection-card-scale: 0.8;
  }

  .collection-card.is-menu-hidden.is-hidden-below {
    --collection-card-x: 112vw;
    --collection-card-y: 22px;
    --collection-card-scale: 0.8;
  }

  .collection-card__content {
    width: 100%;
    gap: 14px 8px;
    padding: 4px;
  }

  .collection-card__title {
    margin-bottom: 6px;
    font-size: var(--collection-card-title-size, clamp(52px, 17vw, 70px));
    letter-spacing: -1.2px;
  }

  html[lang="ru"] .collection-card__title {
    font-size: var(--collection-card-title-size, clamp(48px, 15vw, 62px));
    letter-spacing: -1px;
  }

  .collection-card.is-expanded .collection-card__title,
  .collection-card.is-expanding-content.is-expanded .collection-card__title,
  .collection-card.is-collapsing-content.is-expanded .collection-card__title {
    font-size: clamp(56px, 18vw, 80px);
    letter-spacing: -1.2px;
  }

  .collection-card.is-expanded .collection-card__header,
  .collection-card.is-expanding-content.is-expanded .collection-card__header,
  .collection-card.is-collapsing-content.is-expanded .collection-card__header {
    gap: 10px;
    padding: 0 32px;
  }

  html[lang="ru"] .collection-card.is-expanded .collection-card__title,
  html[lang="ru"] .collection-card.is-expanding-content.is-expanded .collection-card__title,
  html[lang="ru"] .collection-card.is-collapsing-content.is-expanded .collection-card__title {
    font-size: clamp(38px, 13vw, 52px);
    letter-spacing: -1px;
  }

  .collection-card__meta {
    gap: 1px;
    padding: 0 4px;
    font-size: 12px;
    letter-spacing: 0;
  }

  .collection-card__meta strong {
    padding: 3px 4px 5px;
    font-size: 16px;
  }

  .collection-card__description {
    max-width: min(58vw, 250px);
    max-height: 42px;
    margin-top: 0;
    padding: 0 8px;
    font-size: 16px;
    line-height: 1.08;
    -webkit-line-clamp: 2;
  }

  html[lang="ru"] .collection-card__description {
    max-height: 42px;
    -webkit-line-clamp: 2;
  }

  .collection-card__cta {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    min-width: 0;
    height: 72px;
    margin-top: auto;
    padding: 20px 24px 22px;
    border-width: 4px;
    border-radius: 36px;
    font-size: 24px;
  }

  .collection-card__cta .button-s__icon,
  .collection-card__cta .button-s__icon svg {
    width: 28px;
    height: 28px;
    flex-basis: 28px;
  }

  .collection-card__expanded-actions {
    gap: 8px;
  }

  .collection-card__designer {
    margin: 0;
  }

  .collection-card__designer-face {
    grid-template-columns: minmax(58px, 112px);
    column-gap: 0;
    row-gap: 6px;
  }

  .collection-card__designer-mark {
    width: 58px;
    height: 58px;
  }

  .collection-card__designer-initials {
    font-size: 19px;
  }

  .collection-card__designer-copy {
    max-width: 112px;
    font-size: 16px;
  }

  .collection-card__designer-sticker {
    min-width: 72px;
    max-width: 112px;
    padding: 8px 10px 10px;
    border-width: 3px;
    font-size: 16px;
  }

  .collection-card.is-expanded .collection-card__slider,
  .collection-card.is-expanding-content.is-expanded .collection-card__slider,
  .collection-card.is-collapsing-content.is-expanded .collection-card__slider {
    gap: 12px;
    padding: 0 24px 8px;
    scroll-padding-inline: 24px;
  }

  .collection-card.is-expanded .collection-card__figure,
  .collection-card.is-expanding-content.is-expanded .collection-card__figure,
  .collection-card.is-collapsing-content.is-expanded .collection-card__figure {
    min-width: calc(100vw - 48px);
    flex-basis: calc(100vw - 48px);
  }

  .collection-card.is-expanded .collection-card__image,
  .collection-card.is-expanding-content.is-expanded .collection-card__image,
  .collection-card.is-collapsing-content.is-expanded .collection-card__image {
    min-height: 280px;
    max-height: 420px;
    border-radius: 52px;
  }

  .collection-game {
    gap: 10px;
    padding: 10px;
  }

  .collection-game::before {
    top: 6px;
    right: -94px;
    width: 280px;
    padding: 6px 10px 8px;
    font-size: 14px;
  }

  .collection-game::after {
    right: 10px;
    bottom: 10px;
    width: 58px;
    height: 58px;
    border-width: 4px;
  }

  .collection-game__hud {
    min-height: 0;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
  }

  .collection-game__copy {
    min-height: 82px;
    padding: 10px 12px 12px;
  }

  .collection-game__title {
    font-size: clamp(28px, 11vw, 44px);
  }

  .collection-game__score {
    font-size: 18px;
  }

  .collection-game__controls {
    grid-column: 1 / -1;
    order: 3;
    min-height: 50px;
    padding: 8px 10px 10px;
    font-size: 14px;
  }

  .collection-game__exit {
    min-width: 84px;
    padding: 0 14px 4px;
    font-size: 22px;
  }

  .collection-game__stage {
    min-height: 320px;
    border-width: 4px;
    box-shadow: 5px 5px 0 var(--black);
  }

  .collection-game__stage::before {
    inset: 7px;
    border-width: 2px;
  }

  .collection-game__stage::after {
    top: 12px;
    left: 12px;
    padding: 4px 7px 6px;
    border-width: 2px;
    font-size: 12px;
  }

  .collection-game__end {
    inset: auto 14px 14px;
  }

  .collection-game__result {
    padding: 12px 14px 14px;
    font-size: clamp(28px, 10vw, 44px);
  }

  .collection-game__end-actions button {
    min-height: 60px;
    font-size: 22px;
  }

  .home-collage {
    top: 82px;
    right: auto;
    bottom: 274px;
    left: 0;
    z-index: 28;
    display: block;
    width: 100vw;
    max-width: 100vw;
    min-width: 0;
    pointer-events: auto;
  }

  .home-collage__stage {
    width: min(100vw, 620px);
    margin: 0 auto;
  }

  .collage-card {
    --base-rotate: var(--look-rotate-mobile, 0deg);
    --cursor-x: 0px;
    --cursor-y: 0px;

    top: var(--look-y-mobile, var(--look-y-desktop, 50%));
    left: var(--look-x-mobile, var(--look-x-desktop, 50%));
    z-index: var(--look-z-mobile, var(--look-z-desktop, 1));
    width: var(--look-w-mobile, var(--look-w-desktop, 36%));
    pointer-events: auto;
  }

  .collage-card:hover,
  .collage-card.is-selected {
    --hover-scale: 1.04;
  }

  .look-item__info {
    display: none;
  }

  .look-mobile-panel {
    position: absolute;
    right: 12px;
    bottom: 44px;
    left: 12px;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 12px 12px 18px;
    border: 4px solid var(--black);
    border-radius: 28px;
    background: var(--yellow);
    color: var(--black);
    pointer-events: auto;
  }

  .look-mobile-panel__copy {
    display: grid;
    min-width: 0;
    gap: 2px;
  }

  .look-mobile-panel__name {
    font-size: 30px;
  }

  .look-mobile-panel__price {
    font-size: 22px;
  }

  .look-mobile-panel__link {
    display: inline-flex;
    min-width: 128px;
    height: 58px;
    align-items: center;
    justify-content: center;
    padding: 0 20px 3px;
    border: 4px solid var(--green-dark);
    border-radius: 10000px;
    background: var(--green);
    color: var(--black);
    font-size: 22px;
    font-weight: 350;
    line-height: 0.95;
    text-decoration: none;
    white-space: nowrap;
  }

  .diagonal-banner {
    --banner-height: clamp(58px, 16vw, 72px);
    --banner-width: calc(100vw + 220px);
    --banner-gap: 16px;
    --banner-speed: 20s;

    right: -224px;
    bottom: 178px;
    display: flex;
    font-size: clamp(50px, 14vw, 64px);
    box-shadow: none;
  }
}

@media (max-width: 1023px) {
  .product-detail__toolbar,
  .cart-detail__toolbar,
  .show-detail__toolbar {
    padding-top: 72px;
  }

  .catalogue__controls
    .filter-control:not(.is-open)
    .filter-control__option:not(.is-active) {
    min-width: 0;
    padding-right: 0;
    padding-left: 0;
    border-width: 0;
  }

  .catalogue__controls .filter-control.is-open {
    width: 100%;
    flex-wrap: wrap;
    gap: 2px;
  }

  .catalogue__controls .filter-control.is-open .filter-control__option {
    flex: 0 0 var(--filter-control-option-width);
    padding-right: 12px;
    padding-left: 12px;
  }

  .catalogue__controls .search-menu.is-open {
    order: 10;
    width: 100%;
    flex-basis: 100%;
  }

  .catalogue__controls .search-menu.is-open .search-menu__surface {
    position: relative;
    inset: auto;
    width: min(100%, var(--search-open-width), calc(100vw - 24px));
    max-width: calc(100vw - 24px);
  }

  .catalogue__controls .search-menu.is-open .search-menu__input {
    width: 100%;
  }
}

@media (max-width: 1279px) {
  .home-actions {
    top: 8px;
    right: 8px;
    transform: none;
  }

  .button {
    --button-width: 97px;
    --button-hover-width: 137px;
    --button-height: 72px;
    --button-hover-height: 72px;
    --button-radius: 36px;

    gap: 12px;
    border-width: 3px;
    font-size: 20px;
  }

  .button--shows {
    --button-width: 122px;
    --button-hover-width: min(540px, calc(100vw - 16px));
    --button-hover-height: 410px;

    padding: 0 32px 2px;
  }

  .button--shows:hover,
  .button--shows.is-open {
    padding: 25px 32px 27px;
  }

  .button-icon-shell {
    width: 20px;
    height: 20px;
    flex-basis: 20px;
  }

  .button-icon,
  .button-icon--large {
    width: 20px;
    height: 20px;
    flex-basis: 20px;
  }

  .button-icon path,
  .search-menu__suggestion path {
    stroke-width: 3;
  }

  .catalogue__back,
  .home-catalogue-link {
    width: 72px;
    height: 72px;
    flex-basis: 72px;
    border-radius: 36px;
  }

  .home-catalogue-link:hover {
    width: 104px;
  }

  .catalogue__back img,
  .home-catalogue-link img {
    width: 24px;
    height: 24px;
  }

  .filter-control {
    --filter-control-trigger-width: 97px;
    --filter-control-trigger-hover-width: 137px;
    --filter-control-option-width: 66px;
    --filter-control-option-padding-x: 21px;
    --filter-control-active-option-width: 66px;
    --filter-control-active-padding-x: 21px;
  }

  .filter-control--colour {
    --filter-control-trigger-width: 107px;
    --filter-control-trigger-hover-width: 165px;
    --filter-control-option-width: 90px;
    --filter-control-active-option-width: 90px;
  }

  .filter-control--price {
    --filter-control-trigger-width: 107px;
    --filter-control-trigger-hover-width: 155px;
    --filter-control-option-width: 134px;
    --filter-control-option-padding-x: 17px;
    --filter-control-active-option-width: 134px;
    --filter-control-active-padding-x: 17px;
  }

  html[lang="ru"] .filter-control--colour {
    --filter-control-option-width: 106px;
    --filter-control-option-padding-x: 10px;
    --filter-control-active-option-width: 106px;
    --filter-control-active-padding-x: 10px;
  }

  .filter-control__trigger,
  .filter-control__option {
    height: 72px;
    min-width: 72px;
    border-width: 3px;
    border-radius: 36px;
    font-size: 20px;
  }

  html[lang="ru"] .filter-control--colour .filter-control__option {
    font-size: 18px;
  }

  .catalogue__controls
    .filter-control:not(.is-open)
    .filter-control__option:not(.is-active) {
    max-width: 0;
    min-width: 0;
    padding-right: 0;
    padding-left: 0;
    border-width: 0;
  }

  .filter-control.is-open .filter-control__option,
  .filter-control__option.is-active {
    min-width: 58px;
    border-width: 3px;
  }

  .catalogue__controls .filter-control.is-open .filter-control__option {
    flex: 0 0 var(--filter-control-option-width);
    padding-right: var(--filter-control-option-padding-x);
    padding-left: var(--filter-control-option-padding-x);
  }

  .search-menu--compact,
  .catalogue__controls .search-menu,
  .home-actions .search-menu--compact {
    --catalogue-search-hover-width: 137px;

    width: 72px;
    height: 72px;
    flex-basis: 72px;
  }

  .search-menu--compact .button--search,
  .search-menu--catalogue .button--search,
  .home-actions .search-menu--compact .button--search {
    --button-width: 72px;
    --button-height: 72px;
    --button-hover-width: var(--catalogue-search-hover-width);
    --search-open-width: min(460px, calc(100vw - 16px));
    --search-open-height: 359px;
    --search-shell-padding: 23px;

    border-width: 3px;
  }

  .button-icon-shell--search,
  .home-actions .search-menu--compact .button-icon-shell--search,
  .home-actions .search-menu--compact .button-icon--large {
    width: 20px;
    height: 20px;
    flex-basis: 20px;
  }

  .home-actions .search-menu--compact .button-icon path {
    stroke-width: 3;
  }

  .commerce-status,
  .product-detail__cart-status .commerce-status {
    gap: 6px;
    padding: 26px;
    border-width: 3px;
  }

  .commerce-status__action,
  .commerce-status__action img {
    width: 20px;
    height: 20px;
    flex-basis: 20px;
  }

  .commerce-status__divider {
    width: 20px;
    height: 20px;
    flex-basis: 20px;
    background-size: 20px 20px;
  }

  .commerce-status__count {
    top: -25px;
    right: -25px;
    min-width: 24px;
    height: 24px;
    padding: 0 6px 2px;
    font-size: 16px;
    line-height: 1;
    letter-spacing: 0.32px;
  }

  .product-detail__toolbar,
  .cart-detail__toolbar,
  .show-detail__toolbar {
    min-height: 0;
    padding: 8px 0;
  }

  .product-detail__back,
  .cart-detail__back,
  .show-detail__back {
    width: 155px;
    height: 72px;
    padding: 0 36px 2px 26px;
    border-width: 3px;
    border-left-width: 0;
    border-radius: 0 36px 36px 0;
    font-size: 20px;
  }

  .product-detail__back:hover,
  .cart-detail__back:hover,
  .show-detail__back:hover {
    width: 195px;
  }

  .product-detail__back img,
  .product-detail__add img,
  .product-detail__nav img,
  .cart-detail__back img,
  .show-detail__back img {
    width: 20px;
    height: 20px;
    flex-basis: 20px;
  }
}

@media (max-width: 479px) {
  .catalogue__heading p {
    flex-wrap: wrap;
  }

  .search-menu--catalogue.is-open {
    width: 100%;
    flex-basis: 100%;
  }

  .search-menu--catalogue.is-open .search-menu__surface {
    right: auto;
    left: 0;
    width: min(100%, var(--search-open-width), calc(100vw - 24px));
  }

  .product-detail__stage {
    padding: 0 68px;
  }

  .product-detail__product {
    width: min(calc(100vw - 136px), 300px);
  }

  .product-detail__purchase {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .product-detail__size-selector {
    order: 2;
    width: 100%;
    justify-content: center;
  }

  .size-selector {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
  }

  .size-selector:not(.is-open) .size-selector__option {
    display: none;
  }

  .size-selector.is-open .size-selector__option {
    flex: 1 1 64px;
    max-width: none;
    min-width: 64px;
    padding-right: 12px;
    padding-left: 12px;
  }

  .product-detail__add {
    order: 1;
    width: 100%;
    min-width: 0;
  }

  .product-detail__add:hover {
    min-width: 0;
  }

  .look-mobile-panel {
    right: 8px;
    left: 8px;
    gap: 8px;
  }

  .look-mobile-panel__name {
    font-size: clamp(22px, 8vw, 30px);
  }

  .look-mobile-panel__link {
    min-width: 104px;
    padding-right: 14px;
    padding-left: 14px;
    font-size: 18px;
  }
}

@media (max-width: 1439px) {
  .cart-detail__hero {
    gap: 24px;
    padding: 10px clamp(32px, 5vw, 72px) 32px 0;
  }

  .cart-detail__header {
    padding: 28px 0 0;
  }

  .cart-detail__header h1 {
    font-size: clamp(88px, 11vw, 172px);
  }

  .cart-detail__body {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 400px);
    gap: 20px;
    padding: 0 clamp(32px, 5vw, 72px) 80px;
  }

  .cart-detail__list {
    padding: 0;
  }

  .cart-detail__footer {
    padding: 18px 20px;
  }

  .cart-checkout__header {
    padding: 24px 24px 22px;
  }

  .cart-checkout__form {
    padding: 22px;
  }
}

@media (max-width: 1023px) {
  .cart-detail__hero {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 8px 32px 28px 0;
  }

  .cart-detail__header {
    justify-items: start;
    padding: 0 0 0 32px;
    text-align: left;
  }

  .cart-detail__header h1 {
    font-size: clamp(88px, 18vw, 148px);
  }

  .cart-detail__body {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 0 32px 72px;
  }

  .cart-checkout {
    position: static;
  }

  .cart-detail__footer {
    position: static;
    box-shadow: 8px 8px 0 var(--black);
  }

  .cart-checkout {
    box-shadow: 8px 8px 0 var(--black);
  }

  .cart-checkout__header h2 {
    font-size: clamp(56px, 10vw, 92px);
  }

  .cart-checkout__form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }

  .cart-checkout__submit,
  .cart-checkout__status {
    grid-column: 1 / -1;
  }
}

@media (max-width: 767px) {
  .language-switcher--static {
    top: 10px;
    right: 10px;
  }

  .not-found {
    grid-template-columns: 1fr;
    gap: 18px;
    min-height: 100vh;
    padding: 72px 16px 96px;
  }

  .not-found__panel {
    min-height: 0;
    padding: 24px 18px 28px;
    border-width: 4px;
    box-shadow: 6px 6px 0 var(--black);
  }

  .not-found__panel h1 {
    font-size: clamp(132px, 44vw, 220px);
  }

  .not-found__statement {
    max-width: 11ch;
    font-size: clamp(42px, 14vw, 74px);
  }

  .not-found__copy {
    padding: 0;
  }

  .not-found__badge,
  .not-found__message {
    border-width: 4px;
    box-shadow: 6px 6px 0 var(--black);
  }

  .not-found__badge {
    width: min(92vw, 360px);
    padding: 24px 20px 30px;
  }

  .not-found__message {
    padding: 22px;
  }

  .not-found__actions {
    display: grid;
  }

  .not-found__action {
    min-height: 64px;
    border-width: 4px;
    font-size: 24px;
  }

  .not-found__ticker {
    bottom: 18px;
    border-block-width: 4px;
  }

  .cart-detail__hero {
    padding: 8px 16px 24px 0;
  }

  .cart-detail__header {
    gap: 8px;
    padding: 0 0 0 16px;
  }

  .cart-detail__header h1 {
    font-size: clamp(72px, 26vw, 128px);
  }

  .cart-detail__body {
    padding: 0 16px 64px;
  }

  .cart-detail__list {
    padding: 0;
  }

  .cart-detail__footer {
    flex-direction: column-reverse;
    align-items: stretch;
    gap: 18px;
    margin-top: 14px;
    padding: 16px;
    border-width: 4px;
    box-shadow: 6px 6px 0 var(--black);
  }

  .cart-checkout {
    border-width: 4px;
    box-shadow: 6px 6px 0 var(--black);
  }

  .cart-checkout__header {
    padding: 22px 18px 20px;
    border-bottom-width: 4px;
  }

  .cart-checkout__header h2 {
    font-size: clamp(48px, 16vw, 74px);
  }

  .cart-checkout__header p:last-child {
    font-size: 20px;
  }

  .cart-checkout__form {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 18px;
  }

  .cart-checkout__fields--split {
    grid-template-columns: 1fr;
  }

  .cart-checkout__fields--card {
    grid-template-columns: minmax(0, 1fr) minmax(92px, 0.68fr);
  }

  .cart-checkout__field input,
  .cart-checkout__field textarea {
    border-width: 4px;
    font-size: 22px;
  }

  .cart-checkout__submit {
    min-height: 64px;
    padding: 0 22px 3px;
    border-width: 4px;
    font-size: 24px;
  }
}

@media (max-width: 479px) {
  .cart-checkout__fields--card {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  :root {
    --duration-search: 0ms;
    --duration-menu-cycle: 0ms;
    --duration-menu-fade: 0ms;
    --duration-expand: 120ms;
    --duration-expand-buffer: 0ms;
    --duration-expand-content: 120ms;
    --duration-expand-content-buffer: 0ms;
    --duration-cta-replay: 120ms;
    --duration-cta-collapse: 120ms;
    --duration-view-transition: 120ms;
    --ease-jelly: cubic-bezier(0.22, 1, 0.36, 1);
  }

  .button,
  .search-menu__surface {
    transition-duration: 0ms;
    animation-duration: 0ms;
  }

  .collection-card__cta.is-label-replay {
    animation-duration: var(--duration-cta-replay);
  }

  .collection-card__cta.is-click-collapse {
    animation-duration: var(--duration-cta-collapse);
  }

  .diagonal-banner__track {
    animation: none;
    transform: translate3d(-10%, 0, 0);
  }

  .product-card__sale-line {
    animation: none;
    transform: translate3d(-10%, 0, 0);
  }
}
