:root {
  --commerce-rail: min(1480px, calc(100vw - 40px));
  --commerce-section: clamp(5rem, 9vw, 9rem);
  --commerce-display: clamp(3.5rem, 7vw, 6rem);
  --commerce-ease: cubic-bezier(.16, 1, .3, 1);
  --motion-micro: 180ms;
  --motion-section: 1100ms;
  --motion-page-out: 320ms;
  --motion-page-in: 900ms;
  --motion-enter: cubic-bezier(.16, 1, .3, 1);
  --motion-exit: cubic-bezier(.4, 0, 1, 1);
  --gth-scroll-progress: 0;
}

@view-transition {
  navigation: auto;
}

header .brand-logo {
  view-transition-name: gth-brand-mark;
}

::view-transition-old(root) {
  animation: gth-page-out var(--motion-page-out) var(--motion-exit) both;
}

::view-transition-new(root) {
  animation: gth-page-in var(--motion-page-in) var(--motion-enter) both;
}

@keyframes gth-page-out {
  to {
    opacity: .72;
    transform: translateY(-8px);
  }
}

@keyframes gth-page-in {
  from {
    opacity: .72;
    transform: translateY(14px);
  }
}

html.gth-motion-ready.gth-page-enter:not(.gth-reduced-motion):not(.gth-home-motion) #main-content {
  animation: gth-content-enter var(--motion-page-in) var(--motion-enter) both;
}

@keyframes gth-content-enter {
  from {
    opacity: .28;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.gth-page-curtain {
  position: fixed;
  inset: 0;
  z-index: 120;
  overflow: hidden;
  background: #1C1B19;
  pointer-events: none;
  transform: translate3d(0, 100%, 0);
  will-change: transform;
}

.gth-page-curtain span {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: #B85C38;
}

html.gth-page-leaving {
  overflow: hidden;
}

html {
  scroll-behavior: smooth;
  scrollbar-color: #8B7C66 #F5F1EA;
}

header::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: #B85C38;
  pointer-events: none;
  transform: scaleX(var(--gth-scroll-progress));
  transform-origin: left center;
  transition: transform 80ms linear;
}

.nav-link.is-current,
.nav-link-mob.is-current {
  color: #B85C38;
}

.nav-link.is-current::after {
  right: .95rem;
  left: .95rem;
}

[x-cloak] {
  display: none !important;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 100;
  min-height: 44px;
  padding: .75rem 1rem;
  background: #1C1B19;
  color: #F5F1EA;
  transform: translateY(-180%);
  transition: transform .25s var(--commerce-ease);
}

.skip-link:focus {
  transform: translateY(0);
}

::selection {
  color: #F5F1EA;
  background: #B85C38;
}

.gth-commerce {
  overflow: clip;
  background: #F5F1EA;
}

html.gth-motion-ready:not(.gth-reduced-motion) .gth-commerce > .gth-motion-section {
  position: relative;
  opacity: .38;
  clip-path: inset(0 0 12% 0);
  transform: translateY(42px);
  transition:
    opacity 900ms var(--motion-enter),
    transform var(--motion-section) var(--motion-enter),
    clip-path var(--motion-section) var(--motion-enter);
  will-change: opacity, transform, clip-path;
}

html.gth-motion-ready:not(.gth-reduced-motion) .gth-commerce > .gth-motion-section.is-in-view {
  opacity: 1;
  clip-path: inset(0);
  transform: none;
  will-change: auto;
}

html.gth-motion-ready:not(.gth-reduced-motion) .gth-commerce > .gth-motion-section:not(.surface-hero) > * {
  opacity: .42;
  transform: translateY(28px);
  transition:
    opacity 880ms var(--motion-enter) 140ms,
    transform 1050ms var(--motion-enter) 140ms;
}

html.gth-motion-ready:not(.gth-reduced-motion) .gth-commerce > .gth-motion-section.is-in-view:not(.surface-hero) > * {
  opacity: 1;
  transform: none;
}

.gth-motion-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: max(1.25rem, calc((100vw - var(--commerce-rail)) / 2));
  left: max(1.25rem, calc((100vw - var(--commerce-rail)) / 2));
  z-index: 2;
  height: 1px;
  background: #B85C38;
  pointer-events: none;
  transform: scaleX(0);
  transform-origin: left center;
}

