:root {
  --shop-purple: var(--mollis-purple);
  --shop-white: var(--mollis-white);
  --shop-yellow: var(--shop-white);
  --shop-line: 1px;
  --shop-header-height: 60px;
  --shop-panel-pad: 16px;
  --shop-rail-pad: 10px;
  --shop-max-width: 1600px;
}

.shop-page {
  min-height: 100vh;
  background: var(--shop-white);
  color: var(--shop-purple);
}

.shop-shell {
  width: 100%;
  min-height: 100vh;
}

.shop-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  padding: 8px 16px 4px;
  border-bottom: 0;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(3px);
}

.shop-page--campaign .shop-header {
  background: transparent;
  backdrop-filter: none;
}

.shop-page--campaign .shop-hero__media::before,
.shop-page--campaign .shop-hero__media::after {
  opacity: 0;
}

.shop-header__group {
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-width: 0;
}

.shop-header__group--left {
  justify-self: start;
}

.shop-header__group--right {
  justify-self: end;
}

.shop-brand {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.shop-brand img {
  width: clamp(72px, 6.1vw, 100px);
  height: auto;
  transform: translateY(-3px);
  transition: width 0.22s ease, transform 0.22s ease;
}

.shop-shell.is-scrolled .shop-brand img {
  width: 23px;
  transform: translateY(-1px);
}

.shop-chip {
  appearance: none;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 29px;
  padding: 6px 10px 5px;
  border: var(--shop-line) solid var(--shop-purple);
  color: var(--shop-purple);
  font-size: 10.6px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition:
    background-color 0.16s ease,
    color 0.16s ease,
    opacity 0.16s ease;
  white-space: nowrap;
}

.shop-header .shop-chip,
.shop-footer__group .shop-chip {
  background: var(--shop-white);
  color: var(--shop-purple);
  min-width: 0;
  height: 26px;
  min-height: 26px;
  max-height: 26px;
  padding: 0 9px;
  font-family: inherit;
  font-weight: 700;
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.12em;
  vertical-align: middle;
  flex: 0 0 auto;
  box-sizing: border-box;
}

.shop-chip + .shop-chip {
  margin-left: calc(var(--shop-line) * -1);
}

.shop-chip:hover,
.shop-chip:focus-visible {
  background: var(--shop-purple);
  color: var(--shop-white);
}

.shop-header .shop-chip:hover,
.shop-header .shop-chip:focus-visible,
.shop-footer .shop-chip:hover,
.shop-footer .shop-chip:focus-visible {
  background: var(--shop-purple);
  color: var(--shop-white);
}

.shop-main {
  width: 100%;
  max-width: none;
  margin: 0;
}

.shop-page--catalog .shop-main {
  padding-top: var(--shop-header-height);
}

.cart-page .shop-main {
  padding-top: var(--shop-header-height);
}

.cart-page .shop-shell {
  display: flex;
  flex-direction: column;
}

.cart-page .shop-main {
  flex: 1 0 auto;
}

.shop-hero {
  min-height: 100svh;
  padding: 0;
  display: flex;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow-x: clip;
}

.shop-hero__frame {
  width: 100%;
  min-height: 100svh;
  background:
    linear-gradient(to right, rgba(116, 108, 231, 0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(116, 108, 231, 0.06) 1px, transparent 1px);
  background-size: 34px 34px;
}

.shop-hero__media {
  position: relative;
  min-height: 100svh;
  padding: clamp(92px, 14vh, 160px) clamp(20px, 4vw, 48px) clamp(56px, 8vh, 96px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 14px;
  text-align: center;
  overflow: hidden;
}

.shop-hero__media-image,
.shop-hero__media-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
  opacity: 0.96;
}

.shop-hero__media::before,
.shop-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.shop-hero__media::before {
  background:
    linear-gradient(to right, rgba(116, 108, 231, 0.22) 1px, transparent 1px) 0 0 / 100% 100%,
    linear-gradient(to bottom, rgba(116, 108, 231, 0.22) 1px, transparent 1px) 0 50% / 100% 1px no-repeat;
  opacity: 0.22;
}

.shop-hero__media::after {
  background:
    linear-gradient(to right, rgba(116, 108, 231, 0.16) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(116, 108, 231, 0.16) 1px, transparent 1px);
  background-size: 42px 42px;
  mix-blend-mode: multiply;
  opacity: 0.45;
}

.shop-hero__brandmark {
  position: relative;
  z-index: 1;
  width: clamp(56px, 6vw, 92px);
  height: auto;
  opacity: 0.95;
}

.shop-hero__eyebrow,
.shop-hero__title,
.shop-hero__body {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--shop-purple);
}

.shop-hero__eyebrow {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.shop-hero__title {
  font-size: clamp(20px, 1.9vw, 34px);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shop-hero__body {
  max-width: 38ch;
  font-size: 12px;
  line-height: 1.65;
  letter-spacing: 0.02em;
}

.shop-hero__ticker {
  position: absolute;
  left: 0;
  right: 0;
  bottom: clamp(24px, 6vh, 68px);
  z-index: 1;
  overflow: hidden;
  border-top: 0.35px solid var(--shop-purple);
  border-bottom: 0.35px solid var(--shop-purple);
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(2px);
}

.shop-hero__ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 0;
  width: max-content;
  padding: 8px 0 7px;
  white-space: nowrap;
  animation: shop-hero-ticker 28s linear infinite;
}

.shop-hero__ticker-group {
  display: inline-flex;
  align-items: center;
  gap: 44px;
  flex-shrink: 0;
  padding-right: 44px;
}

.shop-hero__ticker-group span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  -webkit-text-stroke: 0.35px var(--shop-purple);
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.shop-categories {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 0;
  border-top: var(--shop-line) solid var(--shop-purple);
  border-bottom: var(--shop-line) solid var(--shop-purple);
}

.shop-categories .shop-chip {
  min-height: 38px;
  border-top: 0;
  border-bottom: 0;
  border-left: 0;
}

.shop-categories .shop-chip:first-child {
  border-left: 0;
}

.shop-categories .shop-chip + .shop-chip {
  margin-left: 0;
}

.shop-categories .shop-chip:not(:first-child) {
  border-left: var(--shop-line) solid var(--shop-purple);
}

.shop-collection {
  padding: 0;
  scroll-margin-top: calc(var(--shop-header-height) + 16px);
}

.shop-collection__label {
  margin: 0;
  padding: 10px 16px 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: var(--shop-line) solid var(--shop-purple);
}

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

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

.product-card:nth-child(-n+2) {
  border-bottom: var(--shop-line) solid var(--shop-purple);
}

.product-card:nth-child(odd) {
  border-right: var(--shop-line) solid var(--shop-purple);
}

.product-card__link {
  position: relative;
  z-index: 1;
  display: block;
  color: inherit;
  text-decoration: none;
}

.product-card__media {
  position: relative;
  aspect-ratio: 1.08 / 1;
  overflow: hidden;
  border-bottom: var(--shop-line) solid var(--shop-purple);
  background:
    linear-gradient(to right, rgba(116, 108, 231, 0.12) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(116, 108, 231, 0.12) 1px, transparent 1px);
  background-size: 42px 42px;
}

.product-card__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(116, 108, 231, 0.18) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(116, 108, 231, 0.18) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.26;
  pointer-events: none;
}

.product-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition:
    opacity 0.32s ease,
    transform 0.32s ease;
  pointer-events: none;
}

.product-card__image--hover {
  opacity: 0;
}

