@font-face {
  font-family: "Mont";
  src: url("../assets/fonts/Mont-HeavyDEMO.otf") format("opentype");
  font-display: swap;
  font-weight: 100 900;
  font-style: normal;
}

@font-face {
  font-family: "Mont ExtraLight";
  src: url("../assets/fonts/Mont-ExtraLightDEMO.otf") format("opentype");
  font-display: swap;
  font-weight: 100 900;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  min-height: 300vh;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 420;
  -webkit-font-smoothing: antialiased;
  -webkit-text-stroke: 0.12px currentColor;
  background: #fff;
}

body.menu-open {
  overflow: hidden;
  background-image: none;
}

body.menu-open::before {
  opacity: 0;
}

.page-transition {
  position: fixed;
  top: 0;
  right: -18vw;
  bottom: 0;
  left: -18vw;
  z-index: 1001;
  background: linear-gradient(
    to right,
    rgba(255, 72, 38, 0.96) 0%,
    rgba(255, 225, 0, 0.92) 14%,
    rgba(126, 216, 67, 0.88) 30%,
    rgba(210, 246, 255, 0.72) 52%,
    rgba(255, 255, 255, 0.96) 82%,
    rgba(255, 255, 255, 1) 100%
  );
  opacity: 0;
  pointer-events: none;
  transform: translateX(-100%);
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 16%,
    #000 84%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 16%,
    #000 84%,
    transparent 100%
  );
  transition: transform 860ms cubic-bezier(0.2, 0.9, 0.18, 1), opacity 860ms ease;
}

html.is-transitioning-in .page-transition,
body.is-loading .page-transition {
  opacity: 1;
  transform: translateX(0);
}

body.is-ready .page-transition {
  opacity: 0;
  transform: translateX(-42%);
  transition-duration: 1240ms;
  transition-timing-function: cubic-bezier(0.18, 0.86, 0.22, 1), ease;
}

body.is-leaving .page-transition {
  opacity: 1;
  transform: translateX(0);
}

@keyframes product-transition-in {
  from {
    opacity: 1;
    transform: translateX(100%);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

body.is-product-leaving.is-leaving .page-transition {
  opacity: 1;
  animation: product-transition-in 860ms cubic-bezier(0.2, 0.9, 0.18, 1) forwards;
}

body.is-menu-leaving .page-transition {
  background: linear-gradient(
    to right,
    rgba(255, 72, 38, 0.58) 0%,
    rgba(255, 225, 0, 0.54) 14%,
    rgba(126, 216, 67, 0.5) 30%,
    rgba(210, 246, 255, 0.42) 52%,
    rgba(255, 255, 255, 0.72) 82%,
    rgba(255, 255, 255, 1) 100%
  );
}

.sky-haze {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 42vh;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.72) 0%,
    rgba(255, 255, 255, 0.42) 45%,
    rgba(255, 255, 255, 0) 100%
  );
}

.sky-bar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 18vh;
  pointer-events: none;
  background: linear-gradient(
    to right,
    rgba(255, 72, 38, 0.9) 0%,
    rgba(255, 225, 0, 0.78) 19%,
    rgba(126, 216, 67, 0.66) 39%,
    rgba(210, 246, 255, 0.58) 61%,
    rgba(255, 255, 255, 0.88) 100%
  );
  opacity: 0.88;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 46%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 46%, transparent 100%);
}

.landing-variant-b .sky-bar {
  height: min(310px, 43vw);
  background: url("../assets/images/bg/background_4.png") top left / 100% auto no-repeat;
  opacity: 0.90;
  -webkit-mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.95) 0%,
    rgba(0, 0, 0, 0.72) 46%,
    rgba(0, 0, 0, 0) 100%
  );
  mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.95) 0%,
    rgba(0, 0, 0, 0.72) 46%,
    rgba(0, 0, 0, 0) 100%
  );
}

.sub-page .sky-haze,
.sub-page .sky-bar {
  display: none;
}

.menu-options {
  position: fixed;
  inset: 0;
  z-index: 6;
  pointer-events: none;
}

.menu-button,
.home-link {
  position: fixed;
  pointer-events: auto;
  cursor: pointer;
  border: 0;
  color: #000;
}