.gth-motion-section.is-in-view::before {
  transform: scaleX(1);
  transition: transform 1200ms var(--motion-enter) 120ms;
}

html.gth-motion-ready.gth-home-motion:not(.gth-reduced-motion) .surface-hero__media {
  animation: gth-hero-media-enter 1400ms var(--motion-enter) 80ms both;
}

html.gth-motion-ready.gth-home-motion:not(.gth-reduced-motion) .surface-hero__title {
  animation: gth-hero-title-enter 1100ms var(--motion-enter) 220ms both;
}

html.gth-motion-ready.gth-home-motion:not(.gth-reduced-motion) .surface-hero__lead {
  animation: gth-hero-copy-enter 900ms var(--motion-enter) 480ms both;
}

html.gth-motion-ready.gth-home-motion:not(.gth-reduced-motion) .surface-hero__actions {
  animation: gth-hero-copy-enter 820ms var(--motion-enter) 680ms both;
}

html.gth-motion-ready.gth-home-motion:not(.gth-reduced-motion) .surface-hero__route {
  animation: gth-hero-copy-enter 820ms var(--motion-enter) 850ms both;
}

@keyframes gth-hero-media-enter {
  from {
    opacity: .24;
    clip-path: inset(0 100% 0 0);
    transform: translateX(36px);
  }
  to {
    opacity: 1;
    clip-path: inset(0);
    transform: none;
  }
}

@keyframes gth-hero-title-enter {
  from {
    opacity: 0;
    clip-path: inset(0 0 100% 0);
    transform: translateY(44px);
  }
  to {
    opacity: 1;
    clip-path: inset(0);
    transform: none;
  }
}

@keyframes gth-hero-copy-enter {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.gth-commerce section[id] {
  scroll-margin-top: 8.5rem;
}

#main-content:has(.gth-commerce) + footer,
.gth-commerce + footer {
  margin-top: 0;
}

.commerce-rail {
  width: var(--commerce-rail);
  margin-inline: auto;
}

.commerce-section {
  padding-block: var(--commerce-section);
}

.surface-hero {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  min-height: min(860px, calc(100svh - 138px));
  border-bottom: 1px solid #D5CDBE;
}

.surface-hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(2.5rem, 6vw, 6rem) clamp(1.25rem, 5vw, 5rem) 2rem max(1.25rem, calc((100vw - min(1480px, calc(100vw - 40px))) / 2));
}

.surface-hero__title {
  max-width: 8ch;
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: var(--commerce-display);
  font-weight: 300;
  font-variation-settings: "opsz" 120, "SOFT" 48;
  letter-spacing: -0.035em;
  line-height: .84;
  text-wrap: balance;
}

.surface-hero__lead {
  max-width: 55ch;
  margin-top: 2rem;
  color: #1C1B19;
  font-size: clamp(.95rem, 1.4vw, 1.1rem);
  line-height: 1.75;
}

.surface-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 2rem;
}

.surface-hero__route {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid #D5CDBE;
  color: #1C1B19;
  font-family: "JetBrains Mono", monospace;
  font-size: .7rem;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.surface-hero__media {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: #D5CDBE;
}

.surface-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--commerce-ease);
}

.surface-hero__media:hover img {
  transform: scale(1.015);
}

.surface-index {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  background: #1C1B19;
  color: #F5F1EA;
}

