:root {
  --white: #fff;
  --black: #000;
  --ink: #111;
  --muted: #676767;
  --line: #eeeeee;
  --cookie: #ebebeb;
  --red: #8e0715;
  --font-body: Montserrat, "Helvetica Neue", Helvetica, sans-serif;
  --font-logo: Georgia, "Times New Roman", serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-body);
}

body {
  margin: 0;
}

.landing-home,
.storefront,
.checkout-shell {
  animation: page-enter 460ms var(--ease-out) both;
}

.page-is-leaving .landing-home,
.page-is-leaving .storefront,
.page-is-leaving .checkout-shell {
  opacity: 0;
  transform: translateY(-12px) scale(0.992);
  transition:
    opacity 240ms var(--ease-out),
    transform 280ms var(--ease-out);
}

.cart-is-open body,
.lightbox-is-open body {
  overflow: hidden;
}

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

button {
  font: inherit;
}

.storefront {
  min-height: 100vh;
  background: var(--white);
}

.storefront--product {
  height: 100svh;
  overflow: hidden;
}

.storefront--info {
  animation: none;
}

.landing-home {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100svh;
  min-height: 560px;
  overflow: hidden;
  background: var(--white);
}

.landing-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-rows: minmax(190px, 33vh) auto 1fr;
  height: 100%;
  overflow: hidden;
}

.landing-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgb(255 255 255 / 0%) 0 30%, rgb(255 255 255 / 68%) 46%, rgb(255 255 255 / 96%) 100%);
}

.landing-hero__collage {
  position: relative;
  z-index: 0;
  align-self: start;
  width: 100vw;
  margin-top: clamp(10px, 2.5vh, 26px);
  overflow: hidden;
}

.landing-hero__rail {
  overflow: hidden;
}

.landing-hero__track {
  display: flex;
  width: max-content;
  gap: clamp(14px, 2vw, 28px);
  transform: translateX(0);
}

.landing-hero__track.is-ready {
  animation: hero-marquee var(--hero-marquee-duration) linear infinite;
}

.landing-hero__tile {
  flex: 0 0 clamp(176px, 17vw, 320px);
  height: clamp(230px, 25vw, 430px);
  margin: 0;
  overflow: hidden;
  background: var(--white);
}

.landing-hero__tile img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  filter: saturate(0.96) contrast(1.06);
}

.landing-hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  width: min(900px, calc(100vw - 64px));
  margin: 0 auto;
  padding-top: clamp(62px, 10vh, 124px);
  text-align: center;
}

.landing-hero__content h1 {
  margin: 0;
  color: var(--black);
  font-size: clamp(42px, 5vw, 82px);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.landing-hero__catalog {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  margin-top: clamp(18px, 3vh, 34px);
  padding: 0 0 6px;
  border-bottom: 1px solid currentColor;
  color: var(--black);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
  transition: letter-spacing 220ms ease, opacity 220ms ease;
}

.landing-hero__catalog:hover {
  letter-spacing: 0.18em;
  opacity: 0.62;
}

.landing-hero__links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 42px);
  justify-self: stretch;
  width: 100%;
  margin-top: clamp(28px, 4.8vh, 54px);
  text-align: left;
}

.landing-hero__link-column {
  display: grid;
  align-content: start;
  gap: 8px;
  min-width: 0;
}

.landing-hero__link-column h2 {
  margin: 0 0 5px;
  color: var(--black);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.25;
  text-transform: uppercase;
}

.landing-hero__link-column a {
  display: inline-block;
  color: var(--black);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.35;
  opacity: 0.58;
  transition:
    opacity 220ms ease,
    transform 220ms var(--ease-out);
}

.landing-hero__link-column a:hover {
  opacity: 1;
  transform: translateX(4px);
}

.store-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 80px;
  padding: 10px 42px;
  background: rgb(255 255 255 / 82%);
  backdrop-filter: blur(12px);
}