.home-link {
  top: 18px;
  left: 20px;
  z-index: 7;
  display: block;
  width: clamp(118px, 10.5vw, 168px);
  padding: 0;
  background: transparent;
  text-decoration: none;
  -webkit-text-stroke: 0;
}

.home-link img {
  display: block;
  width: 100%;
  height: auto;
}

.menu-button-hamburger {
  top: 24px;
  right: 24px;
  z-index: 7;
  display: grid;
  width: 44px;
  height: 36px;
  padding: 8px;
  gap: 5px;
  background: transparent;
}

.menu-button-hamburger span {
  display: block;
  height: 1px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

body.menu-open .menu-button-hamburger span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

body.menu-open .menu-button-hamburger {
  color: #000;
}

body.menu-open .menu-button-hamburger span {
  height: 1.5px;
  background: #000;
}

body.menu-open .menu-button-hamburger span:nth-child(2) {
  opacity: 0;
}

body.menu-open .menu-button-hamburger span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.site-menu {
  position: fixed;
  inset: 0;
  z-index: 5;
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 8px;
  overflow-y: auto;
  padding: 40vh 24px 0;
  background: #fff;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.site-menu a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 3px 20px;
  color: #000;
  font-size: 21px;
  font-weight: 630;
  letter-spacing: 0.06em;
  line-height: 1.15;
  text-decoration: none;
}

body.menu-open .site-menu {
  opacity: 1;
  pointer-events: auto;
}

body.menu-open .landing-version-nav {
  display: none;
}

.landing-version-nav {
  position: fixed;
  bottom: 18px;
  left: 20px;
  z-index: 4;
  display: flex;
  gap: 10px;
  pointer-events: auto;
}

.landing-version-nav a {
  color: #000;
  font-size: 10px;
  font-weight: 730;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-shadow: 0 0 14px rgba(255, 255, 255, 0.9);
}

.landing-version-nav a[aria-current="page"] {
  text-decoration: underline;
  text-underline-offset: 4px;
}

body.menu-open .page-content {
  opacity: 0;
}

body.menu-open .simple-page {
  opacity: 0;
}

body.menu-open .sky-haze,
body.menu-open .sky-bar {
  display: none;
}

body.menu-open .product-menu-toggle,
body.menu-open .category-background,
body.menu-open .sort-options {
  display: none;
}

.page-content {
  position: relative;
  z-index: 3;
  min-height: 300vh;
  padding: 30vh 300px 80px 14px;
}

.category-background {
  position: fixed;
  top: 43.5vh;
  right: 24px;
  z-index: 1;
  display: grid;
  gap: 9px;
  align-content: start;
  justify-items: end;
  text-align: right;
  pointer-events: none;
}

.product-menu-toggle {
  display: none;
}

.category-background a,
.category-background button {
  display: inline-block;
  pointer-events: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: #000;
  cursor: pointer;
  font: inherit;
  font-size: 12.5px;
  font-weight: 630;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: color 180ms ease, text-shadow 180ms ease, transform 180ms ease;
}

.category-background a:hover,
.category-background button:hover,
.category-background button[aria-expanded="true"] {
  color: #000;
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.85);
  transform: translateX(-2px);
}

.category-group {
  display: grid;
  gap: 4px;
  justify-items: end;
}

.category-background .subcategory {
  display: none;
  color: #000;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 10px;
  font-weight: 525;
  letter-spacing: 0.06em;
}

.category-group.is-open .subcategory {
  display: block;
}

.sort-options {
  position: fixed;
  left: 21vw;
  bottom: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  width: 49vw;
  padding: 0 24px 18px;
  isolation: isolate;
}

.sort-options::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -34px;
  z-index: -1;
  width: min(620px, 92vw);
  height: 92px;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 255, 255, 0.82) 0%,
    rgba(255, 255, 255, 0.5) 38%,
    rgba(255, 255, 255, 0) 72%
  );
  filter: blur(10px);
  transform: translateX(-50%);
}

.sort-options button {
  padding: 0;
  border: 0;
  background: transparent;
  color: #000;
  cursor: pointer;
  font: inherit;
  font-size: 10px;
  font-weight: 730;
  -webkit-text-stroke: 0.2px currentColor;
  letter-spacing: 0.08em;
  text-shadow: 0 0 14px rgba(255, 255, 255, 0.9);
  white-space: nowrap;
}