@keyframes surface-index-arrive {
  from {
    clip-path: inset(20% 0 0 0);
    transform: translateY(12px);
  }
  to {
    clip-path: inset(0 0 0 0);
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .surface-index {
    animation: surface-index-arrive .8s var(--commerce-ease) both;
  }
}

.surface-index > * {
  min-width: 0;
  padding: 1rem 1.25rem;
  border-right: 1px solid rgba(245, 241, 234, .22);
}

.surface-index > *:last-child {
  border-right: 0;
}

.surface-index dt {
  color: #F5F1EA;
  font-family: "JetBrains Mono", monospace;
  font-size: .64rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.surface-index dd {
  margin-top: .35rem;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1rem, 2vw, 1.35rem);
}

.zalo-hub {
  padding-block: var(--commerce-section);
  background: #1C1B19;
  color: #F5F1EA;
}

.zalo-hub__header {
  display: grid;
  grid-template-columns: minmax(0, 8fr) minmax(18rem, 4fr);
  gap: 3rem;
  align-items: end;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.zalo-hub__header h2 {
  max-width: 10ch;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 300;
  letter-spacing: -.035em;
  line-height: .92;
}

.zalo-hub__header > p {
  max-width: 62ch;
  color: #F5F1EA;
  line-height: 1.75;
}

.zalo-hub__channels {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(1.5rem, 3vw, 3rem);
}

.zalo-channel {
  min-width: 0;
  border-top: 1px solid rgba(245, 241, 234, .45);
}

.zalo-channel__media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #8B7C66;
}

.zalo-channel__media > img:first-child {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--commerce-ease);
}

.zalo-channel:hover .zalo-channel__media > img:first-child {
  transform: scale(1.012);
}

.zalo-channel__icon {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: clamp(3.5rem, 7vw, 5rem);
  aspect-ratio: 1;
  border: 1px solid #F5F1EA;
}

.zalo-channel__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: end;
  padding-top: 1.5rem;
}

.zalo-channel__body h3 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 300;
  line-height: 1;
}

.zalo-channel__body p {
  max-width: 50ch;
  margin-top: 1rem;
  color: #F5F1EA;
  line-height: 1.65;
}

.zalo-channel__body p strong {
  color: #B85C38;
  font-weight: 500;
}

.zalo-channel__action {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .75rem;
}

.zalo-channel__qr {
  width: 5.5rem;
  height: 5.5rem;
  object-fit: cover;
  background: #FAF8F4;
}

.zalo-channel__text-link {
  min-height: 44px;
  padding-block: .65rem;
  color: #F5F1EA;
  font-size: .78rem;
  text-decoration: underline;
  text-underline-offset: .35rem;
}

.zalo-hub__steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(3rem, 6vw, 5rem);
  border-top: 1px solid rgba(245, 241, 234, .45);
}

.zalo-hub__steps li {
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr);
  gap: .4rem 1rem;
  padding: 1.5rem 1.5rem 0 0;
  border-right: 1px solid rgba(245, 241, 234, .25);
}

.zalo-hub__steps li:last-child {
  border-right: 0;
  padding-left: 1.5rem;
}

.zalo-hub__steps li:nth-child(2) {
  padding-left: 1.5rem;
}

.zalo-hub__steps span {
  grid-row: span 2;
  color: #B85C38;
  font-family: "JetBrains Mono", monospace;
  font-size: .7rem;
}

.zalo-hub__steps strong {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.3rem;
  font-weight: 400;
}

.zalo-hub__steps small {
  color: #F5F1EA;
  line-height: 1.55;
}

.commerce-heading {
  max-width: 12ch;
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2.75rem, 5.5vw, 5.75rem);
  font-weight: 300;
  font-variation-settings: "opsz" 100, "SOFT" 50;
  letter-spacing: -0.03em;
  line-height: .98;
  text-wrap: balance;
}

.commerce-intro {
  display: grid;
  grid-template-columns: minmax(0, 8fr) minmax(18rem, 4fr);
  align-items: end;
  gap: 3rem;
  margin-bottom: clamp(2.5rem, 6vw, 5rem);
}

.commerce-intro p {
  max-width: 52ch;
  color: #1C1B19;
  line-height: 1.75;
}

.space-gallery {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 2.5rem);
}

.space-scene {
  grid-column: span 5;
  color: #1C1B19;
}

.space-scene:first-child,
.space-scene:nth-child(4) {
  grid-column: span 7;
}

.space-scene__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #D5CDBE;
}

.space-scene:first-child .space-scene__media,
.space-scene:nth-child(4) .space-scene__media {
  aspect-ratio: 16 / 10;
}

.space-scene__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--commerce-ease);
}

.space-scene:hover .space-scene__media img {
  transform: scale(1.018);
}