.store-header__menu,
.store-header__brand,
.store-header__cart {
  color: var(--black);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.store-header__menu {
  justify-self: start;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.store-header__cart {
  justify-self: end;
  transition: letter-spacing 220ms ease, opacity 220ms ease;
}

.store-header__cart:hover {
  letter-spacing: 0.22em;
  opacity: 0.62;
}

.store-header__brand {
  justify-self: center;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.store-header__cart span {
  display: inline-block;
  min-width: 1.5em;
  text-align: right;
}

.store-header__back {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1;
  text-transform: none;
}

.product-feed {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: min(8vw, 112px);
  row-gap: 36px;
  width: min(1160px, calc(100% - 84px));
  margin: 0 auto;
  padding: 64px 0 150px;
}

.product-card {
  min-width: 0;
}

.product-card__visual {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--white);
  transition: opacity 260ms ease;
}

.product-card__visual:hover {
  opacity: 0.86;
}

.product-card__visual img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

.product-image-placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  min-height: 180px;
  place-items: center;
  padding: 24px;
  background: #f3f1ed;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-align: center;
  text-transform: uppercase;
}

.product-card h2 {
  margin: 30px 0 0;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.35;
}

.product-card p {
  margin: 18px 0 0;
  color: var(--black);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
}

.info-page {
  display: grid;
  grid-template-columns: minmax(180px, 260px) minmax(0, 700px);
  gap: min(9vw, 120px);
  width: min(1160px, calc(100% - 84px));
  margin: 0 auto;
  padding: 72px 0 150px;
}

.info-page__nav {
  position: sticky;
  top: 116px;
  align-self: start;
  display: grid;
  gap: 18px;
  padding-top: 8px;
}

.info-page__nav a {
  position: relative;
  display: grid;
  gap: 5px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgb(0 0 0 / 10%);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
  transition: border-color 220ms ease, color 220ms ease, opacity 220ms ease;
}

.info-page__nav a:hover,
.info-page__nav a.is-active,
.info-page__nav a.is-pending {
  border-color: var(--black);
  color: var(--black);
}

.info-page__nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 -1px 0;
  height: 1px;
  background: var(--black);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left center;
  transition:
    opacity 220ms var(--ease-out),
    transform 260ms var(--ease-out);
}

.info-page__nav a.is-active::after,
.info-page__nav a.is-pending::after {
  opacity: 1;
  transform: scaleX(1);
}