.sort-options button.is-active {
  color: #000;
}

body.sub-page {
  min-height: 100vh;
}

body.text-page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(
    115deg,
    rgba(255, 72, 38, 0.2) 0%,
    rgba(255, 225, 0, 0.18) 16%,
    rgba(126, 216, 67, 0.16) 36%,
    rgba(210, 246, 255, 0.18) 58%,
    rgba(255, 255, 255, 0.92) 86%,
    rgba(255, 255, 255, 1) 100%
  );
}

.simple-page {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  padding: 110px 24px 96px;
}

.simple-page h1 {
  width: 100%;
  max-width: 360px;
  margin: 0 auto 34px;
  color: #000;
  font-size: 22px;
  font-weight: 630;
  letter-spacing: 0.04em;
  text-align: center;
}

.simple-copy {
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  color: #000;
  font-size: 12px;
  line-height: 1.6;
  text-align: center;
}

.simple-copy p + p {
  margin-top: 14px;
}

.simple-copy h2 {
  margin-top: 30px;
  font-size: 12px;
  font-weight: 630;
  letter-spacing: 0.06em;
}

.simple-copy h2 + p {
  margin-top: 10px;
}

.simple-copy ul {
  display: grid;
  gap: 9px;
  justify-items: center;
  margin: 26px auto;
  list-style: none;
}

.simple-copy li {
  max-width: 320px;
  font-size: 11px;
  font-weight: 525;
  letter-spacing: 0.05em;
  line-height: 1.45;
}

.simple-copy ul + p {
  margin-top: 26px;
}

.simple-copy a {
  color: inherit;
}

.simple-copy .contact-email {
  margin-top: 32px;
}

.simple-copy .contact-email a {
  font-weight: 630;
  letter-spacing: 0.06em;
  text-decoration: none;
}

.contact-list-mobile {
  display: none;
}

.product-grid {
  position: relative;
  left: 21vw;
  width: 49vw;
  z-index: 2;
  font-size: 0;
  line-height: 0;
}

.product-card {
  position: relative;
  display: inline-block;
  margin-bottom: 30px;
  vertical-align: top;
  color: inherit;
  text-decoration: none;
}

.product-card:nth-child(odd) {
  width: 40%;
  margin-left: 11.6%;
  text-align: right;
}

.product-card:nth-child(even) {
  width: 47%;
  text-align: left;
}

.product-card:nth-child(1),
.product-card:nth-child(4) {
  width: 42%;
  margin-left: 4%;
  text-align: left;
}

.product-card:nth-child(2),
.product-card:nth-child(5) {
  width: 38%;
  margin-left: 8%;
  text-align: center;
}

.product-card:nth-child(3) {
  display: block;
  width: 100%;
  margin-left: 0;
  text-align: center;
}

.product-card img {
  display: inline-block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 54vh;
  object-fit: contain;
  vertical-align: bottom;
}

.landing-variant-c {
  min-height: 180vh;
}

.landing-variant-c .sky-bar,
.landing-variant-c .product-menu-toggle,
.landing-variant-c .sort-options {
  display: none;
}

.landing-variant-c .sky-haze {
  display: block;
  height: 36vh;
  background:
    linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #fff 100%),
    url("../assets/images/cloud/cloud_1.jpg") center 20% / cover no-repeat;
  opacity: 0.34;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0%, transparent 100%);
}

.landing-variant-c .home-link {
  width: clamp(92px, 8vw, 128px);
}

.landing-variant-c .page-content {
  min-height: 180vh;
  padding: 154px 300px 80px 40px;
  transition: padding-right 588ms cubic-bezier(0.2, 0.84, 0.2, 1);
}

.landing-variant-c:has(.category-background:hover) .page-content,
.landing-variant-c:has(.category-background:focus-within) .page-content {
  padding-right: max(calc(30vw + 40px), 430px);
}

.landing-variant-c .product-grid {
  left: 0;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  column-gap: 7.2vw;
  row-gap: 92px;
  font-size: inherit;
  line-height: normal;
}

.landing-variant-c.is-category-view .product-grid {
  transform: translateY(10%);
}