.space-scene figcaption {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: .45rem 1rem;
  align-items: start;
  padding-top: 1rem;
  border-top: 1px solid #1C1B19;
}

.space-scene__name {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1;
}

.space-scene__hint {
  grid-column: 1 / -1;
  color: #1C1B19;
  font-size: .78rem;
  line-height: 1.55;
}

.collection-ledger {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 2.5rem);
}

.collection-entry {
  grid-column: span 4;
  color: #1C1B19;
}

.collection-entry:first-child {
  grid-column: span 8;
}

.collection-entry:nth-child(4) {
  grid-column: span 8;
}

.collection-entry figure {
  height: 100%;
}

.collection-entry__image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #D5CDBE;
}

.collection-entry:first-child .collection-entry__image {
  aspect-ratio: 16 / 11;
}

.collection-entry img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--commerce-ease);
}

.collection-entry:hover img {
  transform: scale(1.018);
}

.collection-entry figcaption {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #1C1B19;
}

.collection-entry__name {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.4rem, 2.5vw, 2.4rem);
}

.product-shelf {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: #D5CDBE;
  border: 1px solid #D5CDBE;
}

.surface-product {
  display: flex;
  min-width: 0;
  flex-direction: column;
  background: #FAF8F4;
  color: #1C1B19;
}

.surface-product:first-child {
  grid-column: span 2;
}

.surface-product:nth-child(6) {
  grid-column: span 2;
}

.surface-product__image {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #D5CDBE;
}

.surface-product:first-child .surface-product__image {
  aspect-ratio: 16 / 10;
}

.surface-product img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--commerce-ease);
}

.surface-product:hover img {
  transform: scale(1.018);
}

.surface-product__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.1rem;
}

.surface-product__meta,
.surface-product__price {
  color: #1C1B19;
  font-family: "JetBrains Mono", monospace;
  font-size: .75rem;
  letter-spacing: .06em;
  line-height: 1.55;
  text-transform: uppercase;
}

.product-shelf__empty {
  grid-column: 1 / -1;
  padding: 3rem;
  background: #FAF8F4;
  color: #1C1B19;
  text-align: center;
}

.surface-product__title {
  margin-top: .7rem;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.15rem, 2vw, 1.65rem);
  line-height: 1.12;
}

.surface-product__price {
  margin-top: auto;
  padding-top: 1.25rem;
  color: #1C1B19;
}

.solution-ledger {
  border-top: 1px solid #1C1B19;
}

.solution-row {
  display: grid;
  grid-template-columns: minmax(13rem, 3fr) minmax(0, 6fr) auto;
  gap: 2rem;
  align-items: center;
  min-height: 132px;
  padding-block: 1.5rem;
  border-bottom: 1px solid #D5CDBE;
}

.solution-row h3 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.8rem);
  font-weight: 300;
}

.solution-row p {
  max-width: 62ch;
  color: #1C1B19;
  line-height: 1.7;
}

.material-guide {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid #1C1B19;
}

.material-question {
  display: flex;
  min-height: 290px;
  flex-direction: column;
  padding: 2rem;
  border-right: 1px solid #D5CDBE;
}

.material-question:last-child {
  border-right: 0;
}

.material-question h3 {
  max-width: 13ch;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 300;
  line-height: 1.05;
}

.material-question p {
  margin-top: 1.5rem;
  color: #1C1B19;
  line-height: 1.7;
}

.material-question a {
  margin-top: auto;
  padding-top: 1.5rem;
  color: #B85C38;
  text-decoration: underline;
  text-underline-offset: .35rem;
}