.info-page__nav a span {
  color: inherit;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.info-page__content {
  min-width: 0;
  animation: info-content-enter 520ms var(--ease-out) both;
}

.info-page-is-leaving .info-page__content {
  opacity: 0;
  transition: opacity 260ms ease-out;
}

.info-page-is-leaving .info-page__nav a:not(.is-pending) {
  opacity: 0.84;
  transition: opacity 120ms ease-out;
}

.info-page__eyebrow {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.info-page h1 {
  margin: 0;
  color: var(--black);
  font-size: clamp(42px, 7vw, 86px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.info-page__summary {
  max-width: 580px;
  margin: 34px 0 0;
  color: #444;
  font-size: clamp(18px, 2.4vw, 28px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.22;
}

.info-page__sections {
  display: grid;
  gap: 30px;
  margin-top: 62px;
}

.info-page__section {
  display: grid;
  grid-template-columns: minmax(130px, 190px) minmax(0, 1fr);
  gap: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.info-page__section h2 {
  margin: 0;
  color: var(--black);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.info-page__section p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.product-page {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 440px);
  gap: min(9vw, 116px);
  align-items: start;
  width: min(1160px, calc(100% - 84px));
  height: calc(100svh - 80px);
  margin: 0 auto;
  overflow: hidden;
  padding: clamp(28px, 5vh, 58px) 0;
}

.product-page__media {
  min-width: 0;
}

.product-gallery {
  display: grid;
  gap: 18px;
}

.product-gallery__stage-wrap {
  position: relative;
}

.product-gallery__placeholder {
  min-height: min(68vh, 720px);
}

.product-gallery__stage {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  transition: opacity 220ms ease, transform 320ms var(--ease-soft);
}

.product-gallery__stage:hover {
  opacity: 0.86;
  transform: scale(0.996);
}

.product-gallery__stage img {
  display: block;
  width: 100%;
  max-height: calc(100svh - 210px);
  object-fit: contain;
  object-position: center top;
}

.product-gallery__arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--black);
  cursor: pointer;
  font-size: 34px;
  font-weight: 300;
  line-height: 1;
  opacity: 0.72;
  transform: translateY(-50%);
  transition: opacity 220ms ease;
}

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

.product-gallery__arrow:hover {
  opacity: 1;
}

.product-gallery__arrow:disabled {
  cursor: default;
  opacity: 0.16;
  pointer-events: none;
}

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

.product-gallery__arrow--next {
  right: -76px;
}

.product-gallery__controls {
  display: grid;
  gap: 12px;
}

.product-gallery__thumbs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: none;
}

.product-gallery__thumbs::-webkit-scrollbar {
  display: none;
}

.product-gallery__thumb {
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  padding: 4px;
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
  opacity: 0.46;
  transition: border-color 220ms ease, opacity 220ms ease;
}

.product-gallery__thumb.is-active,
.product-gallery__thumb:hover {
  border-color: var(--black);
  opacity: 1;
}

.product-gallery__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-gallery__selector {
  position: relative;
  width: min(140px, 100%);
  height: 1px;
  overflow: hidden;
  background: var(--line);
}

.product-gallery__selector span {
  position: absolute;
  inset: 0 auto 0 0;
  width: calc(100% / var(--gallery-count, 1));
  background: var(--black);
  transform: translateX(calc(var(--gallery-index, 0) * 100%));
  transition: transform 260ms var(--ease-soft);
}

.product-page__info {
  align-self: start;
  padding-top: 30px;
}

.product-page__eyebrow {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.product-page h1 {
  margin: 0;
  color: var(--black);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.product-page__price {
  margin: 28px 0 0;
  color: var(--black);
  font-size: 70px;
  font-weight: 400;
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.product-page__rating {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: max-content;
  margin-top: 22px;
  color: var(--black);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.35;
  transition: opacity 220ms ease;
}

.product-page__rating > span,
.product-page__rating-score {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.product-page__rating-score {
  gap: 5px;
}

.product-page__rating-star {
  font-size: 0.9em;
  line-height: 1;
}

.product-page__rating span:last-child {
  color: var(--muted);
  font-weight: 400;
}

.product-page__rating:hover {
  opacity: 0.62;
}

.product-page__description {
  margin: 34px 0 0;
  color: #555;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.75;
}

.product-options {
  margin-top: 42px;
}

.product-options p,
.product-note p {
  margin: 0 0 14px;
  color: var(--black);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.35;
  text-transform: uppercase;
}

.product-options__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-options__button {
  min-height: 28px;
  padding: 0 0 4px;
  border: 0;
  border-bottom: 1px solid transparent;
  background: transparent;
  color: var(--black);
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  transition: border-color 180ms ease, opacity 220ms ease;
}

.product-options__button:hover,
.product-options__button.is-selected {
  border-color: var(--black);
  color: var(--black);
}

.product-options__button:hover {
  opacity: 0.62;
}

.product-actions {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.product-actions__add,
.cart-drawer__continue,
.cart-drawer__checkout {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 34px;
  padding: 0 0 6px;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: var(--black);
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
  transition: letter-spacing 220ms ease, opacity 220ms ease;
}

.product-actions__add:hover,
.cart-drawer__continue:hover,
.cart-drawer__checkout:hover {
  letter-spacing: 0.18em;
  opacity: 0.62;
}

.product-actions__add:disabled {
  cursor: not-allowed;
  opacity: 0.42;
}

.product-note {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.product-note span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.product-reviews {
  position: fixed;
  inset: 0;
  z-index: 70;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 220ms ease,
    visibility 220ms ease;
}

.product-reviews:target {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.product-reviews__backdrop {
  position: absolute;
  inset: 0;
  background: rgb(0 0 0 / 14%);
}

.product-reviews__panel {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 28px;
  width: min(430px, 100vw);
  height: 100%;
  overflow: auto;
  padding: 30px;
  background: var(--white);
  box-shadow: 18px 0 44px rgb(0 0 0 / 8%);
  transform: translateX(-100%);
  transition: transform 380ms var(--ease-soft);
}

.product-reviews:target .product-reviews__panel {
  transform: translateX(0);
}

.product-reviews__intro {
  position: relative;
  display: grid;
  align-content: start;
  gap: 10px;
  min-width: 0;
  padding-bottom: 22px;
}

.product-reviews__eyebrow {
  margin: 0;
  color: var(--black);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.35;
  text-transform: uppercase;
}

.product-reviews__intro h2 {
  margin: 0;
  color: var(--black);
  font-size: 34px;
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
}

.product-reviews__intro h2 span {
  font-size: 0.9em;
}

.product-reviews__close {
  position: absolute;
  top: 4px;
  right: 0;
  color: var(--black);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.35;
  text-transform: uppercase;
  transition: opacity 220ms ease;
}

.product-reviews__close:hover {
  opacity: 0.62;
}

.product-reviews__summary-text {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.product-reviews__badge,
.product-review-card__badge {
  margin: 0;
  color: var(--black);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.35;
  text-transform: uppercase;
}

.product-reviews__notice {
  padding: 14px 16px;
  border: 1px solid var(--line);
  color: var(--black);
  font-size: 12px;
  line-height: 1.55;
}

.product-reviews__notice--success {
  border-color: rgb(0 0 0 / 18%);
  background: rgb(255 255 255 / 92%);
}

.product-reviews__notice--error {
  border-color: rgb(142 7 21 / 22%);
  background: rgb(142 7 21 / 4%);
}

.product-reviews__distribution {
  display: grid;
  gap: 10px;
}

.product-reviews__distribution-row {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr) 22px;
  gap: 10px;
  align-items: center;
}

.product-reviews__distribution-row span,
.product-reviews__distribution-row strong {
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.2;
}

.product-reviews__bar {
  height: 2px;
  overflow: hidden;
  background: var(--line);
}

.product-reviews__bar i {
  display: block;
  height: 100%;
  background: var(--black);
}

.product-review-form {
  display: grid;
  gap: 18px;
  padding: 2px 0 0;
}

.product-review-form h3 {
  margin: 0 0 6px;
  color: var(--black);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.35;
  text-transform: uppercase;
}

.product-review-form__field {
  display: grid;
  gap: 8px;
}

.product-review-form__field span,
.product-review-form__rating legend {
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.35;
}

.product-review-form__field input,
.product-review-form__field textarea {
  width: 100%;
  padding: 0;
  border: 0;
  border-bottom: 1px solid var(--black);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--black);
  font: inherit;
  font-size: 13px;
  line-height: 1.65;
  transition: border-color 220ms ease, opacity 220ms ease;
}

.product-review-form__field input {
  min-height: 40px;
}

.product-review-form__field textarea {
  min-height: 108px;
  padding-top: 8px;
  resize: vertical;
}

.product-review-form__field input:focus,
.product-review-form__field textarea:focus {
  border-color: #777;
}

.product-review-form__rating {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  border: 0;
}

.product-review-form__rating legend {
  padding: 0;
}

.product-review-form__rating-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-review-form__rating-list label {
  position: relative;
  display: grid;
  place-items: center;
  min-width: 42px;
  min-height: 34px;
  padding: 0 12px 5px;
  border-bottom: 1px solid transparent;
  cursor: pointer;
  transition: border-color 220ms ease, opacity 220ms ease;
}

.product-review-form__rating-list label:hover,
.product-review-form__rating-list label:has(input:checked) {
  border-color: var(--black);
}

.product-review-form__rating-list input {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}

.product-review-form__rating-list span {
  color: var(--black);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
}

.product-review-form__submit {
  justify-content: flex-start;
  width: max-content;
  min-height: 34px;
  padding: 0 0 6px;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: var(--black);
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
  transition: letter-spacing 220ms ease, opacity 220ms ease;
}

.product-review-form__submit:hover {
  letter-spacing: 0.18em;
  opacity: 0.62;
}

.product-review-form__note {
  margin: -2px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.product-reviews__list {
  display: grid;
  gap: 18px;
  align-content: start;
}

.product-review-card {
  display: grid;
  gap: 20px;
  padding: 26px;
  border: 1px solid var(--line);
  background: rgb(255 255 255 / 74%);
}

.product-review-card__head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 24px;
}

.product-review-card__author {
  margin: 0;
  color: var(--black);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.25;
}

.product-review-card__meta {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.35;
  text-transform: uppercase;
}

.product-review-card__rating {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--black);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.35;
  white-space: nowrap;
}

.product-review-card h3 {
  margin: 0;
  color: var(--black);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.product-review-card__body {
  margin: 0;
  color: #555;
  font-size: 14px;
  line-height: 1.75;
}

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

.product-review-card__notes div {
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.product-review-card__notes span {
  display: block;
  margin: 0 0 8px;
  color: var(--black);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.35;
  text-transform: uppercase;
}

.product-review-card__notes p,
.product-review-card__reply span {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.product-review-card__reply {
  display: grid;
  gap: 8px;
  padding: 18px 20px;
  border-left: 1px solid var(--black);
  background: #fafafa;
}

.product-review-card__reply p,
.product-review-card__reply strong {
  margin: 0;
  color: var(--black);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.35;
  text-transform: uppercase;
}

.product-reviews__empty {
  margin: 0;
  padding: 24px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 60;
  visibility: hidden;
  background: rgb(0 0 0 / 14%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease, visibility 220ms ease;
}

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

.cart-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: min(430px, 100vw);
  height: 100%;
  padding: 30px;
  background: var(--white);
  box-shadow: -18px 0 44px rgb(0 0 0 / 8%);
  transform: translateX(100%);
  transition: transform 380ms var(--ease-soft);
}

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

.cart-drawer__head,
.cart-drawer__total,
.cart-item__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cart-drawer__head h2 {
  margin: 0;
  color: var(--black);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.03em;
}

.cart-drawer__head-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cart-drawer__head button,
.cart-drawer__continue,
.cart-drawer__checkout,
.cart-item__controls button {
  border: 0;
  background: transparent;
  color: var(--black);
  cursor: pointer;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cart-drawer__continue,
.cart-drawer__checkout {
  border-bottom: 1px solid currentColor;
  font-size: 11px;
  justify-self: start;
}

.cart-drawer__items {
  display: flex;
  flex-direction: column;
  gap: 22px;
  overflow: auto;
  padding: 34px 0 26px;
}

.cart-drawer__empty {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.cart-item {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 18px;
}

.cart-item img {
  display: block;
  width: 78px;
  height: 98px;
  object-fit: contain;
  background: var(--white);
}

.cart-item h3 {
  margin: 0;
  color: var(--black);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.35;
}

.cart-item p {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 9px 0 14px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
}

.cart-item p strong {
  color: var(--black);
  font-size: 17px;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.cart-item__controls {
  justify-content: flex-start;
}

.cart-item__controls span {
  min-width: 18px;
  color: var(--black);
  font-size: 12px;
  text-align: center;
}

.cart-drawer__bottom {
  display: grid;
  gap: 16px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.cart-drawer__total span,
.cart-drawer__total strong {
  color: var(--black);
  font-size: 13px;
  line-height: 1.35;
}

.cart-drawer__total strong {
  font-weight: 700;
}

.cart-drawer__reset {
  color: #999;
  opacity: 0.72;
  transition: color 220ms ease, opacity 220ms ease;
}

.cart-drawer__reset:hover {
  color: var(--black);
  opacity: 1;
}

.checkout-card {
  display: grid;
  gap: 26px;
}

.checkout-card__field {
  position: relative;
  display: grid;
  gap: 8px;
}

.checkout-card__field span,
.checkout-card__field label,
.checkout-card__payment legend {
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.35;
}

.checkout-card__field input {
  width: 100%;
  min-height: 40px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid var(--black);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--black);
  font: inherit;
  font-size: 13px;
  transition: border-color 220ms ease, opacity 220ms ease;
}

.checkout-card__field input:focus {
  border-color: #777;
}

.checkout-card__field--address {
  z-index: 4;
}

.checkout-card__match {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 8;
  display: grid;
  gap: 5px;
  width: 100%;
  padding: 12px 0 14px;
  border-top: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
  background: var(--white);
  box-shadow: 0 18px 34px rgb(0 0 0 / 7%);
}

.checkout-card__match[hidden] {
  display: none;
}

.checkout-card__match > span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.checkout-card__match strong {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.checkout-card__match small,
.checkout-card__match-message {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
}

.checkout-card__match button {
  justify-self: start;
  margin-top: 6px;
  padding: 0 0 4px;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: var(--black);
  cursor: pointer;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: letter-spacing 220ms ease, opacity 220ms ease;
}

.checkout-card__match button:hover {
  letter-spacing: 0.18em;
  opacity: 0.62;
}

.checkout-card__payment {
  display: grid;
  gap: 0;
  margin: 14px 0 0;
  padding: 0;
  border: 0;
}

.checkout-card__payment legend {
  margin-bottom: 12px;
  padding: 0;
  font-size: 14px;
}

.checkout-card__payment label {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 48px;
  gap: 14px;
  padding: 0;
  border-bottom: 1px solid rgb(0 0 0 / 16%);
  color: var(--black);
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.35;
  transition: border-color 220ms ease, opacity 220ms ease;
}

.checkout-card__payment label:first-of-type {
  border-top: 1px solid rgb(0 0 0 / 16%);
}

.checkout-card__payment label:hover {
  border-color: var(--black);
}

.checkout-card__payment label:has(input:checked) {
  border-color: var(--black);
}

.checkout-card__payment input {
  appearance: none;
  position: relative;
  flex: 0 0 22px;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  margin: 0;
  border: 1px solid var(--black);
  border-radius: 999px;
  background: var(--white);
  cursor: pointer;
  transition: background 180ms ease, box-shadow 180ms ease;
}

.checkout-card__payment input::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--white);
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 180ms ease, transform 180ms var(--ease-soft);
}

.checkout-card__payment input:checked {
  background: var(--black);
}

.checkout-card__payment input:checked::before {
  opacity: 1;
  transform: scale(1);
}

.checkout-card__payment input:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 4px rgb(0 0 0 / 10%);
}

.checkout-card__payment span {
  display: block;
  padding-top: 1px;
}

.checkout-card__submit {
  justify-content: flex-start;
  width: max-content;
  min-height: 34px;
  margin-top: 2px;
  padding: 0 0 6px;
  border: 0;
  border-bottom: 1px solid currentColor;
  border-radius: 0;
  background: transparent;
  color: var(--black);
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: letter-spacing 220ms ease, opacity 220ms ease;
}

.checkout-card__submit:hover {
  letter-spacing: 0.18em;
  opacity: 0.62;
}

.checkout-card__note {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.checkout-shell {
  min-height: 100vh;
  background: var(--white);
}

.checkout-page {
  display: grid;
  grid-template-columns: minmax(320px, 410px) minmax(430px, 520px);
  gap: min(8vw, 76px);
  align-items: start;
  width: min(1160px, calc(100% - 84px));
  margin: 0 auto;
  padding: 56px 0 96px;
}

.checkout-page--success {
  grid-template-columns: minmax(280px, 520px);
  min-height: calc(100svh - 130px);
  align-items: center;
}

.checkout-success {
  display: grid;
  gap: 18px;
  padding: 34px 0 38px;
}

.checkout-success__mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--black);
  border-radius: 999px;
  color: var(--black);
  font-size: 20px;
  line-height: 1;
}

.checkout-success h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(38px, 5vw, 72px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.92;
}

.checkout-success p {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.checkout-success .checkout-card__submit {
  display: inline-flex;
}

.checkout-order {
  display: grid;
  gap: 20px;
  padding-top: 8px;
}

.checkout-order__items {
  display: grid;
  gap: 18px;
}

.checkout-order__empty {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.checkout-order__item {
  display: grid;
  grid-template-columns: 48px minmax(170px, 1fr) 64px minmax(82px, auto) 18px;
  gap: 16px;
  align-items: center;
}

.checkout-order__item img {
  display: block;
  width: 48px;
  height: 76px;
  object-fit: contain;
}

.checkout-order__item h3 {
  margin: 0;
  color: var(--black);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.checkout-order__item p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.3;
}

.checkout-order__item strong {
  color: var(--black);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  white-space: nowrap;
}

.checkout-order__item-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  padding-top: 0;
}

.checkout-order__item-controls button,
.checkout-order__remove {
  display: inline-grid;
  place-items: center;
  width: 16px;
  height: 16px;
  padding: 0;
  border: 1px solid #d7d7d7;
  border-radius: 999px;
  background: transparent;
  color: #9a9a9a;
  cursor: pointer;
  font-size: 12px;
  line-height: 1;
}

.checkout-order__item-controls span {
  min-width: 12px;
  color: var(--black);
  font-size: 13px;
  text-align: center;
}

.checkout-order__remove {
  margin-top: 0;
  font-size: 14px;
}

.checkout-order__total {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
  padding-top: 8px;
}

.checkout-order__total span,
.checkout-order__total strong {
  color: var(--black);
  font-size: 13px;
  line-height: 1.35;
}

.checkout-order__total strong {
  font-weight: 700;
}

.checkout-card--page {
  margin: 0;
  padding: 0;
  border: 0;
}

.product-lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgb(255 255 255 / 94%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.product-lightbox.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.product-lightbox__close {
  position: absolute;
  top: 30px;
  right: 34px;
  z-index: 2;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--black);
  cursor: pointer;
  font-size: 34px;
  font-weight: 300;
  line-height: 1;
  transition: opacity 220ms ease;
}

.product-lightbox__close:hover {
  opacity: 0.62;
}

.product-lightbox__figure {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 96vw;
  height: 92vh;
  margin: 0;
  overflow: hidden;
  cursor: zoom-in;
  transform: scale(0.98);
  transition: transform 360ms var(--ease-soft);
}

.product-lightbox.is-open .product-lightbox__figure {
  transform: scale(1);
}

.product-lightbox__figure img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 260ms var(--ease-soft);
}

.product-gallery__stage img.is-switching,
.product-lightbox__figure.is-switching img {
  animation: image-switch 360ms var(--ease-soft);
}

.product-lightbox__figure.is-zoomed {
  cursor: zoom-out;
}

.product-lightbox__figure.is-zoomed img {
  transform: scale(1.85);
}

.product-lightbox__nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgb(92 92 92 / 72%);
  color: var(--white);
  cursor: pointer;
  font-size: 34px;
  font-weight: 300;
  line-height: 1;
  transform: translateY(-50%);
  transition: background 220ms ease, transform 220ms var(--ease-soft);
}

.product-lightbox__nav:hover {
  background: rgb(64 64 64 / 88%);
}

.product-lightbox__nav:active {
  transform: translateY(-50%) scale(0.94);
}

.product-lightbox--single .product-lightbox__nav {
  display: none;
}

.product-lightbox__nav--prev {
  left: 34px;
}

.product-lightbox__nav--next {
  right: 34px;
}

@keyframes image-switch {
  0% {
    opacity: 0;
    transform: scale(0.985);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes hero-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(var(--hero-marquee-distance));
  }
}

@keyframes hero-marquee-reverse {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes page-enter {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.992);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes info-content-enter {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.footer {
  padding: 90px 0 280px;
  background: var(--white);
}

.footer__inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 48px;
  width: min(1160px, calc(100% - 84px));
  margin: 0 auto;
}

.footer__column {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer__column h2 {
  margin: 0 0 8px;
  color: var(--black);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.35;
}

.footer__column a {
  display: inline-block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 400;
  line-height: 1.35;
  transition:
    color 220ms ease,
    opacity 220ms ease,
    transform 220ms var(--ease-out);
}

.footer__column a:hover {
  color: var(--black);
  transform: translateX(4px);
}

.cookie {
  position: fixed;
  right: 20px;
  bottom: 28px;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 24px;
  width: min(600px, calc(100vw - 32px));
  padding: 18px 24px;
  border: 1px solid rgb(0 0 0 / 8%);
  border-radius: 5px;
  background: var(--cookie);
  box-shadow: 0 0 5px rgb(0 0 0 / 10%);
  transition: opacity 220ms ease, transform 220ms var(--ease-out), visibility 220ms ease;
}

.cookie p {
  flex: 1 1 auto;
  margin: 0;
  color: #555;
  font-size: 10px;
  line-height: 1.45;
}

.cookie button {
  flex: 0 0 auto;
  min-width: 62px;
  min-height: 36px;
  border: 1px solid #999;
  border-radius: 5px;
  background: transparent;
  color: #555;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
}

.cookie button:hover {
  color: #111;
  border-color: #111;
  background: #e8e8e8;
}

.cookie--hidden {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
}

.reveal-enabled .reveal-target {
  opacity: 0;
  filter: blur(5px);
  transition:
    opacity 480ms var(--ease-out),
    filter 480ms var(--ease-out),
    transform 480ms var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, filter, transform;
}

.reveal-enabled .reveal-up {
  transform: translateY(48px);
}

.reveal-enabled .reveal-left {
  transform: translateX(-38px);
}

.reveal-enabled .reveal-right {
  transform: translateX(38px);
}

.reveal-enabled .reveal-target.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0);
}

.reveal-enabled .product-card.reveal-target {
  opacity: 1;
  filter: none;
  transform: none;
  transition: none;
}

.soft-feedback {
  animation: soft-feedback 280ms ease-out;
}

@keyframes soft-feedback {
  0% {
    opacity: 1;
  }
  45% {
    opacity: 0.46;
  }
  100% {
    opacity: 1;
  }
}

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

@media (max-width: 980px) {
  .storefront--product {
    height: auto;
    min-height: 100svh;
    overflow: visible;
  }

  .landing-home {
    min-height: 520px;
  }

  .landing-hero {
    grid-template-rows: minmax(180px, 31vh) auto 1fr;
  }

  .landing-hero__content {
    padding-top: 72px;
  }

  .store-header {
    min-height: 70px;
    padding: 10px 24px;
  }

  .product-feed,
  .product-page,
  .info-page,
  .checkout-page,
  .footer__inner {
    width: calc(100% - 48px);
  }

  .product-feed {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 48px;
    row-gap: 34px;
  }

  .product-card__visual {
    max-height: 360px;
  }

  .product-page {
    grid-template-columns: 1fr;
    gap: 44px;
    height: auto;
    min-height: calc(100svh - 70px);
    overflow: visible;
    padding: 34px 0 96px;
  }

  .product-reviews__panel {
    gap: 34px;
    width: min(430px, 100vw);
    padding: 30px 28px 48px;
  }

  .product-reviews__intro {
    position: relative;
  }

  .info-page {
    grid-template-columns: 1fr;
    gap: 44px;
    padding-top: 34px;
  }

  .info-page__nav {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 24px;
    padding-top: 0;
  }

  .product-gallery__stage img {
    max-height: 680px;
  }

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

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

  .product-page__info {
    padding-top: 0;
  }

  .checkout-page {
    width: calc(100% - 48px);
  }

}

@media (max-width: 640px) {
  .landing-home {
    min-height: 100svh;
  }

  .landing-hero::after {
    background:
      linear-gradient(180deg, rgb(255 255 255 / 0%) 0 30%, rgb(255 255 255 / 74%) 48%, rgb(255 255 255 / 98%) 100%);
  }

  .landing-hero {
    grid-template-rows: minmax(168px, 29vh) auto 1fr;
  }

  .landing-hero__track {
    gap: 14px;
  }

  .landing-hero__tile {
    flex-basis: 152px;
    height: 218px;
  }

  .landing-hero__content {
    width: calc(100% - 36px);
    padding-top: 70px;
  }

  .landing-hero__content h1 {
    font-size: clamp(34px, 11vw, 58px);
  }

  .landing-hero__catalog {
    margin-top: 22px;
    font-size: 11px;
  }

  .landing-hero__links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 22px;
    width: calc(100vw - 36px);
    margin-top: 26px;
  }

  .landing-hero__link-column {
    gap: 6px;
  }

  .landing-hero__link-column h2 {
    font-size: 9px;
    letter-spacing: 0.12em;
  }

  .landing-hero__link-column a {
    font-size: 10px;
  }

  .store-header {
    padding: 8px 18px;
  }

  .store-header__menu,
  .store-header__brand,
  .store-header__cart {
    font-size: 9px;
  }

  .store-header__brand {
    font-size: 14px;
  }

  .store-header__back {
    font-size: 13px;
  }

  .product-feed {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 30px;
    row-gap: 32px;
    width: calc(100% - 36px);
    padding-bottom: 96px;
  }

  .product-card__visual {
    max-height: none;
  }

  .product-card h2 {
    margin-top: 20px;
    font-size: 14px;
  }

  .product-card p {
    margin-top: 14px;
    font-size: 12px;
  }

  .product-page {
    width: calc(100% - 36px);
    height: auto;
    min-height: calc(100svh - 58px);
    padding-top: 18px;
    padding-bottom: 96px;
  }

  .product-gallery__stage img {
    max-height: calc(100svh - 390px);
  }

  .product-reviews__panel {
    gap: 28px;
    width: 100vw;
    padding: 24px 20px 42px;
  }

  .info-page {
    width: calc(100% - 36px);
    padding-bottom: 104px;
  }

  .info-page__nav {
    grid-template-columns: 1fr;
  }

  .info-page h1 {
    font-size: 42px;
  }

  .info-page__summary {
    margin-top: 28px;
    font-size: 20px;
  }

  .info-page__sections {
    gap: 26px;
    margin-top: 46px;
  }

  .info-page__section {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .checkout-page {
    width: calc(100% - 36px);
    padding-top: 34px;
    padding-bottom: 104px;
  }

  .checkout-page {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .checkout-order {
    order: -1;
    padding-top: 0;
  }

  .checkout-order__item {
    grid-template-columns: 48px minmax(0, 1fr) auto;
    gap: 12px;
  }

  .checkout-order__item-controls {
    grid-column: 2;
    padding-top: 0;
  }

  .checkout-order__item strong {
    grid-column: 3;
    grid-row: 1;
    align-self: start;
    padding-top: 18px;
  }

  .checkout-order__remove {
    grid-column: 3;
    grid-row: 2;
    justify-self: end;
    margin-top: 0;
  }

  .checkout-order__item img {
    width: 48px;
    height: 78px;
  }

  .product-page h1 {
    font-size: 28px;
  }

  .product-page__price {
    margin-top: 20px;
    font-size: 40px;
  }

  .product-page__description {
    margin-top: 22px;
  }

  .product-options {
    margin-top: 28px;
  }

  .product-note {
    margin-top: 28px;
    padding-top: 18px;
  }

  .product-reviews__intro h2 {
    font-size: 34px;
  }

  .product-review-card__notes {
    grid-template-columns: 1fr;
  }

  .product-review-card__head {
    gap: 16px;
  }

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

  .cart-drawer__panel {
    width: 100vw;
    padding: 22px 20px;
  }

  .product-lightbox {
    padding: 10px;
  }

  .product-lightbox__close {
    top: 20px;
    right: 22px;
  }

  .product-lightbox__figure {
    width: 96vw;
    height: 88vh;
  }

  .product-lightbox__nav {
    width: 48px;
    height: 48px;
    font-size: 28px;
  }

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

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

  .footer {
    padding: 58px 0 250px;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    width: calc(100% - 48px);
  }

  .cookie {
    right: 16px;
    bottom: 16px;
    align-items: stretch;
    flex-direction: column;
  }
}