.landing-variant-c .product-card,
.landing-variant-c .product-card:nth-child(odd),
.landing-variant-c .product-card:nth-child(even),
.landing-variant-c .product-card:nth-child(1),
.landing-variant-c .product-card:nth-child(2),
.landing-variant-c .product-card:nth-child(3),
.landing-variant-c .product-card:nth-child(4),
.landing-variant-c .product-card:nth-child(5) {
  display: block;
  width: 100%;
  margin: 0;
  text-align: center;
}

.landing-variant-c .product-card img {
  max-width: 100%;
  max-height: 50vh;
}

.landing-variant-c .product-caption {
  margin-top: 16px;
  color: #555;
  font-size: 10px;
  font-weight: 420;
  letter-spacing: 0;
  line-height: 1.25;
}

.landing-variant-c .product-unavailable {
  grid-column: 1 / -1;
  align-self: start;
  width: min(420px, 100%);
  margin: 10vh auto 0;
  color: #4d4d4d;
  text-align: center;
}

.landing-variant-c .product-unavailable img {
  display: block;
  width: auto;
  max-width: 72%;
  max-height: 42vh;
  margin: 0 auto 28px;
  object-fit: contain;
}

.landing-variant-c .product-unavailable h1 {
  margin: 10% 0 12px;
  color: #000;
  font-size: clamp(22px, 2.2vw, 34px);
  font-weight: 420;
  letter-spacing: 0;
  line-height: 1.1;
}

.landing-variant-c .product-unavailable p {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
}

.landing-variant-c .category-background {
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  width: 280px;
  min-width: 0;
  overflow: hidden;
  isolation: isolate;
  padding: 172px 28px 48px;
  border-left: 1px solid #000;
  background: #fff;
  gap: 0;
  align-content: start;
  justify-items: start;
  text-align: left;
  pointer-events: auto;
  transition: width 637ms cubic-bezier(0.2, 0.84, 0.2, 1), padding 637ms cubic-bezier(0.2, 0.84, 0.2, 1);
}

.landing-variant-c .category-background::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: url("../assets/images/bg/background.png");
  background-position: calc(100% + 30vh) -5vh;
  background-size: auto 132%;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 588ms ease;
}

.landing-variant-c .category-background:hover,
.landing-variant-c .category-background:focus-within {
  width: max(30vw, 390px);
  padding-right: 42px;
  padding-left: 42px;
}

.landing-variant-c .category-background:hover::before,
.landing-variant-c .category-background:focus-within::before {
  opacity: 0.75;
}

.landing-variant-c .category-background a,
.landing-variant-c .category-background button {
  color: #4d4d4d;
  font-size: clamp(25px, 2.25vw, 34px);
  font-weight: 420;
  letter-spacing: 0;
  line-height: 1.14;
  text-shadow: none;
  text-transform: none;
  transition: color 180ms ease, font-size 588ms cubic-bezier(0.2, 0.84, 0.2, 1);
}

.landing-variant-c .category-group {
  justify-items: start;
}

.landing-variant-c .category-background .subcategory {
  font-size: clamp(13px, 1.25vw, 18px);
  line-height: 1.2;
}

.landing-variant-c .category-background:hover a,
.landing-variant-c .category-background:focus-within a,
.landing-variant-c .category-background:hover button,
.landing-variant-c .category-background:focus-within button {
  font-size: clamp(28px, 2.55vw, 40px);
}

.landing-variant-c .category-background:hover .subcategory,
.landing-variant-c .category-background:focus-within .subcategory {
  font-size: clamp(15px, 1.45vw, 20px);
}

.landing-variant-c .category-background a:hover {
  color: #000;
  text-shadow: none;
  transform: none;
}

body {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18'%3E%3Ccircle cx='9' cy='9' r='6.5' fill='none' stroke='%23000' stroke-width='1.2'/%3E%3C/svg%3E") 9 9, auto;
}

a,
button,
.home-link,
.menu-button,
.product-menu-toggle,
.category-background a,
.category-background button,
.sort-options button {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18'%3E%3Ccircle cx='9' cy='9' r='6.5' fill='none' stroke='%23000' stroke-width='1.2'/%3E%3C/svg%3E") 9 9, pointer;
}

.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2000;
  width: 14px;
  height: 14px;
  border: 1.2px solid #fff;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  mix-blend-mode: difference;
  transform: translate3d(-50%, -50%, 0);
  transition: opacity 120ms ease;
}