.showroom-close {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(18rem, 5fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: end;
  padding-block: var(--commerce-section);
  color: #F5F1EA;
}

.showroom-close h2 {
  max-width: 10ch;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  letter-spacing: -0.035em;
  line-height: .92;
}

.showroom-details {
  border-top: 1px solid rgba(245, 241, 234, .38);
}

.showroom-details > div {
  display: grid;
  grid-template-columns: 6rem 1fr;
  gap: 1rem;
  padding-block: 1rem;
  border-bottom: 1px solid rgba(245, 241, 234, .24);
}

.showroom-details dt {
  color: #F5F1EA;
  font-family: "JetBrains Mono", monospace;
  font-size: .65rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.showroom-details dd {
  line-height: 1.65;
}

.gth-commerce :where(a, button, input, select, textarea):focus-visible {
  outline: 2px solid #B85C38;
  outline-offset: 4px;
}

.gth-commerce :where(a, button) {
  min-height: 44px;
}

@media (max-width: 1023px) {
  .surface-hero {
    min-height: 720px;
  }

  .zalo-channel__body {
    grid-template-columns: 1fr;
  }

  .zalo-channel__action {
    align-items: flex-start;
  }

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

  .surface-product:first-child {
    grid-column: span 2;
    grid-row: auto;
  }

  .surface-product:nth-child(6) {
    grid-column: 1 / -1;
  }
}

@media (max-width: 767px) {
  :root {
    --commerce-rail: calc(100vw - 32px);
    --commerce-section: 4.75rem;
  }

  .surface-hero,
  .commerce-intro,
  .zalo-hub__header,
  .zalo-hub__channels,
  .showroom-close {
    grid-template-columns: 1fr;
  }

  .surface-hero {
    min-height: auto;
  }

  .gth-commerce section[id] {
    scroll-margin-top: 6.5rem;
  }

  .surface-hero__copy {
    min-height: 570px;
    padding: 3.5rem 1rem 1.5rem;
  }

  .surface-hero__title {
    font-size: clamp(4rem, 19vw, 6rem);
  }

  .surface-hero__media {
    min-height: 68svh;
  }

  .surface-index {
    grid-template-columns: 1fr 1fr;
  }

  .surface-index > *:first-child {
    grid-column: 1 / -1;
    border-bottom: 1px solid rgba(245, 241, 234, .22);
  }

  .commerce-intro {
    gap: 1.5rem;
  }

  .space-gallery,
  .zalo-hub__steps,
  .material-guide {
    grid-template-columns: 1fr;
  }

  .space-scene,
  .space-scene:first-child,
  .space-scene:nth-child(4) {
    grid-column: 1;
  }

  .space-scene__media,
  .space-scene:first-child .space-scene__media,
  .space-scene:nth-child(4) .space-scene__media {
    aspect-ratio: 4 / 3;
  }

  .zalo-hub__steps li,
  .zalo-hub__steps li:nth-child(2),
  .zalo-hub__steps li:last-child {
    padding: 1.25rem 0;
    border-right: 0;
    border-bottom: 1px solid rgba(245, 241, 234, .25);
  }

  .zalo-channel__body {
    gap: 1.25rem;
  }

  .collection-ledger {
    display: flex;
    width: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .collection-entry,
  .collection-entry:first-child,
  .collection-entry:nth-child(4) {
    flex: 0 0 82vw;
    scroll-snap-align: start;
  }

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

  .surface-product:first-child {
    grid-column: 1 / -1;
  }

  .surface-product__meta,
  .surface-product__price {
    font-size: .8rem;
    letter-spacing: .035em;
  }

  .solution-row {
    grid-template-columns: 1fr;
    gap: .75rem;
  }

  .material-question {
    min-height: 250px;
    padding: 2rem 0;
    border-right: 0;
    border-bottom: 1px solid #D5CDBE;
  }

  .showroom-close {
    gap: 3rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  ::view-transition-old(root),
  ::view-transition-new(root) {
    animation: none !important;
  }

  header::after,
  .gth-motion-section::before {
    transition: none !important;
  }

  .gth-motion-section::before {
    transform: scaleX(1) !important;
  }

  .gth-page-curtain {
    display: none !important;
  }

  html.gth-motion-ready .gth-commerce > .gth-motion-section {
    opacity: 1 !important;
    clip-path: none !important;
    transform: none !important;
  }

  html.gth-motion-ready .gth-commerce > .gth-motion-section > * {
    opacity: 1 !important;
    transform: none !important;
  }

  html.gth-motion-ready #main-content {
    animation: none !important;
  }

  .gth-commerce *,
  .gth-commerce *::before,
  .gth-commerce *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    transition-delay: 0s !important;
    animation-duration: .01ms !important;
    animation-delay: 0s !important;
    animation-iteration-count: 1 !important;
  }
}