.product-card__chip {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  min-height: 26px;
  padding: 4px 8px 3px;
  border: var(--shop-line) solid var(--shop-purple);
  background: rgba(255, 255, 255, 0.72);
  color: var(--shop-purple);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.product-card__wishlist {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  min-height: 22px;
  padding: 3px 7px 2px;
  border: var(--shop-line) solid var(--shop-purple);
  background: rgba(255, 255, 255, 0.72);
  color: var(--shop-purple);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition:
    background-color 0.16s ease,
    color 0.16s ease;
}

.product-card__wishlist:focus-visible,
.product-card__wishlist.is-active {
  background: var(--shop-purple);
  color: var(--shop-white);
}

@media (hover: hover) and (pointer: fine) {
  .product-card__wishlist:hover {
    background: var(--shop-purple);
    color: var(--shop-white);
  }
}

.product-card__meta {
  display: grid;
  gap: 6px;
  padding: 9px 10px 10px;
}

.product-card__meta-top,
.product-card__headline,
.product-card__specs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.product-card__meta-top {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-card__headline {
  align-items: baseline;
  padding-top: 0;
  gap: 10px;
}

.product-card__title,
.product-card__price {
  margin: 0;
  color: var(--shop-purple);
}

.product-card__title {
  max-width: 18ch;
  font-size: clamp(14px, 1.22vw, 19px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.product-card__price {
  font-size: 11.5px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.product-card__sizes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: var(--shop-line) solid var(--shop-purple);
  border-left: var(--shop-line) solid var(--shop-purple);
  border-right: var(--shop-line) solid var(--shop-purple);
  overflow: hidden;
}

.product-card__colors,
.product-page .product-detail__colors {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: var(--shop-line) solid var(--shop-purple);
  border-left: var(--shop-line) solid var(--shop-purple);
  border-right: var(--shop-line) solid var(--shop-purple);
  overflow: hidden;
}

.shop-page .product-card__color,
.product-page .product-detail__color {
  appearance: none;
  border: 0;
  border-right: var(--shop-line) solid var(--shop-purple);
  border-bottom: var(--shop-line) solid var(--shop-purple);
  background: transparent;
  color: var(--shop-purple);
  min-height: 22px;
  padding: 5px 8px 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.16s ease, color 0.16s ease;
}

.shop-page .product-card__colors .product-card__color:last-child,
.product-page .product-detail__colors .product-detail__color:last-child {
  border-right: 0;
}

.shop-page .product-card__color:hover,
.shop-page .product-card__color:focus-visible,
.shop-page .product-card__color.is-selected,
.product-page .product-detail__color:hover,
.product-page .product-detail__color:focus-visible,
.product-page .product-detail__color.is-selected {
  background: var(--shop-purple);
  color: var(--shop-white);
}

.shop-page .product-card__color:disabled,
.product-page .product-detail__color:disabled {
  opacity: 1;
  background: #f4f3fb;
  color: rgba(116, 108, 231, 0.58);
  border-right-color: transparent;
  border-bottom-color: transparent;
  position: relative;
  z-index: 2;
  outline: var(--shop-line) solid rgba(116, 108, 231, 0.45);
  outline-offset: -1px;
  cursor: not-allowed;
  pointer-events: none;
}

.shop-page .product-card__color:disabled:hover,
.shop-page .product-card__color:disabled:focus-visible,
.product-page .product-detail__color:disabled:hover,
.product-page .product-detail__color:disabled:focus-visible {
  background: #f4f3fb;
  color: rgba(116, 108, 231, 0.58);
}

.shop-page .product-card__size {
  appearance: none;
  border: 0;
  border-right: var(--shop-line) solid var(--shop-purple);
  border-bottom: var(--shop-line) solid var(--shop-purple);
  background: transparent;
  color: var(--shop-purple);
  min-height: 22px;
  padding: 5px 8px 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.16s ease, color 0.16s ease;
}

.shop-page .product-card__sizes .product-card__size:last-child {
  border-right: 0;
}

.shop-page .product-card__size:focus-visible,
.shop-page .product-card__size.is-selected {
  background: var(--shop-purple);
  color: var(--shop-white);
}

.shop-page .product-card__size:disabled {
  opacity: 1;
  background: #f4f3fb;
  color: rgba(116, 108, 231, 0.58);
  border-right-color: transparent;
  border-bottom-color: transparent;
  position: relative;
  z-index: 2;
  outline: var(--shop-line) solid rgba(116, 108, 231, 0.45);
  outline-offset: -1px;
  cursor: not-allowed;
  pointer-events: none;
}

.shop-page .product-card__size:disabled:hover,
.shop-page .product-card__size:disabled:focus-visible {
  background: #f4f3fb;
  color: rgba(116, 108, 231, 0.58);
}

@media (hover: hover) and (pointer: fine) {
  .shop-page .product-card__size:hover {
    background: var(--shop-purple);
    color: var(--shop-white);
  }
}

.product-page .product-card__size {
  appearance: none;
  border: 0;
  border-right: var(--shop-line) solid var(--shop-purple);
  border-bottom: var(--shop-line) solid var(--shop-purple);
  background: transparent;
  color: var(--shop-purple);
  min-height: 22px;
  padding: 5px 8px 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.16s ease, color 0.16s ease;
}

.product-page .product-card__sizes .product-card__size:last-child {
  border-right: 0;
}

.product-page .product-card__size:focus-visible,
.product-page .product-card__size.is-selected {
  background: var(--shop-purple);
  color: var(--shop-white);
}

.product-page .product-card__size:disabled {
  opacity: 1;
  background: #f4f3fb;
  color: rgba(116, 108, 231, 0.58);
  border-right-color: transparent;
  border-bottom-color: transparent;
  position: relative;
  z-index: 2;
  outline: var(--shop-line) solid rgba(116, 108, 231, 0.45);
  outline-offset: -1px;
  cursor: not-allowed;
  pointer-events: none;
}

.product-page .product-card__size:disabled:hover,
.product-page .product-card__size:disabled:focus-visible {
  background: #f4f3fb;
  color: rgba(116, 108, 231, 0.58);
}

@media (hover: hover) and (pointer: fine) {
  .product-page .product-card__size:hover {
    background: var(--shop-purple);
    color: var(--shop-white);
  }
}

.shop-page .product-card__action {
  justify-self: end;
  position: relative;
  display: grid;
  width: auto;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  min-height: 10px;
  color: var(--shop-purple);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.shop-page .product-card__action-default,
.shop-page .product-card__action-hover {
  grid-area: 1 / 1;
  font-size: 10.5px;
  line-height: 1;
  transition: opacity 0.18s ease;
}

.shop-page .product-card__action-hover {
  opacity: 0;
}

.shop-page .product-card__specs {
  padding-top: 6px;
  min-height: 14px;
  border-top: var(--shop-line) solid var(--shop-purple);
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.9;
}

.shop-page:not(.product-page) .product-card__colors,
.shop-page:not(.product-page) .product-card__sizes {
  display: none;
}

.product-page .shop-main {
  padding-top: var(--shop-header-height);
}

.product-page .product-detail-collection {
  min-height: calc(100svh - var(--shop-header-height));
}

.product-page .product-card--detail {
  border: 0;
  overflow: clip;
  min-height: calc(100svh - var(--shop-header-height));
  padding: 0;
  isolation: isolate;
  background:
    linear-gradient(to right, rgba(116, 108, 231, 0.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(116, 108, 231, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
}

.product-page .product-card--detail .product-detail {
  position: relative;
  display: flex;
  gap: 0;
  align-items: stretch;
  min-height: calc(100svh - var(--shop-header-height) - 2 * clamp(10px, 1.5vw, 22px));
}

.product-page .product-detail__artwork,
.product-page .product-detail__panel {
  border: var(--shop-line) solid var(--shop-purple);
  background: rgba(255, 255, 255, 0.9);
}

.product-page .product-detail__artwork {
  position: relative;
  flex: 1 1 50%;
  min-width: 0;
  min-height: calc(100svh - var(--shop-header-height));
  overflow: hidden;
  border-bottom: 0;
}

.product-page .product-detail__frame {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100%;
}

.product-page .product-detail__frame .product-card__image {
  opacity: 1;
  transform: none;
}

.product-page .product-detail__artwork--left .product-detail__frame,
.product-page .product-detail__artwork--right .product-detail__frame {
  min-height: 100%;
  aspect-ratio: auto;
}

.product-page .product-detail__panel {
  display: grid;
  flex-direction: column;
  justify-content: start;
  text-align: center;
  gap: 10px;
  position: absolute;
  left: 50%;
  top: 52%;
  width: min(360px, calc(100vw - 96px));
  height: auto;
  padding: 14px 14px 12px;
  transform: translate(-50%, -50%);
  z-index: 2;
  backdrop-filter: blur(4px);
  box-shadow: 0 10px 30px rgba(17, 17, 17, 0.08);
  overflow: hidden;
}

.product-page .product-detail__eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-page .product-detail__title {
  margin: 0;
  font-size: clamp(24px, 2.2vw, 42px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.product-page [data-product-name="MOLLIS SOCKS SHORT"] .product-detail__title,
.product-page [data-product-name="MOLLIS SOCKS LONG"] .product-detail__title {
  display: inline-block;
  width: max-content;
  max-width: none;
  white-space: nowrap;
  font-size: clamp(18px, 1.2vw, 28px);
  font-weight: 800;
  letter-spacing: 0.01em;
}

.product-page .product-detail__price {
  margin: 0 auto;
  font-size: 15px;
}

.product-page .product-detail__lede {
  margin: 0 auto;
  max-width: 28ch;
  font-size: 11px;
  line-height: 1.55;
  letter-spacing: 0.01em;
  text-align: center;
}

.product-page .product-detail__purchase {
  display: grid;
  gap: 8px;
  margin-top: 0;
  width: 100%;
}

.product-page .product-detail__colors {
  margin-bottom: 0;
}

.product-page .product-detail__colors .product-detail__color,
.product-page .product-detail__sizes .product-card__size {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.product-page .product-detail__sizes {
  width: 100%;
  max-width: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-page .product-detail__action {
  justify-self: stretch;
  place-items: center;
  min-height: 40px;
  border: var(--shop-line) solid var(--shop-purple);
  padding: 8px 12px;
  background: var(--shop-purple);
  color: var(--shop-white);
  text-align: center;
}

.product-page .product-detail__action .product-card__action-default,
.product-page .product-detail__action .product-card__action-hover {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 11px;
}

.product-page .product-detail__action:hover,
.product-page .product-detail__action:focus-visible {
  background: transparent;
  color: var(--shop-purple);
}

.product-page .product-detail__tabs {
  display: grid;
  gap: 10px;
  margin-top: 0;
}

.product-page .product-detail__tablist {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.product-page .product-detail__tab {
  appearance: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border: var(--shop-line) solid var(--shop-purple);
  border-right-width: 0;
  background: transparent;
  color: var(--shop-purple);
  min-height: 34px;
  padding: 8px 10px 7px;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  text-align: center;
}

.product-page .product-detail__tab:last-child {
  border-right-width: var(--shop-line);
}

body.is-locale-de .product-page .product-detail__tab {
  letter-spacing: 0.16em;
}

.product-page .product-detail__tab.is-active,
.product-page .product-detail__tab:hover,
.product-page .product-detail__tab:focus-visible {
  background: var(--shop-purple);
  color: var(--shop-white);
}

.product-page .product-detail__panels {
  border: var(--shop-line) solid var(--shop-purple);
  background: rgba(255, 255, 255, 0.72);
}

.product-page .product-detail__panel-copy {
  padding: 12px 12px 13px;
  font-size: 11px;
  line-height: 1.55;
  text-align: center;
}

.product-page .product-detail__panel-copy p {
  margin: 0;
}

.product-page .product-detail__panel-copy p + p {
  margin-top: 0.7em;
}

.product-page .product-detail__panel-copy.is-active {
  display: block;
}

.product-page .product-detail__panel-copy[hidden] {
  display: none;
}

.product-page:not(.giftcard-page) .product-detail__gallery {
  flex: 1 1 100%;
  min-width: 0;
  min-height: calc(100svh - var(--shop-header-height));
}

.product-page:not(.giftcard-page) .product-detail__gallery-track {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  min-height: calc(100svh - var(--shop-header-height));
  overflow: hidden;
}

.product-page:not(.giftcard-page) .product-detail__gallery-track::-webkit-scrollbar {
  display: none;
}

.product-page:not(.giftcard-page) .product-detail__slide {
  position: relative;
  min-width: 0;
  min-height: calc(100svh - var(--shop-header-height));
  overflow: hidden;
  border: var(--shop-line) solid var(--shop-purple);
  border-bottom: 0;
  background:
    linear-gradient(to right, rgba(116, 108, 231, 0.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(116, 108, 231, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
}

.product-page:not(.giftcard-page) .product-detail__slide:first-child {
  border-right-width: 0;
}

.product-page:not(.giftcard-page) .product-detail__slide:last-child {
  border-left-width: 0;
}

.product-page:not(.giftcard-page) .product-detail__slide .product-card__image {
  opacity: 1;
  transform: none;
}

.product-page:not(.giftcard-page) .product-detail__gallery .product-card__image--hover {
  opacity: 1;
}

.product-page:not(.giftcard-page) .product-detail__gallery-dots {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.product-page:not(.giftcard-page) .product-detail__gallery-dot {
  appearance: none;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: var(--shop-line) solid var(--shop-purple);
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.product-page:not(.giftcard-page) .product-detail__gallery-dot.is-active {
  background: var(--shop-purple);
}

.giftcard-page .product-detail-collection {
  min-height: calc(100svh - var(--shop-header-height));
}

.giftcard-page .product-card--detail {
  min-height: calc(100svh - var(--shop-header-height));
}

.giftcard-page .product-detail__artwork {
  border-top: 0;
  border-bottom: 0;
}

.giftcard-page .product-detail__panel {
  top: 50%;
  width: min(352px, calc(100vw - 64px));
  gap: 8px;
  grid-template-columns: minmax(0, 1fr);
  justify-content: stretch;
  text-align: center;
}

.giftcard-page .product-detail__title {
  font-size: clamp(22px, 2vw, 38px);
}

.giftcard-page .product-detail__price {
  font-size: 13px;
  letter-spacing: 0.14em;
}

.giftcard-page .product-detail__lede {
  display: grid;
  justify-items: center;
  gap: 2px;
  width: min(100%, 48ch);
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.giftcard-page [data-giftcard-lede] .giftcard-lede-line {
  display: block;
  width: max-content;
  max-width: 100%;
  text-align: center;
  white-space: nowrap;
}

.giftcard-page .product-detail__purchase {
  width: min(100%, 300px);
  margin-inline: auto;
  justify-items: center;
  gap: 7px;
}

.giftcard-page .product-detail__tablist {
  width: 100%;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.giftcard-page .product-detail__tabs {
  gap: 8px;
  width: min(100%, 300px);
  margin-inline: auto;
}

.giftcard-page .product-detail__sizes,
.giftcard-page .product-detail__action {
  width: 100%;
}

.giftcard-page .product-detail__action {
  justify-self: center;
}

.giftcard-page .product-detail__artwork--left .product-card__image,
.giftcard-page .product-detail__artwork--right .product-card__image {
  opacity: 1;
  transform: none;
}

.giftcard-page .product-detail__artwork--right {
  background: #fff;
}

.giftcard-page .product-detail__artwork--left .product-card__image--primary,
.giftcard-page .product-detail__artwork--right .product-card__image--hover {
  object-position: center center;
}

.shop-content-space {
  min-height: clamp(180px, 18vw, 260px);
  margin-top: 28px;
  margin-bottom: 28px;
}

.product-page .shop-content-space {
  min-height: clamp(56px, 5vw, 80px);
  margin-top: 12px;
  margin-bottom: 12px;
}

.product-page:not(.giftcard-page) .shop-content-space {
  display: none;
  min-height: 0;
  height: 0;
  margin: 0;
}

.giftcard-page .shop-content-space {
  display: none;
  min-height: 0;
  height: 0;
  margin: 0;
}

.product-page:not(.giftcard-page) .shop-banner {
  margin-top: 0;
}

.giftcard-page .shop-banner {
  margin-top: 0;
}

.shop-page .product-card:hover .product-card__image--primary {
  opacity: 0.08;
  transform: scale(1.01);
}

.shop-page .product-card:hover .product-card__image--hover {
  opacity: 1;
  transform: scale(1.01);
}

.shop-page .product-card.is-mobile-gallery-alt .product-card__image--primary {
  opacity: 0.08;
  transform: scale(1.01);
}

.shop-page .product-card.is-mobile-gallery-alt .product-card__image--hover {
  opacity: 1;
  transform: scale(1.01);
}

.shop-page .product-card__action:hover .product-card__action-default,
.shop-page .product-card__action:focus-visible .product-card__action-default {
  opacity: 0;
}

.shop-page .product-card__action:hover .product-card__action-hover,
.shop-page .product-card__action:focus-visible .product-card__action-hover {
  opacity: 1;
}

.product-page .product-card:hover .product-card__image--primary,
.product-page .product-card:focus-within .product-card__image--primary,
.product-page .product-card:hover .product-card__image--hover,
.product-page .product-card:focus-within .product-card__image--hover {
  opacity: 1;
  transform: none;
}

.product-page .product-detail__artwork--left {
  border-right-width: 0;
}

.product-page .product-detail__artwork--right {
  border-left-width: 0;
}

.product-page .product-detail__artwork--left .product-card__image--primary,
.product-page .product-detail__artwork--right .product-card__image--hover {
  object-position: center center;
}

@media (hover: none), (pointer: coarse) {
  .shop-page:not(.product-page) .product-card:hover .product-card__image--primary {
    opacity: 1;
    transform: none;
  }

  .shop-page:not(.product-page) .product-card:hover .product-card__image--hover {
    opacity: 0;
    transform: none;
  }

  .shop-page:not(.product-page) .product-card.is-mobile-gallery-alt .product-card__image--primary,
  .shop-page:not(.product-page) .product-card.is-mobile-gallery-alt:hover .product-card__image--primary {
    opacity: 0.08;
    transform: scale(1.01);
  }

  .shop-page:not(.product-page) .product-card.is-mobile-gallery-alt .product-card__image--hover,
  .shop-page:not(.product-page) .product-card.is-mobile-gallery-alt:hover .product-card__image--hover {
    opacity: 1;
    transform: scale(1.01);
  }
}

.shop-page .shop-banner {
  margin-top: 22px;
  margin-bottom: 0;
  padding: 0;
}

.shop-page.product-page.giftcard-page .shop-banner {
  margin-top: 0;
}

.shop-page .shop-banner--newsletter-trigger {
  cursor: pointer;
}

.product-page .product-detail__action:disabled {
  opacity: 0.45;
  cursor: default;
}

.product-page .product-detail__action:disabled:hover,
.product-page .product-detail__action:disabled:focus-visible {
  background: var(--shop-purple);
  color: var(--shop-white);
}

.shop-page .shop-banner__rail {
  display: flex;
  align-items: center;
  overflow: hidden;
  border-top: var(--shop-line) solid var(--shop-purple);
  border-bottom: var(--shop-line) solid var(--shop-purple);
  min-height: clamp(62px, 5vw, 84px);
}

.shop-page .shop-banner__track {
  display: inline-flex;
  align-items: center;
  gap: 0;
  height: 100%;
  padding: 0;
  white-space: nowrap;
  width: max-content;
  animation: shop-marquee 56s linear infinite;
}

.shop-page .shop-banner__group {
  display: inline-flex;
  align-items: center;
  gap: 44px;
  flex-shrink: 0;
  padding-right: 44px;
}

.shop-page .shop-banner__track span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  -webkit-text-stroke: 0.35px var(--shop-purple);
  font-size: clamp(38px, 7vw, 108px);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 0.9;
  text-transform: uppercase;
  transform: translateY(0.1em);
}

@keyframes shop-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes shop-hero-ticker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.shop-footer {
  padding: 0;
  margin-top: 0;
  border-top: 0;
}

.shop-footer__row {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 16px;
  min-height: 44px;
}

.shop-footer__group {
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-width: 0;
}

.shop-footer__group .shop-chip + .shop-chip {
  margin-left: calc(var(--shop-line) * -1);
}

.shop-footer__group--right {
  justify-content: flex-end;
  gap: 0;
}

.cart-page .cart-board {
  width: min(100%, 940px);
  margin: 0 auto;
}

.cart-board__header {
  display: contents;
}

.cart-board__status {
  margin: 0;
  padding: 12px 20px 0;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.cart-board__body {
  min-height: 0;
}

.cart-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  padding: 18px 20px 18px;
}

.cart-empty__browse {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 5px 9px 4px;
  border: var(--shop-line) solid var(--shop-purple);
  background: transparent;
  color: var(--shop-purple);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 0.16s ease, color 0.16s ease;
}

.cart-empty__browse:hover,
.cart-empty__browse:focus-visible {
  background: var(--shop-purple);
  color: var(--shop-white);
}

.cart-items {
  display: grid;
  gap: 0;
  border-top: var(--shop-line) solid var(--shop-purple);
  border-left: var(--shop-line) solid var(--shop-purple);
  border-right: var(--shop-line) solid var(--shop-purple);
}

.cart-item {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  border-bottom: var(--shop-line) solid var(--shop-purple);
  min-height: var(--cart-item-height, 400px);
}

.cart-item__link,
.cart-item__link--static {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
  min-width: 0;
  color: inherit;
  text-decoration: none;
}

.cart-item__link {
  cursor: pointer;
}

.cart-item__media {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background:
    linear-gradient(to right, rgba(116, 108, 231, 0.1) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(116, 108, 231, 0.1) 1px, transparent 1px);
  background-size: 48px 48px;
}

.cart-item__media--primary {
  border-right: var(--shop-line) solid var(--shop-purple);
}

.cart-item__media--secondary {
  border-left: var(--shop-line) solid var(--shop-purple);
}

.cart-item__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 20px 20px;
  border-top: var(--shop-line) solid var(--shop-purple);
}

.cart-item__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.cart-item__details {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 30px 22px 22px;
  text-align: center;
}

.cart-item__meta {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.cart-item__title {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.11em;
  line-height: 1.2;
  text-transform: uppercase;
}

.cart-item__price {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.09em;
  line-height: 1;
  text-transform: uppercase;
}

.cart-item__quantity {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 100%;
  max-width: 270px;
  border: var(--shop-line) solid var(--shop-purple);
}

.cart-item__quantity > * + * {
  border-left: var(--shop-line) solid var(--shop-purple);
}

.cart-item__quantity-button,
.cart-item__quantity-value {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  border: 0;
  background: transparent;
  color: var(--shop-purple);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.cart-item__quantity-button {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cart-item__quantity-button:hover,
.cart-item__quantity-button:focus-visible {
  background: var(--shop-purple);
  color: var(--shop-white);
}

.cart-item__remove {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--shop-purple);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.16s ease, color 0.16s ease;
}

.cart-item__remove:hover,
.cart-item__remove:focus-visible {
  color: var(--shop-purple);
  text-decoration: underline;
}

.cart-summary {
  border-bottom: var(--shop-line) solid var(--shop-purple);
}

.cart-summary__head {
  padding: 20px 20px 10px;
  text-align: center;
}

.cart-summary__label {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.cart-summary__value {
  margin-top: 3px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.09em;
  line-height: 1;
  text-transform: uppercase;
}

.cart-summary__note {
  margin: 0;
  padding: 8px 20px 14px;
  font-size: 9px;
  line-height: 1.45;
  letter-spacing: 0.09em;
  text-align: center;
  text-transform: uppercase;
  opacity: 0.44;
}

.cart-shipping {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  border-top: var(--shop-line) solid var(--shop-purple);
  border-bottom: var(--shop-line) solid var(--shop-purple);
  background: rgba(116, 108, 231, 0.08);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.cart-shipping.is-met {
  background: var(--shop-purple);
  color: var(--shop-white);
}

.cart-shipping.is-digital {
  background: rgba(116, 108, 231, 0.03);
  color: var(--shop-purple);
}

.cart-options {
  border-bottom: var(--shop-line) solid var(--shop-purple);
}

.cart-option {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 29px;
  padding: 6px 10px 5px;
  border: var(--shop-line) solid var(--shop-purple);
  border-top: var(--shop-line) solid var(--shop-purple);
  background: var(--shop-white);
  color: var(--shop-purple);
  font-size: 10.6px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  transition:
    background-color 0.16s ease,
    color 0.16s ease,
    opacity 0.16s ease;
  white-space: nowrap;
}

.cart-option:hover,
.cart-option:focus-visible {
  background: var(--shop-purple);
  color: var(--shop-white);
}

.cart-giftcard-inline {
  display: grid;
  gap: 8px;
  padding: 12px 20px 14px;
  border-bottom: var(--shop-line) solid var(--shop-purple);
}

.cart-giftcard-inline__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.cart-giftcard-inline__field {
  width: 100%;
  min-height: 32px;
  padding: 6px 10px;
  border: var(--shop-line) solid var(--shop-purple);
  border-radius: 0;
  background: var(--shop-white);
  color: var(--shop-purple);
  font: inherit;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.cart-giftcard-inline__field::placeholder {
  color: rgba(116, 108, 231, 0.48);
}

.cart-giftcard-inline__field:focus {
  outline: none;
  box-shadow: inset 0 0 0 1px var(--shop-purple);
}

.cart-instructions {
  border-bottom: var(--shop-line) solid var(--shop-purple);
}

.cart-instructions__field {
  display: block;
  width: 100%;
  min-height: 96px;
  padding: 12px 20px 14px;
  border: 0;
  border-top: var(--shop-line) solid var(--shop-purple);
  background: rgba(255, 255, 255, 0.12);
  color: var(--shop-purple);
  font: inherit;
  font-size: 11px;
  line-height: 1.45;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  resize: vertical;
}

.cart-instructions__field::placeholder {
  color: rgba(116, 108, 231, 0.48);
}

.cart-instructions__field:focus {
  outline: none;
}

.cart-checkout {
  width: 100%;
  min-height: 60px;
  border: 0;
  border-top: var(--shop-line) solid var(--shop-purple);
  background: rgba(116, 108, 231, 0.14);
  color: var(--shop-purple);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.16s ease, color 0.16s ease;
}

.cart-checkout:hover,
.cart-checkout:focus-visible {
  background: var(--shop-purple);
  color: var(--shop-white);
}

.cart-page .shop-content-space {
  display: block;
  min-height: var(--cart-content-space, 0px);
  margin-top: 0;
  margin-bottom: 0;
}

.wishlist-page {
  background: var(--shop-white);
}

.wishlist-page .shop-shell {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.wishlist-page .shop-main {
  flex: 1 0 auto;
  padding-top: var(--shop-header-height);
}

.wishlist-page .wishlist-main {
  display: flex;
  flex-direction: column;
}

.wishlist-page .wishlist-board {
  border-top: var(--shop-line) solid var(--shop-purple);
  border-bottom: 0;
}

.wishlist-page .wishlist-board__header {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border-bottom: var(--shop-line) solid var(--shop-purple);
}

.wishlist-page .wishlist-board__status {
  margin: 0;
  padding: 10px 16px 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

.wishlist-page .wishlist-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 86px;
  padding: 14px 16px;
  border-bottom: var(--shop-line) solid var(--shop-purple);
}

.wishlist-page .wishlist-empty__browse {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 5px 9px 4px;
  border: var(--shop-line) solid var(--shop-purple);
  background: transparent;
  color: var(--shop-purple);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 0.16s ease, color 0.16s ease;
}

.wishlist-page .wishlist-empty__browse:hover,
.wishlist-page .wishlist-empty__browse:focus-visible {
  background: var(--shop-purple);
  color: var(--shop-white);
}

.wishlist-page .wishlist-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-left: var(--shop-line) solid var(--shop-purple);
  border-right: var(--shop-line) solid var(--shop-purple);
}

.wishlist-page .wishlist-item {
  position: relative;
  min-width: 0;
  min-height: clamp(520px, 72svh, 860px);
  border-right: var(--shop-line) solid var(--shop-purple);
  border-bottom: var(--shop-line) solid var(--shop-purple);
  background: var(--shop-white);
  overflow: hidden;
}

.wishlist-page .wishlist-item:nth-child(4n) {
  border-right: 0;
}

.wishlist-page .wishlist-item__media {
  position: absolute;
  inset: 0;
  min-height: 0;
  overflow: hidden;
}

.wishlist-page .wishlist-item__link {
  position: absolute;
  inset: 0;
  display: block;
  color: inherit;
  text-decoration: none;
}

.wishlist-page .wishlist-item__link img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.wishlist-page .wishlist-item__remove {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  min-height: 22px;
  padding: 3px 7px 2px;
  border: var(--shop-line) solid var(--shop-purple);
  background: rgba(255, 255, 255, 0.92);
  color: var(--shop-purple);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.16s ease, color 0.16s ease;
}

.wishlist-page .wishlist-item__remove:hover,
.wishlist-page .wishlist-item__remove:focus-visible {
  background: var(--shop-purple);
  color: var(--shop-white);
}

.wishlist-page .wishlist-item__overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.08));
}

.wishlist-page .wishlist-item__copy {
  display: grid;
  gap: 4px;
  min-width: 0;
  max-width: 58%;
}

.wishlist-page .wishlist-item__title {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.wishlist-page .wishlist-item__variant {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.wishlist-page .wishlist-item__price {
  margin: 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

.wishlist-page .wishlist-item__actions {
  display: flex;
  align-items: end;
  justify-content: flex-end;
  gap: 10px;
  min-width: 0;
}

.wishlist-page .wishlist-item__sizes {
  display: inline-grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(24px, 1fr);
  border: var(--shop-line) solid var(--shop-purple);
  background: rgba(255, 255, 255, 0.82);
}

.wishlist-page .wishlist-item__size {
  appearance: none;
  border: 0;
  border-right: var(--shop-line) solid var(--shop-purple);
  background: transparent;
  color: var(--shop-purple);
  min-height: 28px;
  padding: 5px 4px 4px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
}

.wishlist-page .wishlist-item__size:last-child {
  border-right: 0;
}

.wishlist-page .wishlist-item__size.is-selected,
.wishlist-page .wishlist-item__size:hover,
.wishlist-page .wishlist-item__size:focus-visible {
  background: var(--shop-purple);
  color: var(--shop-white);
}

.wishlist-page .wishlist-item__add {
  appearance: none;
  border: var(--shop-line) solid var(--shop-purple);
  background: var(--shop-purple);
  color: var(--shop-white);
  min-height: 32px;
  min-width: 118px;
  padding: 7px 10px 6px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.16s ease, color 0.16s ease;
}

.wishlist-page .wishlist-item__add:hover,
.wishlist-page .wishlist-item__add:focus-visible {
  background: transparent;
  color: var(--shop-purple);
}

.wishlist-page .wishlist-item__add:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.wishlist-page .shop-content-space {
  display: none;
}

.wishlist-page .shop-banner {
  margin-top: 0;
}

.info-page {
  background: var(--shop-white);
}

.info-page .shop-shell {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.info-page .shop-main {
  flex: 1 0 auto;
  padding-top: var(--shop-header-height);
  display: flex;
  flex-direction: column;
}

.info-page .info-main {
  align-items: center;
}

.info-page .info-board {
  width: min(760px, calc(100vw - 24px));
  margin: 0 auto;
  border-left: var(--shop-line) solid var(--shop-purple);
  border-right: var(--shop-line) solid var(--shop-purple);
}

.info-page .info-board__hero {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 6px;
  min-height: clamp(90px, 11vw, 140px);
  padding: 12px 18px 12px;
  border-top: var(--shop-line) solid var(--shop-purple);
  border-bottom: var(--shop-line) solid var(--shop-purple);
  background: rgba(116, 108, 231, 0.09);
  text-align: center;
}

.info-page .info-board__eyebrow {
  margin: 0;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.info-page .info-board__title {
  margin: 0;
  font-size: clamp(22px, 2.1vw, 34px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.info-page .info-board__lead {
  margin: 0;
  max-width: 52ch;
  font-size: 11px;
  line-height: 1.55;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.info-page .info-section {
  border-bottom: var(--shop-line) solid var(--shop-purple);
}

.info-page--contact .info-section:first-of-type .info-section__title {
  text-align: left;
}

.info-page--contact .info-form {
  border-left: var(--shop-line) solid var(--shop-purple);
  border-right: var(--shop-line) solid var(--shop-purple);
  border-bottom: var(--shop-line) solid var(--shop-purple);
}

.info-page--contact .info-form__grid {
  border-bottom: var(--shop-line) solid var(--shop-purple);
}

.info-page--contact .info-form__actions {
  border-top: var(--shop-line) solid var(--shop-purple);
}

.info-page--contact .info-form__reset,
.info-page--contact .info-form__submit {
  border-bottom: var(--shop-line) solid var(--shop-purple);
}

.info-page .info-section__title {
  margin: 0;
  padding: 8px 14px 7px;
  border-bottom: var(--shop-line) solid var(--shop-purple);
  text-align: center;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.info-page .info-section__body {
  padding: 14px 16px 16px;
  font-size: 11px;
  line-height: 1.6;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.info-page .info-section__body p {
  margin: 0;
}

.info-page .info-section__body p + p,
.info-page .info-section__body p + ul,
.info-page .info-section__body ul + p,
.info-page .info-section__body ul + .info-table,
.info-page .info-section__body p + .info-table,
.info-page .info-section__body .info-table + p {
  margin-top: 0.9em;
}

.info-page .info-section__body a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.info-page .info-list {
  margin: 0;
  padding-left: 18px;
}

.info-page .info-list li + li {
  margin-top: 0.5em;
}

.info-page .info-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.info-page .info-table th,
.info-page .info-table td {
  padding: 8px 9px 7px;
  border: var(--shop-line) solid var(--shop-purple);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.45;
  text-transform: uppercase;
  vertical-align: top;
}

.info-page .info-table th {
  background: rgba(116, 108, 231, 0.08);
  text-align: center;
}

.info-page .info-table td:nth-child(1) {
  width: 30%;
}

.info-page .info-table td:nth-child(2) {
  width: 22%;
}

.info-page .info-table td:nth-child(3) {
  width: 18%;
}

.info-page .info-table td:nth-child(4) {
  width: 30%;
}

.info-page .info-form {
  display: grid;
  gap: 0;
  border-top: var(--shop-line) solid var(--shop-purple);
}

.info-page .info-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.info-page .info-form__field,
.info-page .info-form__textarea {
  appearance: none;
  width: 100%;
  border: 0;
  border-right: var(--shop-line) solid var(--shop-purple);
  border-bottom: var(--shop-line) solid var(--shop-purple);
  background: transparent;
  color: var(--shop-purple);
  font: inherit;
  font-size: 11px;
  line-height: 1.45;
  letter-spacing: 0.06em;
  text-transform: none;
}

.info-page .info-form__field {
  min-height: 54px;
  padding: 12px 12px 10px;
}

.info-page .info-form__textarea {
  min-height: 170px;
  padding: 12px;
  resize: vertical;
}

.info-page .info-form__field::placeholder,
.info-page .info-form__textarea::placeholder {
  color: rgba(116, 108, 231, 0.38);
}

.info-page .info-form__field:focus,
.info-page .info-form__textarea:focus {
  outline: none;
}

.info-page .info-form__field:nth-child(2n),
.info-page .info-form__field--full,
.info-page .info-form__textarea {
  border-right: 0;
}

.info-page .info-form__field--full {
  grid-column: 1 / -1;
}

.info-page .info-form__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-bottom: var(--shop-line) solid var(--shop-purple);
}

.info-page .info-form__field--hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  min-height: 1px;
  padding: 0;
  border: 0;
  opacity: 0;
  pointer-events: none;
}

.info-page .info-form__status {
  margin: 0;
  min-height: 28px;
  padding: 8px 12px 7px;
  border-bottom: var(--shop-line) solid var(--shop-purple);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
  text-align: center;
  color: rgba(116, 108, 231, 0.9);
}

.info-page .info-form__submit,
.info-page .info-form__reset {
  appearance: none;
  min-height: 42px;
  border: 0;
  border-right: var(--shop-line) solid var(--shop-purple);
  border-bottom: var(--shop-line) solid var(--shop-purple);
  background: transparent;
  color: var(--shop-purple);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
}

.info-page .info-form__submit:last-child,
.info-page .info-form__reset:last-child {
  border-right: 0;
}

.info-page .info-form__submit {
  background: transparent;
  color: var(--shop-purple);
}

.info-page .info-form__submit:hover,
.info-page .info-form__submit:focus-visible,
.info-page .info-form__reset:hover,
.info-page .info-form__reset:focus-visible {
  background: var(--shop-purple);
  color: var(--shop-white);
}

.info-page--about .info-main {
  align-items: stretch;
}

.info-page--about .about-us-board {
  width: 100%;
  border-top: var(--shop-line) solid var(--shop-purple);
  border-bottom: 0;
  background: var(--shop-white);
}

.info-page--about .about-us-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: calc(100svh - var(--shop-header-height) - 2 * var(--shop-line));
}

.info-page--about .about-us-media {
  margin: 0;
  border-right: var(--shop-line) solid var(--shop-purple);
  grid-column: 1;
  min-height: calc(100svh - var(--shop-header-height) - 2 * var(--shop-line));
}

.info-page--about .about-us-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.info-page--about .about-us-column {
  display: grid;
  grid-template-rows: minmax(180px, 41svh) auto auto;
  grid-column: 2;
  min-width: 0;
}

.info-page--about .about-us-spacer {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 12px 14px 10px;
  border-bottom: var(--shop-line) solid var(--shop-purple);
}

.info-page--about .about-us-label {
  margin: 0;
  padding: 5px 12px 4px;
  border: var(--shop-line) solid var(--shop-purple);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.info-page--about .about-us-panel {
  border-bottom: var(--shop-line) solid var(--shop-purple);
}

.info-page--about .about-us-panel:last-child {
  border-bottom: 0;
}

.info-page--about .about-us-panel__title {
  margin: 0;
  padding: 10px 12px 9px;
  border-bottom: var(--shop-line) solid var(--shop-purple);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.1;
  text-transform: uppercase;
}

.info-page--about .about-us-panel__body {
  padding: 12px 12px 14px;
  font-size: 11px;
  line-height: 1.55;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.info-page--about .about-us-panel__body p {
  margin: 0;
}

.info-page--about .about-us-panel__body p + p {
  margin-top: 0.9em;
}

.info-page .shop-content-space {
  display: block;
  height: 72px;
  min-height: 72px;
  flex: 0 0 72px;
  margin: 0;
}

.info-page--about .shop-content-space {
  display: none;
  height: 0;
  min-height: 0;
  flex: 0 0 0;
}

.info-page--about .shop-banner {
  margin-top: 0;
}

.info-page--about .shop-main {
  flex: 1 0 auto;
}

.info-page--about .shop-shell {
  min-height: 100vh;
}

.shop-page.info-page--about {
  min-height: 100vh;
}

.info-page--checkout-success .shop-header {
  border-bottom: var(--shop-line) solid var(--shop-purple);
}

.info-page--checkout-success .shop-main.order-confirm-main {
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding:
    calc(var(--shop-header-height) + clamp(8px, 1.8vh, 16px))
    clamp(14px, 3.2vw, 34px)
    clamp(8px, 1.8vh, 16px);
  background-color: var(--shop-white);
  background-image: url('../assets/images/order_confirmed_backgound.jpg');
  background-position: top left;
  background-size: 220px auto;
  background-repeat: repeat;
  isolation: isolate;
}

.info-page--checkout-success .shop-banner {
  margin-top: 0;
}

.info-page--checkout-success .shop-main.order-confirm-main::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(255, 255, 255, 0.34);
}

.order-confirm-stage {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  min-height: 0;
}

.order-confirm-card {
  --order-confirm-card-pad: clamp(22px, 4vw, 36px);
  --order-confirm-support-gap: 10px;
  width: min(760px, 100%);
  padding: clamp(22px, 4vw, 34px) var(--order-confirm-card-pad) var(--order-confirm-support-gap);
  max-height: min(62svh, 680px);
  overflow: auto;
  overscroll-behavior: contain;
  border: 1px solid rgba(116, 108, 231, 0.76);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow:
    0 26px 60px rgba(52, 47, 104, 0.22),
    0 1px 0 rgba(255, 255, 255, 0.44) inset;
  color: var(--shop-purple);
}

.order-confirm-card__head {
  margin-bottom: clamp(18px, 3vw, 26px);
  text-align: center;
}

.order-confirm-card__title {
  margin: 0;
  font-size: clamp(28px, 4.3vw, 48px);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.04;
  text-transform: uppercase;
}

.order-confirm-card__lead {
  margin: 12px auto 0;
  max-width: none;
  font-size: clamp(12px, 1.5vmin, 16px);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(116, 108, 231, 0.9);
  white-space: normal;
}

.order-confirm-card__divider {
  width: calc(100% + (var(--order-confirm-card-pad) * 2));
  height: 1px;
  margin: 14px 0 12px calc(var(--order-confirm-card-pad) * -1);
  background: rgba(116, 108, 231, 0.76);
}

.order-confirm-card__divider--body {
  margin-top: 12px;
  margin-bottom: var(--order-confirm-support-gap);
}

.order-confirm-card__order {
  margin: 14px auto 0;
  width: auto;
  max-width: 100%;
  display: block;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  text-align: center;
  font-size: clamp(12px, 1.5vmin, 16px);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.order-confirm-card__order span {
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  text-transform: inherit;
  color: rgba(116, 108, 231, 0.86);
}

.order-confirm-card__order span::after {
  content: ': ';
}

.order-confirm-card__order strong {
  font-size: inherit;
  font-weight: 700;
  letter-spacing: inherit;
  line-height: inherit;
  text-transform: inherit;
  word-break: break-word;
  color: var(--shop-purple);
}

.order-confirm-card__flow {
  text-align: center;
}

.order-confirm-card__flow h2 {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.1;
  text-transform: uppercase;
  color: rgba(116, 108, 231, 0.9);
}

.order-confirm-card__flow h2 + p {
  margin-top: 7px;
}

.order-confirm-card__flow p {
  margin: 0;
  width: 100%;
  font-size: 11px;
  line-height: 1.62;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(88, 81, 192, 0.96);
}

.order-confirm-card__flow strong {
  color: var(--shop-purple);
}

.order-confirm-card__flow p + h2 {
  margin-top: 12px;
}

.order-confirm-card__support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
}

.order-confirm-card__item {
  display: grid;
  gap: 4px;
  padding: 7px 8px 6px;
  border: 1px solid rgba(116, 108, 231, 0.52);
  border-radius: 0;
  background: rgba(116, 108, 231, 0.05);
}

.order-confirm-card__item h2 {
  margin: 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.1;
  text-transform: uppercase;
  color: rgba(116, 108, 231, 0.9);
}

.order-confirm-card__item p {
  margin: 0;
  font-size: 9px;
  line-height: 1.35;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(88, 81, 192, 0.96);
}

.order-confirm-card__item a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.order-confirm-card__support-grid .order-confirm-card__item + .order-confirm-card__item {
  border-left: 0;
}

@media (max-height: 900px) and (min-width: 768px) {
  .info-page--checkout-success .shop-main.order-confirm-main {
    padding:
      calc(var(--shop-header-height) + clamp(6px, 1.2vh, 10px))
      clamp(12px, 2.8vw, 24px)
      clamp(6px, 1.2vh, 10px);
  }

  .order-confirm-card {
    --order-confirm-card-pad: clamp(16px, 2.1vw, 22px);
    --order-confirm-support-gap: 8px;
    width: min(700px, 100%);
    padding: clamp(14px, 2.2vh, 18px) var(--order-confirm-card-pad) var(--order-confirm-support-gap);
    max-height: min(58svh, 560px);
  }

  .order-confirm-card__title {
    font-size: clamp(24px, 3.6vw, 36px);
  }

  .order-confirm-card__flow h2 {
    font-size: 11px;
  }

  .order-confirm-card__flow p {
    font-size: 10px;
    line-height: 1.5;
  }

  .order-confirm-card__item h2 {
    font-size: 9px;
  }

  .order-confirm-card__item p {
    font-size: 8.5px;
  }
}

.shop-locale {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(214, 214, 214, 0.72);
  backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  will-change: opacity;
  transition: opacity 0.18s ease, visibility 0.18s ease;
}

.shop-locale.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.shop-locale__backdrop {
  position: absolute;
  inset: 0;
}

.shop-locale__panel {
  position: relative;
  z-index: 1;
  width: min(304px, calc(100vw - 24px));
  max-height: calc(100vh - 24px);
  overflow: hidden;
  border: var(--shop-line) solid var(--shop-purple);
  background: rgba(255, 255, 255, 0.96);
  color: var(--shop-purple);
  box-shadow: 0 12px 28px rgba(17, 17, 17, 0.06);
  display: grid;
  grid-template-rows: auto auto auto;
}

.shop-locale__section {
  min-width: 0;
}

.shop-locale__section + .shop-locale__section {
  border-top: var(--shop-line) solid var(--shop-purple);
}

.shop-locale__section--picker {
  display: grid;
}

.shop-locale__label {
  padding: 5px 10px 4px;
  border-bottom: var(--shop-line) solid var(--shop-purple);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.shop-locale__grid,
.shop-locale__actions {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: var(--shop-line) solid var(--shop-purple);
}

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

.shop-locale__grid--language {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.shop-locale__option,
.shop-locale__action {
  appearance: none;
  border: 0;
  border-right: var(--shop-line) solid var(--shop-purple);
  border-bottom: var(--shop-line) solid var(--shop-purple);
  background: transparent;
  color: var(--shop-purple);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  min-height: 30px;
  padding: 7px 10px 6px;
  text-transform: uppercase;
  cursor: pointer;
}

.shop-locale__grid--language .shop-locale__option:nth-child(2n),
.shop-locale__actions .shop-locale__action:nth-child(2n) {
  border-right: 0;
}

.shop-locale__select {
  appearance: none;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 32px;
  padding: 7px 10px 6px;
  border: 0;
  border-bottom: var(--shop-line) solid var(--shop-purple);
  background: transparent;
  color: var(--shop-purple);
  text-align: left;
  cursor: pointer;
}

.shop-locale__select-country,
.shop-locale__select-meta,
.shop-locale__select-icon {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

.shop-locale__select-meta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
  white-space: nowrap;
}

.shop-locale__select-icon {
  margin-left: 2px;
  transform: translateY(-1px);
}

.shop-locale__dropdown {
  display: none;
  border-bottom: var(--shop-line) solid var(--shop-purple);
}

.shop-locale__dropdown.is-open {
  display: block;
}

.shop-locale__countries {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-height: min(34vh, 240px);
  overflow: auto;
}

.shop-locale__option.is-selected {
  background: var(--shop-purple);
  color: var(--shop-white);
}

.shop-locale__option:hover,
.shop-locale__option:focus-visible,
.shop-locale__action:hover,
.shop-locale__action:focus-visible {
  background: var(--shop-purple);
  color: var(--shop-white);
}

.shop-locale__actions .shop-locale__action {
  border-bottom: 0;
}

.shop-locale__actions .shop-locale__action:last-child {
  border-right: 0;
}

.shop-locale__country {
  appearance: none;
  border: 0;
  border-bottom: var(--shop-line) solid var(--shop-purple);
  background: transparent;
  color: var(--shop-purple);
  min-height: 24px;
  padding: 5px 10px 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.16s ease, color 0.16s ease;
}

.shop-locale__country:hover,
.shop-locale__country:focus-visible,
.shop-locale__country.is-selected {
  background: var(--shop-purple);
  color: var(--shop-white);
}

body.has-locale-open {
  overflow: hidden;
}

.shop-newsletter {
  z-index: 3100;
}

.shop-newsletter__panel {
  width: min(400px, calc(100vw - 24px));
  grid-template-rows: auto;
}

.shop-newsletter__row {
  margin: 0;
  border-bottom: var(--shop-line) solid var(--shop-purple);
  color: var(--shop-purple);
  text-transform: uppercase;
}

.shop-newsletter__row--head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 10px;
  min-height: 30px;
  padding: 7px 10px 6px;
}

.shop-newsletter__title {
  margin: 0;
  justify-self: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
}

.shop-newsletter__close {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--shop-purple);
  min-height: 20px;
  padding: 0 2px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
}

.shop-newsletter__row--copy {
  padding: 8px 12px 7px;
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.15;
}

.shop-newsletter__form {
  display: grid;
  gap: 0;
}

.shop-newsletter__row--input {
  min-height: 56px;
  padding: 0;
}

.shop-newsletter__input {
  appearance: none;
  display: block;
  width: 100%;
  min-height: 56px;
  border: 0;
  background: transparent;
  color: var(--shop-purple);
  text-align: center;
  text-transform: none;
  font: inherit;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.25;
  padding: 12px 14px 10px;
}

.shop-newsletter__input::placeholder {
  color: rgba(116, 108, 231, 0.56);
}

.shop-newsletter__input:focus {
  outline: none;
}

.shop-newsletter__privacy-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-height: 30px;
  padding: 7px 12px 6px;
}

.shop-newsletter__privacy {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 0;
  background: transparent;
  color: var(--shop-purple);
  cursor: pointer;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
  min-height: 18px;
  padding: 0 2px;
}

.shop-newsletter__privacy-mark {
  min-width: 25px;
  text-align: center;
  color: #414042;
  border-radius: 2px;
  padding: 1px 3px;
  pointer-events: none;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.shop-newsletter__privacy-copy {
  text-decoration: none;
}

.shop-newsletter__privacy-link {
  color: var(--shop-purple);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.shop-newsletter__privacy-link:visited {
  color: var(--shop-purple);
}

.shop-newsletter__privacy-dot {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
}

.shop-newsletter__join {
  appearance: none;
  width: 100%;
  min-height: 30px;
  padding: 7px 12px 6px;
  border: 0;
  background: transparent;
  color: var(--shop-purple);
  cursor: pointer;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.shop-newsletter__status {
  margin: 0;
  border-bottom: 0;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
  text-align: center;
  color: rgba(116, 108, 231, 0.88);
  display: none;
}

.shop-newsletter__status:not(:empty) {
  display: block;
  min-height: 26px;
  padding: 7px 10px 6px;
}

.shop-newsletter__close:focus-visible {
  background: var(--shop-purple);
  color: var(--shop-white);
}

.shop-newsletter__privacy:focus-visible {
  background: transparent;
  color: inherit;
}

.shop-newsletter__privacy.is-checked {
  background: transparent;
  color: inherit;
}

.shop-newsletter__privacy.is-checked .shop-newsletter__privacy-mark {
  background: var(--shop-purple);
  color: var(--shop-white);
}

.shop-newsletter__privacy:focus-visible .shop-newsletter__privacy-mark {
  background: var(--shop-purple);
  color: var(--shop-white);
}

.shop-newsletter__privacy-link:focus-visible,
.shop-newsletter__join:focus-visible {
  background: var(--shop-purple);
  color: var(--shop-white);
}

@media (hover: hover) and (pointer: fine) {
  .shop-newsletter__close:hover {
    background: var(--shop-purple);
    color: var(--shop-white);
  }

  .shop-newsletter__privacy:hover {
    background: transparent;
    color: inherit;
  }

  .shop-newsletter__privacy:hover .shop-newsletter__privacy-mark {
  background: var(--shop-purple);
  color: var(--shop-white);
}

  .shop-newsletter__privacy-mark:hover {
  background: var(--shop-purple);
  color: var(--shop-white);
}

  .shop-newsletter__privacy-link:hover,
  .shop-newsletter__join:hover {
    background: var(--shop-purple);
    color: var(--shop-white);
  }
}

.shop-bundle-config__panel {
  position: relative;
  width: min(920px, calc(100vw - 24px));
  grid-template-rows: auto auto;
}

.shop-bundle-config__panel::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: var(--shop-line);
  background: var(--shop-purple);
  pointer-events: none;
}

.shop-bundle-config__header {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 8px 10px 0;
  border-bottom: 0;
}

.shop-bundle-config__close {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--shop-purple);
  min-width: 40px;
  min-height: 34px;
  padding: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}

.shop-bundle-config__sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.shop-bundle-config__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: clamp(560px, 74svh, 760px);
  position: relative;
}

.shop-bundle-config__preview {
  position: relative;
  background: rgba(255, 255, 255, 0.92);
  min-height: clamp(560px, 74svh, 760px);
  overflow: hidden;
}

.shop-bundle-config__image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center center;
}

.shop-bundle-config__content {
  display: grid;
  gap: 0;
  align-content: start;
  align-self: center;
  min-height: 0;
}

.shop-bundle-config__meta,
.shop-bundle-config__group {
  border-bottom: var(--shop-line) solid var(--shop-purple);
}

.shop-bundle-config__content > .shop-bundle-config__group:last-of-type {
  border-bottom: 0;
}

.shop-bundle-config__meta {
  display: grid;
  gap: 4px;
  padding: 10px 10px 8px;
}

.shop-bundle-config__title,
.shop-bundle-config__price,
.shop-bundle-config__group-label {
  margin: 0;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.shop-bundle-config__price {
  font-size: 12px;
  padding-top: 2px;
}

.shop-bundle-config__title {
  font-size: clamp(16px, 2.1vw, 28px);
  line-height: 0.98;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.shop-bundle-config__group {
  display: grid;
  gap: 0;
}

.shop-bundle-config__group-label {
  padding: 5px 9px 4px;
  border-bottom: var(--shop-line) solid var(--shop-purple);
  text-align: center;
}

.shop-bundle-config__options {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.shop-bundle-config__options[data-bundle-style-group] {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.shop-bundle-config__options[data-bundle-color-group] {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.shop-bundle-config__option {
  appearance: none;
  border: 0;
  border-right: var(--shop-line) solid var(--shop-purple);
  border-bottom: var(--shop-line) solid var(--shop-purple);
  background: transparent;
  color: var(--shop-purple);
  min-height: 30px;
  padding: 5px 10px 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.16s ease, color 0.16s ease;
}

.shop-bundle-config__options .shop-bundle-config__option:last-child {
  border-right: 0;
}

.shop-bundle-config__option:focus-visible,
.shop-bundle-config__option.is-selected {
  background: var(--shop-purple);
  color: var(--shop-white);
}

.shop-bundle-config__option:disabled {
  opacity: 1;
  background: #f4f3fb;
  color: rgba(116, 108, 231, 0.58);
  border-right-color: transparent;
  border-bottom-color: transparent;
  position: relative;
  z-index: 2;
  outline: var(--shop-line) solid rgba(116, 108, 231, 0.45);
  outline-offset: -1px;
  cursor: not-allowed;
  pointer-events: none;
}

.shop-bundle-config__option:disabled:hover,
.shop-bundle-config__option:disabled:focus-visible {
  background: #f4f3fb;
  color: rgba(116, 108, 231, 0.58);
}

@media (hover: hover) and (pointer: fine) {
  .shop-bundle-config__option:hover {
    background: var(--shop-purple);
    color: var(--shop-white);
  }
}

.shop-bundle-config__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 10px;
  border-top: var(--shop-line) solid var(--shop-purple);
  border-bottom: var(--shop-line) solid var(--shop-purple);
}

.shop-bundle-config__cancel,
.shop-bundle-config__add {
  appearance: none;
  border: 0;
  border-right: var(--shop-line) solid var(--shop-purple);
  background: transparent;
  color: var(--shop-purple);
  min-height: 30px;
  padding: 5px 10px 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.16s ease, color 0.16s ease;
}

.shop-bundle-config__actions .shop-bundle-config__add {
  border-right: 0;
  background: var(--shop-purple);
  color: var(--shop-white);
}

.shop-bundle-config__cancel:hover,
.shop-bundle-config__cancel:focus-visible,
.shop-bundle-config__add:hover,
.shop-bundle-config__add:focus-visible {
  background: var(--shop-purple);
  color: var(--shop-white);
}

.shop-bundle-config__actions .shop-bundle-config__add:hover,
.shop-bundle-config__actions .shop-bundle-config__add:focus-visible {
  background: transparent;
  color: var(--shop-purple);
}

.shop-bundle-config__add:disabled {
  opacity: 0.4;
  cursor: default;
}

.shop-bundle-config__add:disabled:hover,
.shop-bundle-config__add:disabled:focus-visible {
  background: var(--shop-purple);
  color: var(--shop-white);
}

@media (max-width: 1100px) {
  .shop-hero__media {
    min-height: 100svh;
  }

  .product-card__title {
    max-width: 15ch;
  }

  .product-page .product-detail__panel {
    width: min(380px, calc(100vw - 72px));
    height: min(76svh, calc(100svh - var(--shop-header-height) - 28px));
  }

  .wishlist-page .wishlist-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wishlist-page .wishlist-item:nth-child(4n) {
    border-right: var(--shop-line) solid var(--shop-purple);
  }

  .wishlist-page .wishlist-item:nth-child(2n) {
    border-right: 0;
  }
}

@media (max-width: 767px) {
  :root {
    --shop-header-height: 62px;
  }

  .shop-header {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    gap: 6px;
    padding: 7px 8px 5px;
  }

  .shop-header__group {
    width: auto;
    min-width: 0;
  }

  .shop-header__group--left {
    justify-self: start;
    justify-content: flex-start;
  }

  .shop-header__group--right {
    justify-self: end;
    justify-content: flex-end;
  }

  .shop-brand {
    order: 0;
    width: auto;
  }

  .shop-brand img {
    width: 41px;
    transform: translateY(-1px);
  }

  .shop-shell.is-scrolled .shop-brand img {
    width: 20px;
    transform: translateY(0);
  }

  .shop-header .shop-chip {
    flex: 0 0 auto;
    min-width: 0;
    min-height: 26px;
    font-size: 8.4px;
    padding: 5px 7px 4px;
    letter-spacing: 0.06em;
  }

  .product-card__wishlist {
    min-width: 34px;
    min-height: 26px;
    padding: 4px 8px 3px;
    font-size: 9.5px;
  }

  .shop-bundle-config__panel {
    width: min(100%, calc(100vw - 36px));
    max-height: calc(100svh - 24px);
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }

  .shop-bundle-config__panel::before {
    display: none;
  }

  .shop-bundle-config__header {
    padding: 5px 8px 0;
  }

  .shop-bundle-config__close {
    min-width: 34px;
    min-height: 30px;
    font-size: 18px;
  }

  .shop-bundle-config__body {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .shop-bundle-config__preview {
    width: 100%;
    grid-column: 1 / -1;
    min-height: 0;
    max-height: min(30svh, 210px);
    aspect-ratio: 16 / 10;
  }

  .shop-bundle-config__content {
    align-self: stretch;
  }

  .shop-bundle-config__meta {
    gap: 3px;
    padding: 8px 9px 7px;
  }

  .shop-bundle-config__title {
    font-size: clamp(14px, 5.3vw, 20px);
  }

  .shop-bundle-config__price {
    font-size: 11px;
    padding-top: 1px;
  }

  .shop-bundle-config__group-label {
    padding: 4px 8px 3px;
  }

  .shop-bundle-config__option {
    min-height: 28px;
    padding: 4px 8px 3px;
    font-size: 9px;
  }

  .shop-bundle-config__actions {
    margin-top: 8px;
  }

  .shop-bundle-config__cancel,
  .shop-bundle-config__add {
    min-height: 28px;
    padding: 4px 8px 3px;
    font-size: 9px;
  }

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

  .shop-categories .shop-chip {
    min-height: 30px;
    padding: 4px 6px 3px;
    font-size: 8.5px;
    letter-spacing: 0.07em;
  }

  .shop-categories .shop-chip:not(:first-child) {
    border-left: var(--shop-line) solid var(--shop-purple);
    border-top: 0;
  }

  .wishlist-page .wishlist-list {
    grid-template-columns: 1fr;
  }

  .wishlist-page .wishlist-item {
    min-height: clamp(420px, 72svh, 680px);
    border-right: 0;
  }

  .wishlist-page .wishlist-item__overlay {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .wishlist-page .wishlist-item__copy {
    max-width: 100%;
  }

  .wishlist-page .wishlist-item__actions {
    width: 100%;
    justify-content: space-between;
  }

  .wishlist-page .wishlist-item__add {
    min-width: 108px;
  }

  .shop-hero {
    min-height: 100svh;
  }

  .shop-hero__media {
    min-height: 100svh;
    padding: 88px 18px 72px;
  }

  .shop-hero__ticker {
    left: 0;
    right: 0;
    bottom: 24px;
  }

  .shop-hero__ticker-group {
    gap: 28px;
    padding-right: 28px;
  }

  .shop-hero__ticker-group span {
    font-size: 14px;
    letter-spacing: 0.06em;
  }

  .shop-content-space {
    min-height: 180px;
    margin-top: 36px;
    margin-bottom: 36px;
  }

  .product-page .product-card--detail {
    min-height: auto;
    padding: 12px;
  }

  .product-page .product-card--detail .product-detail {
    flex-direction: column;
    min-height: auto;
    gap: 12px;
  }

  .product-page .product-detail__artwork {
    min-height: 34svh;
  }

  .product-page .product-detail__panel {
    position: relative;
    left: auto;
    top: auto;
    padding: 16px 14px;
    width: min(100%, 520px);
    height: auto;
    transform: none;
    margin: -20px auto 0;
  }

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

  .product-page .product-detail__tab {
    min-height: 30px;
    font-size: 9px;
  }

  body.is-locale-de .product-page .product-detail__tab {
    letter-spacing: 0.15em;
  }

  .product-page .product-detail__tab:nth-child(2n) {
    border-right-width: var(--shop-line);
  }

  .product-page .product-detail__panel-copy {
    padding: 12px;
  }

  .product-page:not(.giftcard-page) .product-card--detail {
    padding: 8px;
  }

  .product-page:not(.giftcard-page) .product-card--detail .product-detail {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .product-page:not(.giftcard-page) .product-detail__gallery {
    display: grid;
    gap: 7px;
    min-height: 0;
  }

  .product-page:not(.giftcard-page) .product-detail__gallery-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    min-height: 0;
  }

  .product-page:not(.giftcard-page) .product-detail__slide {
    flex: 0 0 100%;
    min-width: 100%;
    min-height: 0;
    scroll-snap-align: start;
    aspect-ratio: 4 / 5;
    border: var(--shop-line) solid var(--shop-purple);
  }

  .product-page:not(.giftcard-page) .product-detail__slide:first-child,
  .product-page:not(.giftcard-page) .product-detail__slide:last-child {
    border-left-width: var(--shop-line);
    border-right-width: var(--shop-line);
  }

  .product-page:not(.giftcard-page) .product-detail__gallery-dots {
    display: inline-flex;
  }

  .product-page:not(.giftcard-page) .product-detail__gallery-dot {
    width: 8px;
    height: 8px;
  }

  .product-page:not(.giftcard-page) .product-detail__panel {
    grid-template-columns: minmax(0, 1fr);
    justify-content: stretch;
    width: min(100%, 340px);
    margin: 0 auto;
    padding: 12px 11px 11px;
    box-shadow: none;
    backdrop-filter: none;
    text-align: center;
  }

  .product-page:not(.giftcard-page) .product-detail__title {
    width: 100%;
    max-width: 100%;
    font-size: clamp(20px, 6.4vw, 26px);
    line-height: 1;
    white-space: normal;
  }

  .product-page:not(.giftcard-page) [data-product-name="MOLLIS SOCKS SHORT"] .product-detail__title,
  .product-page:not(.giftcard-page) [data-product-name="MOLLIS SOCKS LONG"] .product-detail__title {
    width: 100%;
    max-width: 100%;
    white-space: normal;
    font-size: clamp(20px, 6.4vw, 26px);
  }

  .product-page:not(.giftcard-page) .product-detail__price {
    font-size: 11px;
  }

  .product-page:not(.giftcard-page) .product-detail__lede {
    max-width: none;
    font-size: 10.5px;
    line-height: 1.5;
  }

  .product-page:not(.giftcard-page) .product-detail__purchase {
    gap: 6px;
  }

  .product-page:not(.giftcard-page) .product-detail__color,
  .product-page:not(.giftcard-page) .product-card__size {
    min-height: 36px;
    padding: 8px 6px 7px;
    font-size: 9.6px;
    letter-spacing: 0.1em;
  }

  .product-page:not(.giftcard-page) .product-detail__action {
    min-height: 38px;
    padding: 8px 10px;
  }

  .product-page:not(.giftcard-page) .product-detail__tabs {
    gap: 6px;
  }

  .product-page:not(.giftcard-page) .product-detail__tab {
    min-height: 32px;
    padding: 8px 6px 7px;
    font-size: 8.6px;
  }

  .product-page:not(.giftcard-page) .product-detail__tab:not(.is-active):hover,
  .product-page:not(.giftcard-page) .product-detail__tab:not(.is-active):focus,
  .product-page:not(.giftcard-page) .product-detail__tab:not(.is-active):focus-visible {
    background: transparent;
    color: var(--shop-purple);
  }

  body.is-locale-de .product-page:not(.giftcard-page) .product-detail__tab {
    letter-spacing: 0.14em;
  }

  .product-page:not(.giftcard-page) .product-detail__panel-copy {
    padding: 10px;
    font-size: 10.5px;
    line-height: 1.52;
  }

  .giftcard-page .product-detail-collection {
    min-height: 0;
  }

  .giftcard-page .product-card--detail {
    min-height: auto;
    padding: 8px;
  }

  .giftcard-page .product-card--detail .product-detail {
    gap: 8px;
  }

  .giftcard-page .product-detail__artwork--right {
    display: none;
  }

  .giftcard-page .product-detail__artwork--left {
    width: 100%;
    min-height: 0;
    aspect-ratio: 16 / 11;
    border: var(--shop-line) solid var(--shop-purple);
    background:
      radial-gradient(circle at 18% 14%, rgba(116, 108, 231, 0.16), transparent 42%),
      radial-gradient(circle at 85% 86%, rgba(116, 108, 231, 0.14), transparent 44%),
      linear-gradient(to bottom, rgba(116, 108, 231, 0.06), rgba(116, 108, 231, 0.02));
  }

  .giftcard-page .product-detail__artwork--left .product-detail__frame {
    height: 100%;
    min-height: 0;
  }

  .giftcard-page .product-detail__artwork--left .product-card__image--primary {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .giftcard-page .product-detail__panel {
    width: min(100%, 340px);
    margin: 0 auto;
    padding: 11px 10px 10px;
    text-align: left;
  }

  .giftcard-page .product-detail__title,
  .giftcard-page .product-detail__price,
  .giftcard-page .product-detail__lede {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .giftcard-page .product-detail__purchase {
    width: 100%;
    gap: 6px;
  }

  .giftcard-page .product-detail__sizes {
    width: 100%;
  }

  .giftcard-page .product-detail__tabs {
    gap: 6px;
    width: 100%;
  }

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

  .giftcard-page .product-detail__tab {
    min-height: 22px;
    padding: 5px 8px 4px;
    font-size: 10px;
    letter-spacing: 0.12em;
  }

  .giftcard-page .product-detail__tab:nth-child(2n) {
    border-right-width: 0;
  }

  .giftcard-page .product-detail__tab:last-child {
    border-right-width: var(--shop-line);
  }

  .giftcard-page .shop-content-space {
    display: none;
    min-height: 0;
    height: 0;
    margin: 0;
  }

  .giftcard-page .shop-banner {
    margin-top: 0;
  }

  .shop-collection__label {
    padding-inline: 12px;
  }

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

  .product-card + .product-card {
    border-top: var(--shop-line) solid var(--shop-purple);
  }

  .product-card:nth-child(odd) {
    border-right: 0;
  }

  .product-card__media {
    aspect-ratio: 1.02 / 1;
  }

  .product-card__title {
    max-width: 16ch;
    font-size: 14px;
  }

  .product-card__meta {
    padding: 9px 10px 10px;
    gap: 6px;
  }

  .shop-page .shop-banner__track {
    padding: 12px 0 8px;
    transform: translate3d(0, 0, 0);
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
  }

  .shop-page .shop-banner__rail {
    isolation: isolate;
    contain: paint;
  }

  .shop-page .shop-banner__track span {
    font-size: clamp(28px, 13vw, 60px);
    -webkit-font-smoothing: antialiased;
    text-rendering: geometricPrecision;
    -webkit-text-fill-color: transparent;
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
  }

  .shop-page .shop-banner__group {
    gap: 26px;
    padding-right: 26px;
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
  }

  .shop-page .shop-banner {
    margin-top: 44px;
    margin-bottom: 0;
  }

  .wishlist-page .shop-banner {
    margin-top: 0;
  }

  .shop-page.product-page.giftcard-page .shop-banner {
    margin-top: 0;
  }

  .product-page:not(.giftcard-page) .product-detail-collection {
    min-height: 0;
  }

  .product-page:not(.giftcard-page) .shop-content-space {
    display: none;
    min-height: 0;
    height: 0;
    margin: 0;
  }

  .product-page:not(.giftcard-page) .shop-banner {
    margin-top: 0;
  }

  .info-page:not(.info-page--about) .info-board {
    width: min(100%, calc(100vw - 24px));
  }

  .info-page:not(.info-page--about) .info-board__hero {
    gap: 5px;
    min-height: 80px;
    padding: 10px 12px 9px;
  }

  .info-page:not(.info-page--about) .info-board__title {
    font-size: 20px;
  }

  .info-page:not(.info-page--about) .info-board__lead {
    font-size: 10px;
    line-height: 1.45;
  }

  .info-page:not(.info-page--about) .info-section__title {
    padding: 6px 10px 5px;
  }

  .info-page:not(.info-page--about) .info-section__body {
    padding: 9px 10px 10px;
    font-size: 10px;
  }

  .info-page:not(.info-page--about) .info-section__body p + p,
  .info-page:not(.info-page--about) .info-section__body p + ul,
  .info-page:not(.info-page--about) .info-section__body ul + p,
  .info-page:not(.info-page--about) .info-section__body ul + .info-table,
  .info-page:not(.info-page--about) .info-section__body p + .info-table,
  .info-page:not(.info-page--about) .info-section__body .info-table + p {
    margin-top: 0.68em;
  }

  .info-page:not(.info-page--about) .shop-content-space {
    height: 18px;
    min-height: 18px;
    flex-basis: 18px;
  }

  .info-page--about .about-us-layout {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .info-page--checkout-success .shop-main.order-confirm-main {
    padding:
      calc(var(--shop-header-height) + 14px)
      clamp(10px, 3vw, 16px)
      clamp(14px, 4vw, 24px);
    background-size: 150px auto;
  }

  .order-confirm-card {
    --order-confirm-card-pad: 14px;
    --order-confirm-support-gap: 8px;
    width: min(680px, 100%);
    padding: 14px 14px var(--order-confirm-support-gap);
    max-height: none;
    overflow: visible;
    border-radius: 0;
  }

  .order-confirm-card__head {
    margin-bottom: 12px;
  }

  .order-confirm-card__title {
    font-size: clamp(21px, 8.5vw, 30px);
  }

  .order-confirm-card__lead {
    margin-top: 8px;
    font-size: 11px;
    line-height: 1.45;
  }

  .order-confirm-card__divider {
    margin: 10px auto 9px;
  }

  .order-confirm-card__divider--body {
    margin-top: 8px;
    margin-bottom: var(--order-confirm-support-gap);
  }

  .order-confirm-card__order {
    margin-top: 10px;
    font-size: 11px;
    line-height: 1.45;
  }

  .order-confirm-card__order span {
    font-size: inherit;
  }

  .order-confirm-card__order strong {
    font-size: inherit;
  }

  .order-confirm-card__support-grid {
    grid-template-columns: 1fr;
  }

  .order-confirm-card__item {
    padding: 6px 7px 5px;
    border-radius: 0;
    gap: 3px;
  }

  .order-confirm-card__support-grid .order-confirm-card__item + .order-confirm-card__item {
    border-left: 1px solid rgba(116, 108, 231, 0.52);
    border-top: 0;
  }

  .order-confirm-card__flow p {
    font-size: 10px;
    line-height: 1.5;
  }

  .order-confirm-card__flow h2 {
    font-size: 10px;
  }

  .order-confirm-card__item h2 {
    font-size: 8px;
  }

  .order-confirm-card__item p {
    font-size: 8px;
    line-height: 1.25;
  }

  .info-page--about .about-us-media {
    min-height: 56svh;
    grid-column: auto;
    border-right: 0;
    border-left: 0;
    border-bottom: var(--shop-line) solid var(--shop-purple);
  }

  .info-page--about .about-us-column {
    grid-template-rows: auto auto auto;
    grid-column: auto;
  }

  .info-page--about .about-us-spacer {
    min-height: 44px;
    padding: 6px 10px;
  }

  .info-page--about .about-us-panel__title {
    padding: 6px 10px 5px;
  }

  .info-page--about .about-us-panel__body {
    padding: 7px 10px 8px;
    font-size: 10px;
  }

  .info-page--about .about-us-panel__body p + p {
    margin-top: 0.56em;
  }

  .info-page--about .shop-content-space {
    height: 0;
    min-height: 0;
    flex-basis: 0;
  }

  .info-page .info-table th,
  .info-page .info-table td {
    padding: 7px 8px 6px;
    font-size: 8px;
  }

  .info-page:not(.info-page--about) .info-form__grid {
    grid-template-columns: 1fr;
  }

  .info-page:not(.info-page--about) .info-form__field {
    min-height: 46px;
    padding: 10px 10px 8px;
    border-right: 0;
  }

  .info-page:not(.info-page--about) .info-form__field--full {
    grid-column: auto;
  }

  .info-page:not(.info-page--about) .info-form__actions {
    grid-template-columns: 1fr;
  }

  .info-page:not(.info-page--about) .info-form__submit,
  .info-page:not(.info-page--about) .info-form__reset {
    min-height: 38px;
    border-right: 0;
  }

  .info-page:not(.info-page--about) .info-form__status {
    min-height: 24px;
    padding: 6px 10px 5px;
    font-size: 8px;
  }

  .info-page:not(.info-page--about) .info-form__textarea {
    min-height: 124px;
    padding: 10px;
  }

  .info-page.info-page--contact .info-form__field,
  .info-page.info-page--contact .info-form__textarea,
  .cart-page .cart-giftcard-inline__field,
  .cart-page .cart-instructions__field {
    font-size: 16px;
    line-height: 1.35;
    letter-spacing: 0.04em;
  }

  .info-page.info-page--contact .info-form__field::placeholder,
  .info-page.info-page--contact .info-form__textarea::placeholder,
  .cart-page .cart-giftcard-inline__field::placeholder,
  .cart-page .cart-instructions__field::placeholder {
    letter-spacing: 0.05em;
  }

  .cart-page .cart-giftcard-inline__field::placeholder {
    font-size: 13px;
    letter-spacing: 0.02em;
  }

  .shop-footer__row {
    padding: 10px 12px;
    padding-bottom: max(4px, min(7px, calc(2px + env(safe-area-inset-bottom, 0px) * 0.22)));
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .shop-footer__group {
    width: 100%;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 0;
  }

  .shop-footer__group .shop-chip {
    min-height: 24px;
    padding: 4px 7px 3px;
    font-size: 9px;
    letter-spacing: 0.1em;
  }

  .shop-footer__group--left {
    justify-content: center;
  }

  .shop-footer__group--right {
    justify-content: center;
  }

  .shop-locale {
    padding: 12px;
  }

  .shop-locale__panel {
    width: min(100%, calc(100vw - 24px));
    max-height: calc(100vh - 24px);
  }

  .shop-locale__grid--language,
  .shop-locale__countries {
    grid-template-columns: 1fr;
  }

  .shop-locale__countries {
    max-height: min(34vh, 240px);
  }

  .shop-locale__option,
  .shop-locale__country {
    border-right: 0;
  }

  .shop-newsletter {
    padding: 12px;
  }

  .shop-newsletter__panel {
    width: min(100%, calc(100vw - 24px));
  }

  .shop-newsletter__row--head {
    min-height: 28px;
    padding: 6px 8px 5px;
  }

  .shop-newsletter__title {
    font-size: 10px;
    letter-spacing: 0.09em;
  }

  .shop-newsletter__close {
    font-size: 10px;
    min-height: 18px;
  }

  .shop-newsletter__row--copy {
    padding: 7px 10px 6px;
    font-size: 8.6px;
    line-height: 1.18;
  }

  .shop-newsletter__row--input,
  .shop-newsletter__input {
    min-height: 48px;
  }

  .shop-newsletter__input {
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: 0.03em;
    padding: 10px 10px 8px;
    text-transform: none;
  }

  .shop-newsletter__input::placeholder {
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }

  .shop-newsletter__privacy-row {
    min-height: 28px;
    padding: 6px 10px 5px;
  }

  .shop-newsletter__privacy,
  .shop-newsletter__privacy-link,
  .shop-newsletter__privacy-dot,
  .shop-newsletter__join {
    font-size: 8.8px;
  }

  .shop-newsletter__status:not(:empty) {
    min-height: 24px;
    padding: 6px 8px 5px;
    font-size: 8px;
  }
}

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

  .shop-hero__ticker-track,
  .shop-banner__track {
    animation: none;
  }

  .product-card__image,
  .shop-chip {
    transition: none;
  }
}

/* Product detail copy alignment: center title/price/description on product pages */
.product-page:not(.giftcard-page) .product-detail__title {
  text-align: center;
  justify-self: center;
}

.product-page:not(.giftcard-page) .product-detail__price,
.product-page:not(.giftcard-page) .product-detail__lede {
  text-align: center;
}

.product-page:not(.giftcard-page) .product-detail__lede {
  margin-left: auto;
  margin-right: auto;
}

.product-page [data-product-name="MOLLIS SOCKS SHORT"] .product-detail__lede,
.product-page [data-product-name="MOLLIS SOCKS LONG"] .product-detail__lede,
.product-page [data-product-name="STARTER SET"] .product-detail__lede,
.product-page [data-product-name="ALL WEEK SET"] .product-detail__lede {
  white-space: nowrap;
  max-width: none;
}