.custom-cursor.is-visible {
  opacity: 1;
}

@media (hover: hover) and (pointer: fine) {
  html.has-custom-cursor,
  html.has-custom-cursor * {
    cursor: none !important;
  }
}

@media (max-width: 700px) {
  :root {
    --mobile-category-top: calc(76px + env(safe-area-inset-top));
    --mobile-category-height: 68px;
    --mobile-content-top: calc(184px + env(safe-area-inset-top));
  }

  body {
    min-height: 100svh;
    background-image: none;
  }

  body::before {
    display: none;
  }

  body.text-page::before {
    display: block;
    bottom: -10svh;
  }

  .sub-page:not(.text-page)::before {
    display: none;
  }

  .home-link {
    top: calc(18px + env(safe-area-inset-top));
    left: 16px;
    width: 118px;
  }

  .menu-button-hamburger {
    top: calc(14px + env(safe-area-inset-top));
    right: 12px;
    width: 42px;
    height: 34px;
  }

  .landing-version-nav {
    bottom: calc(16px + env(safe-area-inset-bottom));
    left: 16px;
    gap: 9px;
  }

  .sky-haze {
    height: 42svh;
  }

  .sky-bar {
    height: 14svh;
  }

  .landing-variant-b .sky-bar {
    height: min(310px, 43vw);
  }

  .page-content {
    min-height: 100svh;
    padding: 120px 14px 80px;
  }

  .site-menu {
    align-content: center;
    gap: 6px;
    padding: 86px 24px 48px;
  }

  .site-menu a {
    min-height: 36px;
    padding: 2px 18px;
    font-size: 18px;
  }

  .product-menu-toggle {
    position: fixed;
    top: 20svh;
    right: 16px;
    z-index: 4;
    display: none;
    max-width: 160px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #000;
    cursor: default;
    font: inherit;
    font-size: 14px;
    font-weight: 735;
    letter-spacing: 0.1em;
    line-height: 1;
    text-align: right;
    text-shadow: 0 0 18px rgba(255, 255, 255, 0.95);
    writing-mode: horizontal-tb;
  }

  .product-menu-toggle[aria-expanded="true"] {
    color: #000;
    text-shadow: 0 0 18px rgba(255, 255, 255, 0.9);
  }

  body.product-menu-open .product-menu-toggle {
    opacity: 1;
    pointer-events: none;
  }

  .category-background {
    top: calc(40svh + 24px);
    right: 16px;
    z-index: 4;
    display: grid;
    gap: 10px;
    max-width: 190px;
    padding: 0;
    justify-items: end;
  }

  body.product-menu-open .category-background {
    display: grid;
  }

  body.menu-open .category-background,
  body.menu-open .sort-options {
    display: none;
  }

  .category-background a,
  .category-background button {
    max-width: 190px;
    color: #000;
    font-size: 10px;
    line-height: 1.1;
    text-align: right;
    overflow-wrap: anywhere;
    writing-mode: horizontal-tb;
  }

  .category-background .subcategory {
    font-size: 9px;
    line-height: 1.15;
  }

  .product-grid {
    left: 0;
    width: 100%;
  }

  .sort-options {
    left: 0;
    bottom: 0;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 0 8px calc(16px + env(safe-area-inset-bottom));
  }

  .sort-options button {
    font-size: 8px;
    line-height: 1;
    letter-spacing: 0.06em;
  }

  body.sub-page {
    min-height: 100svh;
  }

  .simple-page {
    min-height: 100svh;
    padding: calc(96px + env(safe-area-inset-top)) 16px 88px;
  }

  .simple-page h1 {
    font-size: 18px;
    max-width: 300px;
    margin-bottom: 30px;
  }

  .simple-copy {
    max-width: 300px;
    font-size: 11px;
  }

  .simple-copy li {
    max-width: 280px;
    font-size: 10.5px;
  }

  .contact-page .contact-list-desktop {
    display: none;
  }

  .contact-page .contact-list-mobile {
    display: grid;
    gap: 2px;
    justify-items: start;
    width: fit-content;
    max-width: 260px;
    margin: 22px auto;
    padding-left: 1.1em;
    list-style: disc;
    text-align: left;
  }

  .contact-page .contact-list-mobile li {
    max-width: none;
    font-size: 11px;
    line-height: 1.35;
    letter-spacing: 0.04em;
  }

  .contact-page .simple-copy ul + p {
    margin-top: 22px;
  }

  .contact-page .simple-copy p:nth-of-type(2),
  .contact-page .simple-copy p:nth-of-type(3) {
    display: none;
  }

  .category-message {
    transform: translateY(-18svh);
  }

  .product-card,
  .product-card:nth-child(odd),
  .product-card:nth-child(even),
  .product-card:nth-child(1),
  .product-card:nth-child(2),
  .product-card:nth-child(3),
  .product-card:nth-child(4),
  .product-card:nth-child(5) {
    display: block;
    width: 100%;
    margin: 0 0 44px;
    text-align: center;
  }

  .product-card:nth-child(even) {
    margin-left: 0;
  }

  .product-card:nth-child(3) {
    display: block;
    width: 100%;
    margin-left: 0;
  }

  .product-card img {
    max-width: 86%;
    max-height: 52svh;
  }

  .landing-variant-c {
    min-height: 100svh;
  }

  .landing-variant-c .page-content {
    display: flex;
    flex-direction: column;
    min-height: 100svh;
    padding: var(--mobile-content-top) 16px 72px;
  }

  .landing-variant-c:has(.category-background:hover) .page-content,
  .landing-variant-c:has(.category-background:focus-within) .page-content {
    padding: var(--mobile-content-top) 16px 72px;
  }

  .landing-variant-c .category-background {
    position: fixed;
    inset: auto 0 0 0;
    z-index: 1500;
    width: 100%;
    min-width: 0;
    max-width: none;
    height: calc(var(--mobile-category-height) + env(safe-area-inset-bottom));
    max-height: none;
    margin: 0;
    padding: 10px 16px calc(28px + env(safe-area-inset-bottom));
    border-left: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.16);
    border-bottom: 0;
    background: #fff;
    background-color: #fff;
    box-shadow: 0 40px 0 40px #fff;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-content: start;
    align-items: flex-start;
    justify-content: stretch;
    justify-items: stretch;
    column-gap: 0;
    row-gap: 0;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    transition: none;
    isolation: isolate;
    transform: translateZ(0);
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    scroll-padding: 16px;
  }

  .landing-variant-c .category-background::-webkit-scrollbar {
    display: none;
  }

  .landing-variant-c .category-background::before {
    display: none;
  }

  .landing-variant-c .category-background:hover,
  .landing-variant-c .category-background:focus-within {
    width: 100%;
    padding: 10px 16px calc(28px + env(safe-area-inset-bottom));
  }

  body.menu-open.landing-variant-c .category-background {
    display: flex;
  }

  .landing-variant-c .category-background:hover::before,
  .landing-variant-c .category-background:focus-within::before {
    opacity: 0.18;
  }

  .landing-variant-c .category-background a,
  .landing-variant-c .category-background button {
    display: block;
    width: 100%;
    max-width: none;
    min-height: 0;
    margin: 0;
    padding: 0 0 18px;
    border: 0;
    -webkit-appearance: none;
    appearance: none;
    color: rgba(0, 0, 0, 0.62);
    flex: 0 1 auto;
    font-size: 11px;
    line-height: 13px;
    text-align: center;
    vertical-align: top;
    white-space: nowrap;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }

  .landing-variant-c .category-background > a,
  .landing-variant-c .category-background > .category-group {
    width: 100%;
    height: auto;
    min-height: 31px;
    line-height: 13px;
  }

  .landing-variant-c .category-background a.is-active,
  .landing-variant-c .category-background button.is-active {
    color: rgba(0, 0, 0, 0.62);
    text-decoration: none;
  }

  .landing-variant-c .category-group {
    position: relative;
    display: block;
    width: 100%;
    min-width: 0;
    margin: 0;
    padding: 0;
    gap: 2px;
    justify-items: start;
  }

  .landing-variant-c .category-group > button {
    display: block;
  }

  .landing-variant-c .category-background .subcategory {
    display: none;
    position: absolute;
    top: 18px;
    left: 0;
    width: max-content;
    max-width: min(26vw, 96px);
    margin-top: 0;
    color: rgba(0, 0, 0, 0.52);
    font-size: 8.5px;
    line-height: 1.08;
    text-align: left;
    padding-bottom: 0;
    white-space: normal;
    overflow-wrap: normal;
  }

  .landing-variant-c .category-background .subcategory + .subcategory {
    top: 32px;
    margin-top: 0;
  }

  .landing-variant-c .category-group.is-open .subcategory {
    display: block;
  }

  .landing-variant-c .category-background:hover a,
  .landing-variant-c .category-background:focus-within a,
  .landing-variant-c .category-background:hover button,
  .landing-variant-c .category-background:focus-within button {
    font-size: 11px;
  }

  .landing-variant-c .category-background:hover .subcategory,
  .landing-variant-c .category-background:focus-within .subcategory {
    font-size: 8.5px;
  }

  .landing-variant-c .product-grid {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 64px;
    padding: 0;
  }

  .landing-variant-c .product-card,
  .landing-variant-c .product-card:nth-child(odd),
  .landing-variant-c .product-card:nth-child(even),
  .landing-variant-c .product-card:nth-child(1),
  .landing-variant-c .product-card:nth-child(2),
  .landing-variant-c .product-card:nth-child(3),
  .landing-variant-c .product-card:nth-child(4),
  .landing-variant-c .product-card:nth-child(5) {
    margin: 0;
  }

  .landing-variant-c .product-card img {
    max-width: min(78vw, 330px);
    max-height: 44svh;
  }

  .landing-variant-c .product-caption {
    margin-top: 12px;
    font-size: 11px;
  }

  .landing-variant-c .product-unavailable {
    width: min(270px, 100%);
    margin: 2vh auto 0;
    padding: 0;
    color: rgba(0, 0, 0, 0.58);
    text-align: center;
  }

  .landing-variant-c .product-unavailable img {
    max-width: min(76vw, 310px);
    max-height: 38svh;
  }

  .landing-variant-c .product-unavailable h1 {
    margin-bottom: 14px;
    font-size: 20px;
    font-weight: 420;
    line-height: 1.1;
  }

  .landing-variant-c .product-unavailable p {
    max-width: 240px;
    margin: 0 auto;
    font-size: 12px;
    font-weight: 420;
    line-height: 1.55;
  }
}

@media (max-width: 390px) {
  body::before {
    background-position: calc(100% + 170px) center;
  }

  .page-content {
    padding-right: 8px;
  }

  .product-menu-toggle {
    right: 12px;
    max-width: 150px;
    font-size: 13px;
  }

  .category-background {
    right: 12px;
    max-width: 172px;
  }

  .category-background a,
  .category-background button {
    max-width: 172px;
    font-size: 10px;
  }

  .sort-options {
    width: 100%;
    gap: 8px;
  }

  .sort-options button {
    font-size: 7.5px;
  }

  .landing-variant-c .page-content {
    padding-top: var(--mobile-content-top);
    padding-right: 14px;
    padding-left: 14px;
  }

  .landing-variant-c:has(.category-background:hover) .page-content,
  .landing-variant-c:has(.category-background:focus-within) .page-content {
    padding-top: var(--mobile-content-top);
    padding-right: 14px;
    padding-left: 14px;
  }

  .landing-variant-c .category-background {
    inset: auto 0 0 0;
    width: 100%;
    max-width: none;
    height: calc(var(--mobile-category-height) + env(safe-area-inset-bottom));
    max-height: none;
    gap: 0;
    padding: 10px 14px calc(28px + env(safe-area-inset-bottom));
  }

  .landing-variant-c .category-background:hover,
  .landing-variant-c .category-background:focus-within {
    padding: 10px 14px calc(28px + env(safe-area-inset-bottom));
  }

  .landing-variant-c .category-background a,
  .landing-variant-c .category-background button,
  .landing-variant-c .category-background:hover a,
  .landing-variant-c .category-background:focus-within a,
  .landing-variant-c .category-background:hover button,
  .landing-variant-c .category-background:focus-within button {
    max-width: none;
    font-size: 10px;
  }

  .landing-variant-c .category-background .subcategory,
  .landing-variant-c .category-background:hover .subcategory,
  .landing-variant-c .category-background:focus-within .subcategory {
    font-size: 9px;
  }
}
