*,
*::before,
*::after {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media (max-width: 959px) {
  * {
    -webkit-tap-highlight-color: transparent;
  }
}
body {
  width: 100%;
  margin: 0;
  /* Safety net against horizontal scrollbars from full-bleed effects that use
     100vw/50vw (which include the scrollbar width). `clip` does not create a
     scroll container, so position: sticky and scroll-snap keep working. */
  overflow-x: clip;
  font-family: var(--sort-body-font);
  font-size: var(--body3-font-size);
  font-style: var(--sort-body-style);
  font-weight: var(--sort-body-weight);
  line-height: var(--sort-body-line-height);
  letter-spacing: var(--sort-body-letter-spacing);
}
body,
html {
  color: rgba(var(--color-text));
  background-color: rgb(var(--color-page-background));
}
ol,
ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
dl {
  margin-block: 0;
}
dd {
  margin-inline-start: 0;
}
h1:empty,
h2:empty,
h3:empty,
h4:empty,
h5:empty,
h6:empty,
section:empty,
article:empty,
p:empty,
a:empty,
ol:empty,
ul:empty,
dl:empty,
summary:empty {
  display: none;
}
a:not([href]) {
  cursor: not-allowed;
}
a:not(.button),
a:not(.button):hover {
  color: rgba(var(--color-button-text-link, --color-text), 1);
  text-decoration: none;
}
svg.icon circle,
svg.icon path {
  vector-effect: non-scaling-stroke;
}
p:first-child {
  margin-block-start: 0;
}
p:last-child {
  margin-block-end: 0;
}
button {
  color: inherit;
}
button:disabled {
  opacity: 0.3;
}
summary {
  position: relative;
  display: inline-block;
  list-style: none;
  cursor: pointer;
  user-select: none;
}
summary::-webkit-details-marker {
  display: none;
}
:root {
  --z-index-hover: 1;
  --z-index-active: 2;
  --z-index-focus: 3;
  --z-index-dropdown: 1000;
  --z-index-sticky: 1010;
  --z-index-fixed: 1020;
  --z-index-modal: 1030;
  --z-index-popover: 1040;
  --z-index-tooltip: 1050;
  --z-index-toast: 1060;
}
:root {
  --page-padding: 30px;
}
@media (max-width: 959px) {
  :root {
    --page-padding: 20px;
  }
}
.page-width {
  width: 100%;
  max-width: calc(var(--page-padding) * 2 + var(--page-width));
  padding-inline: var(--page-padding);
  margin-inline: auto;
}
.header__container .page-width {
  max-width: 100%
}
.page-width.page-width--fluid {
  max-width: 100%;
}
.page-width.page-width--thin {
  max-width: 726px;
}
@media (max-width: 959px) {
  .page-width {
    max-width: 100%;
    padding-inline: var(--page-padding);
  }
}
.grid {
  --column-gap: var(--grid-horizontal-spacing);
  --row-gap: var(--grid-vertical-spacing);

  display: grid;
  grid-auto-columns: var(--column-width);
  grid-auto-flow: column;
  gap: var(--row-gap) var(--column-gap);
  width: 100%;
  overflow-x: auto;
}
@media (max-width: 959px) {
  .grid {
    --column-gap: calc(var(--grid-horizontal-spacing) / 2);
    --row-gap: calc(var(--grid-vertical-spacing) / 2);
    --column-width: calc(
      (
          100% - var(--column-gap, 0px) *
            (var(--mobile-gap-columns, var(--mobile-columns)) - 1)
        ) /
        var(--mobile-columns)
    );

    grid-template-columns: repeat(var(--mobile-columns), var(--column-width));
    grid-auto-flow: var(--mobile-auto-flow);
  }
}
@media (min-width: 960px) {
  .grid {
    --column-width: calc(
      (
          100% - var(--column-gap, 0px) *
            (var(--desktop-gap-columns, var(--desktop-columns)) - 1)
        ) /
        var(--desktop-columns)
    );

    grid-template-columns: repeat(var(--desktop-columns), var(--column-width));
    grid-auto-flow: var(--desktop-auto-flow);
  }
}
.button,
.shopline-element-buy-now {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--button-border-thickness) + 9px)
    calc(var(--button-border-thickness) + 18px);
  font-family: var(--sort-body-font);
  font-size: var(--body2-font-size);
  font-weight: var(--body-bold-font-weight);
  line-height: var(--sort-body-line-height);
  color: rgb(var(--color-button-text));
  text-align: center;
  text-decoration: none;
  letter-spacing: var(--sort-body-letter-spacing);
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  background-color: rgb(var(--color-button-background));
  border: none;
  border-radius: var(--button-border-radius);
  transition: opacity 150ms ease-in-out;

  --border-opacity: calc(100% - var(--button-border-opacity));
  --alpha-button-background: 1;
}
.button:not(.button--link, .button--icon),
.shopline-element-buy-now {
  white-space: nowrap;
  box-shadow: var(--button-shadow-offset-x) var(--button-shadow-offset-y)
    var(--button-shadow-blur)
    rgba(var(--color-shadow), var(--button-shadow-opacity));
}
.button:not(.button--link, .button--icon)::after,
.shopline-element-buy-now::after {
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  content: "";
  border-radius: var(--button-border-radius);
  box-shadow:
    0 0 0 var(--button-border-thickness, 1px)
      rgba(var(--color-button-text), var(--border-opacity)),
    0 0 0 var(--button-border-thickness, 1px)
      rgba(var(--color-button-background), var(--alpha-button-background));
  transition: box-shadow var(--duration-short, 0.3s) ease;
}
.button:disabled,
.button.disabled {
  cursor: not-allowed;
  opacity: 0.3;
}
.button:not([disabled], .button--icon):hover,
.shopline-element-buy-now:hover {
  background-color: rgba(var(--color-button-background), 0.9);
}
.button:not([disabled], .button--icon):hover::after,
.shopline-element-buy-now:hover::after {
  box-shadow:
    0 0 0 calc(var(--button-border-thickness) + 1px)
      rgba(var(--color-button-text), var(--border-opacity)),
    0 0 0 calc(var(--button-border-thickness) + 1px)
      rgba(var(--color-button-background), var(--alpha-button-background));
}
.button:not([disabled], .button--icon)::after {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
  content: "";
}
.button:not([disabled], .button--icon):active::after {
  animation: animation-button-press linear 0.6s 1;
  animation-fill-mode: forwards;
}
@keyframes animation-button-press {
  0% {
    background-color: rgba(var(--color-button-text), 0.08);
    background-image: radial-gradient(
      circle,
      rgba(var(--color-button-text), 0.08) 1%,
      transparent 1%
    );
    background-repeat: no-repeat;
    background-position: 50%;
    background-origin: padding-box;
    background-size: 100%;
  }

  100% {
    background-position: 50%;
    background-size: 25000%;
  }
}
.button--secondary {
  --color-button-background: var(--color-button-secondary-background);
  --color-button-text: var(--color-button-secondary-text);
  --border-opacity: var(--button-border-opacity);
}
.button--secondary:not(.button--link)::after {
  box-shadow: 0 0 0 var(--button-border-thickness, 1px)
    rgba(var(--color-button-secondary-border), var(--button-border-opacity));
}
.button--secondary:not(.button--link):active::after {
  box-shadow:
    0 0 0 rgb(var(--color-button-secondary-border)),
    inset var(--button-border-thickness, 1px) 0 0
      rgba(var(--color-button-secondary-border), var(--button-border-opacity)),
    inset 0 var(--button-border-thickness, 1px) 0
      rgba(var(--color-button-secondary-border), var(--button-border-opacity));
}
.button--link {
  --color-button-background: transparent;
  --color-button-text: rgb(var(--color-text));

  position: relative;
  padding: 0 1px;
  text-decoration: underline !important;
  text-underline-offset: 6px;
}
.button__spinner {
  position: absolute;
  inset-block-start: 50%;
  inset-inline-start: 50%;
  display: none;
  width: 20px;
  height: 20px;
  margin-block-start: -10px;
  margin-inline-start: -10px;
  color: rgb(var(--color-button-text));
}
.button.loading {
  color: transparent;
}
.button.loading .button__spinner {
  display: flex;
  animation: animation-circling linear 1.5s infinite;
}
.button--fill {
  width: 100%;
}
.button--icon {
  position: relative;
  display: inline-flex;
  padding: 0;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  background-color: transparent;
  border: none;
  transition: transform 300ms;
}
@media (min-width: 960px) {
  .button--icon:hover,
  .button--icon:focus {
    transform: scale(1.11);
  }
}
.button--icon::after {
  display: none;
}
.button.button--icon:hover {
  background-color: transparent;
  box-shadow: none;
}
.loading--rotator {
  display: none;
}
.loading .loading--rotator {
  animation: animation-circling linear 1.5s infinite;
}
.loading > .loading--rotator {
  display: inline-flex;
}
.button.loading .loading--rotator {
  position: absolute;
  inset-block-start: 50%;
  inset-inline-start: 50%;
  display: flex;
  width: 20px;
  height: 20px;
  margin-block-start: -10px;
  margin-inline-start: -10px;
  color: rgb(var(--color-button-text));
  content: "";
}
.field {
  position: relative;
  box-sizing: border-box;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-block-end: 20px;
  font-size: var(--body4-font-size);
  line-height: var(--sort-body-line-height);
  color: rgb(var(--color-text));
  background-color: rgb(var(--color-background));
  transition: all 300ms;
}
@media (max-width: 959px) {
  .field {
    margin-block-end: 16px;
  }
}
.field::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
  border-color: rgba(var(--color-entry-line), var(--input-border-opacity));
  border-style: solid;
  border-width: var(--input-border-thickness);
  border-radius: var(--input-border-radius);
  box-shadow: var(--input-shadow-offset-x) var(--input-shadow-offset-y)
    var(--input-shadow-blur)
    rgba(var(--color-text), var(--input-shadow-opacity));
  transition: border-color 300ms;
}
.field__inner {
  position: relative;
  flex: 1;
}
.field__group {
  display: flex;
  gap: 16px;
}
.field__label {
  position: absolute;
  inset-block-start: 50%;
  inset-inline: 16px 0;
  display: -webkit-box;
  overflow: hidden;
  font-size: var(--body4-font-size);
  color: rgb(var(--color-light-text));
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  word-break: break-word;
  pointer-events: none;
  transition: transform 300ms ease;
  transform: translateY(-50%);
  transform-origin: left top;
  -webkit-box-orient: vertical;
}
.header-search-bar__form .field__input {
  text-transform: uppercase;  
  letter-spacing: 0.2em;
  font-weight: 500;
  font-family: var(--sort-title-font) !important;
}

.field__input {
  width: 100%;
  padding: 20px 16px 6px;
  font-size: var(--body4-font-size);
  line-height: var(--sort-body-line-height);
  color: rgb(var(--color-text));
  appearance: none;
  background: none;
  border: none;
  outline: none;
  box-shadow: none !important;
  font-family: var(--sort-title-font);
}
.field__input::placeholder {
  opacity: 0;
}
.field__input::-webkit-search-cancel-button {
  display: none;
}
.field__input:focus ~ .field__label,
.field__input:not(:placeholder-shown) ~ .field__label,
.field__input:-webkit-autofill ~ .field__label {
  display: block;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  word-break: normal;
  white-space: nowrap;
  transform: scale(0.7) translate(0, -120%);
  -webkit-box-orient: vertical;
}
.field__input:-webkit-autofill,
.field__input:-webkit-autofill:hover,
.field__input:-webkit-autofill:focus,
.field__input:-webkit-autofill:active {
  box-shadow: 0 0 0 1000px rgb(var(--color-background)) inset !important;
  -webkit-text-fill-color: rgb(var(--color-text));
}
.field__input.textarea {
  min-height: 100px;
  padding-block: 0;
  padding-inline: 16px;
  margin-block: 20px 6px;
  resize: none;
}
.field__input.textarea + .field__label {
  inset-block-start: 20px;
}
.field__suffix {
  display: flex;
  justify-content: center;
  padding-block: 6px;
  padding-inline-end: 10px;
}
.field__info {
  display: flex;
  font-size: 12px;
  line-height: 1.4;
}
.field__info > svg {
  margin-inline-end: 4px;
}
.field__info--error {
  margin-block: -10px 20px;
  font-size: var(--body6-font-size);
  color: rgb(var(--color-error-message));
}
.field__info--error:empty {
  display: none;
}
@media (min-width: 960px) {
  .field__info > svg {
    margin-inline-end: 8px;
  }
}
.field:hover::after {
  border-color: rgba(var(--color-text), var(--input-border-opacity));
  border-width: calc(var(--input-border-thickness) + 1px);
}
.field:focus::after,
.field:focus-within::after {
  border-color: rgba(var(--color-text), var(--input-border-opacity));
  border-width: calc(var(--input-border-thickness) + 1px);
}
.field--disabled {
  pointer-events: none;
}
.field--disabled::after {
  background-color: rgb(0 0 0 / 10%);
  border-color: rgb(0 0 0 / 10%);
}
.field--error::after {
  border-color: rgba(var(--color-error-message), var(--input-border-opacity));
  border-width: calc(var(--input-border-thickness) + 1px);
}
.field--normal .field__input {
  padding: 13px 16px;
}
.field--normal .field__input::placeholder {
  opacity: 1;
}
.field--normal .field__input ~ .field__label,
.field--normal .field__input:focus ~ .field__label,
.field--normal .field__input:not(:placeholder-shown) ~ .field__label,
.field--normal .field__input:-webkit-autofill ~ .field__label {
  display: none;
}
.field-checkbox {
  position: relative;
  inset-block-start: 0.2em;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-feature-settings: "tnum";
  font-variant: tabular-nums;
  line-height: 1;
  white-space: nowrap;
  list-style: none;
  cursor: pointer;
  outline: none;
}
.field-checkbox input[type="checkbox"] {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  margin: 0;
  appearance: auto;
  cursor: pointer;
  opacity: 0;
}
.field-checkbox .checkbox {
  position: relative;
  inset-block-start: 0;
  inset-inline-start: 0;
  display: inline-block;
  width: 16px;
  height: 16px;
  border-collapse: separate;
  border: 1px solid rgb(var(--color-entry-line));
  border-radius: 2px;
  transition: all 0.3s;
  direction: ltr;
}
.field-checkbox .checkbox::after {
  position: absolute;
  inset-block-start: 50%;
  inset-inline-start: 21.5%;
  display: table;
  width: 6px;
  height: 8px;
  content: " ";
  border: 2px solid rgb(var(--color-button-text));
  border-block-start: 0;
  border-inline-start: 0;
  opacity: 0;
  transition:
    all 0.1s cubic-bezier(0.71, -0.46, 0.88, 0.6),
    opacity 0.1s;
  transform: rotate(45deg) scale(0) translate(-50%, -50%);
}
.field-checkbox input[type="checkbox"]:checked + .checkbox {
  background-color: rgb(var(--color-button-background));
  border-color: rgb(var(--color-button-background));
}
.field-checkbox input[type="checkbox"]:checked + .checkbox::after {
  position: absolute;
  display: table;
  content: " ";
  border: 2px solid rgb(var(--color-button-text));
  border-block-start: 0;
  border-inline-start: 0;
  opacity: 1;
  transition: all 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46) 0.1s;
  transform: rotate(45deg) scale(1) translate(-50%, -50%);
}
.field select ~ .icon-arrow {
  position: absolute;
  inset-block: 0;
  inset-inline-end: 16px;
  display: flex;
  align-items: center;
  margin-block: auto;
  margin-inline: auto;
  pointer-events: none;
}
.field-switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 20px;
}
.field-switch-slider {
  position: absolute;
  inset: 0;
  cursor: pointer;
  background-color: rgba(var(--color-text), 0.1);
  border-radius: 20px;
  transition: 0.2s;
}
.field-switch-slider::before {
  position: absolute;
  inset-block-end: 2px;
  inset-inline-start: 2px;
  width: 16px;
  height: 16px;
  content: "";
  background-color: rgb(var(--color-page-background));
  border-radius: 50%;
  transition: 0.2s;
}
.field-switch input {
  width: 0;
  height: 0;
  opacity: 0;
}
.field-switch input:checked + .field-switch-slider {
  background-color: rgba(var(--color-text), 1);
}
.field-switch input:checked + .field-switch-slider::before {
  transform: translateX(20px);
}
.field-radio {
  position: relative;
  margin-inline-end: 8px;
}
.field-radio-wrapper {
  display: inline-flex;
  align-items: center;
  margin-inline-end: 20px;
  cursor: pointer;
}
.field-radio-wrapper:last-child {
  margin-inline-end: 0;
}
.field-radio .radio {
  position: relative;
  inset-block-start: 0;
  inset-inline-start: 0;
  display: block;
  width: 16px;
  height: 16px;
  border-collapse: separate;
  background-color: rgb(var(--color-page-background));
  border: 1px solid rgb(var(--color-entry-line));
  border-radius: 50%;
  transition: all 0.3s;
}
.field-radio .radio::after {
  position: absolute;
  inset-block-start: 50%;
  inset-inline-start: 50%;
  width: 16px;
  height: 16px;
  margin-block-start: -8px;
  margin-inline-start: -8px;
  content: "";
  background-color: rgb(var(--color-button-background));
  border-radius: 16px;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
  transform: scale(0);
}
.field-radio > input {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  cursor: pointer;
  opacity: 0;
}
.field-radio > input:checked + .radio {
  border-color: rgb(var(--color-button-background));
}
.field-radio > input:checked + .radio::after {
  opacity: 1;
  transform: scale(0.5);
}
.form__error-message {
  margin-block: -10px 20px;
  font-size: var(--body6-font-size);
  color: rgb(var(--color-error-message));
}
.form__error-message:empty {
  display: none;
}
@media (max-width: 959px) {
  .form__error-message {
    margin-block: -8px 16px;
  }
}
@keyframes animation-fade-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}
@keyframes animation-fade-in-center {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes animation-zoom-in {
  0% {
    opacity: 0;
    transform: scaleY(0.8);
  }

  100% {
    opacity: 1;
    transform: scaleY(1);
  }
}
@keyframes animation-slide-in {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes animation-slide-in-top {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes animation-slide-in-bottom {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes animation-slide-in-left {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes animation-slide-in-right {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes animation-circling {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(1turn);
  }
}
:root {
  --title0-font-size: calc(var(--sort-title-size) * 3.3333);
  --title1-font-size: calc(var(--sort-title-size) * 2.3333);
  --title2-font-size: calc(var(--sort-title-size) * 1.6667);
  --title3-font-size: calc(var(--sort-title-size) * 1.2);
  --title4-font-size: calc(var(--sort-title-size) * 1);
  --title5-font-size: calc(var(--sort-title-size) * 0.8333);
  --title6-font-size: calc(var(--sort-title-size) * 0.6667);
  --body1-font-size: calc(var(--sort-body-size) * 1.5714);
  --body2-font-size: calc(var(--sort-body-size) * 1.2857);
  --body3-font-size: calc(var(--sort-body-size) * 1.1429);
  --body4-font-size: calc(var(--sort-body-size) * 1);
  --body5-font-size: calc(var(--sort-body-size) * 0.9286);
  --body6-font-size: calc(var(--sort-body-size) * 0.8571);
}
@media (max-width: 959px) {
  :root {
    --title1-font-size: calc(var(--sort-title-size) * 1);
    --title2-font-size: calc(var(--sort-title-size) * 0.8333);
    --title3-font-size: calc(var(--sort-title-size) * 0.7333);
    --title4-font-size: calc(var(--sort-title-size) * 0.6667);
    --title5-font-size: calc(var(--sort-title-size) * 0.6);
    --title6-font-size: calc(var(--sort-title-size) * 0.6);
    --body1-font-size: calc(var(--sort-body-size) * 1.1429);
    --body2-font-size: calc(var(--sort-body-size) * 1.0714);
    --body3-font-size: calc(var(--sort-body-size) * 1);
    --body4-font-size: calc(var(--sort-body-size) * 0.9286);
    --body5-font-size: calc(var(--sort-body-size) * 0.8571);
    --body6-font-size: calc(var(--sort-body-size) * 0.8571);
  }
}
h1,
h2,
h3,
h4,
h5,
h6,
.title0,
.title1,
.title2,
.title3,
.title4,
.title5,
.title6 {
  margin-block: 0;
  font-family: var(--sort-title-font);
  font-style: var(--sort-title-font-style);
  font-weight: var(--sort-title-font-weight, 700);
  line-height: var(--sort-title-line-height);
  text-transform: var(--sort-title-text-transform);
  letter-spacing: var(--sort-title-letter-spacing);
  word-break: break-word;
}
.title0 {
  font-size: var(--title0-font-size);
}
h1,
.title1 {
  font-size: var(--title1-font-size);
}
h2,
.title2 {
  font-size: var(--title2-font-size);
}
h3,
.title3 {
  font-size: var(--title3-font-size);
}
h4,
.title4 {
  font-size: var(--title4-font-size);
}
h5,
.title5 {
  font-size: var(--title5-font-size);
}
h6,
.title6 {
  font-size: var(--title6-font-size);
}
.body1,
.body2,
.body3,
.body4,
.body5,
.body6,
.body-font {
  font-family: var(--sort-body-font);
  font-weight: var(--sort-body-weight, 400);
  line-height: var(--sort-body-line-height);
  letter-spacing: var(--sort-body-letter-spacing);
  word-break: break-word;
}
.body1 {
  font-size: var(--body1-font-size);
}
.body2 {
  font-size: var(--body2-font-size);
}
.body3 {
  font-size: var(--body3-font-size);
}
.body4 {
  font-size: var(--body4-font-size);
}
.body5 {
  font-size: var(--body5-font-size);
}
.body6 {
  font-size: var(--body6-font-size);
}
.title-font-bold {
  font-weight: var(--sort-title-font-weight) !important;
}
.body-font-bold {
  font-weight: var(--sort-body-weight-bold) !important;
}
.text-left {
  text-align: start;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: end;
}
@media (max-width: 959px) {
  .text-left-mobile {
    text-align: start;
  }

  .text-center-mobile {
    text-align: center;
  }

  .text-right-mobile {
    text-align: end;
  }
}
.hidden {
  display: none !important;
}
@media (max-width: 959px) {
  .hidden-mobile {
    display: none !important;
  }
}
@media (min-width: 960px) {
  .hidden-desktop {
    display: none !important;
  }
}
.hidden-empty:empty {
  display: none;
}
.overflow-hidden {
  overflow: hidden;
}
.flex-align-center {
  display: flex;
  align-items: center;
}
.flex-justify-center {
  display: flex;
  justify-content: center;
}
.block-full-width {
  display: block;
  width: 100%;
}
.tag-unstyled {
  padding: 0;
  margin: 0;
}
.list-unstyled {
  padding: 0;
  margin: 0;
  list-style: none;
}
.font-bold {
  font-weight: bold;
}
.hover-scale .hover-scale__image {
  transition: all 0.5s;
}
.hover-scale:hover .hover-scale__image {
  transform: scale(1.05);
}
.modal-border-shadow {
  box-sizing: border-box;
  border-color: rgba(var(--color-text), var(--modal-border-opacity));
  border-style: solid;
  border-width: var(--modal-border-thickness);
  border-radius: var(--modal-border-radius);
  box-shadow: var(--modal-shadow-offset-x) var(--modal-shadow-offset-y)
    var(--modal-shadow-blur)
    rgba(var(--color-shadow), var(--modal-shadow-opacity));
}
.drawer-border-shadow {
  box-sizing: border-box;
  filter: drop-shadow(
    var(--drawer-shadow-offset-x) var(--drawer-shadow-offset-y)
      var(--drawer-shadow-blur)
      rgba(var(--color-shadow), var(--drawer-shadow-opacity))
  );
  border-color: rgba(var(--color-text), var(--drawer-border-opacity));
  border-style: solid;
  border-width: 0 var(--drawer-border-thickness) 0 0;
}
.product-card-border-shadow {
  box-sizing: border-box;
  overflow: hidden;
  border-color: rgba(var(--color-text), var(--product-card-border-opacity));
  border-style: solid;
  border-width: var(--product-card-border-thickness) !important;
  border-radius: var(--product-card-border-radius);
  box-shadow: var(--product-card-shadow-offset-x)
    var(--product-card-shadow-offset-y) var(--product-card-shadow-blur)
    rgba(var(--color-shadow), var(--product-card-shadow-opacity));
}
.collection-card-border-shadow {
  box-sizing: border-box;
  overflow: hidden;
  border-color: rgba(var(--color-text), var(--collection-card-border-opacity));
  border-style: solid;
  border-width: var(--collection-card-border-thickness) !important;
  border-radius: var(--collection-card-border-radius);
  box-shadow: var(--collection-card-shadow-offset-x)
    var(--collection-card-shadow-offset-y) var(--collection-card-shadow-blur)
    rgba(var(--color-shadow), var(--collection-card-shadow-opacity));
}
.article-card-border-shadow {
  box-sizing: border-box;
  overflow: hidden;
  border-color: rgba(var(--color-text), var(--article-card-border-opacity));
  border-style: solid;
  border-width: var(--article-card-border-thickness) !important;
  border-radius: var(--article-card-border-radius);
  box-shadow: var(--article-card-shadow-offset-x)
    var(--article-card-shadow-offset-y) var(--article-card-shadow-blur)
    rgba(var(--color-shadow), var(--article-card-shadow-opacity));
}
.pointer-events {
  pointer-events: none;
}
.rte::after {
  display: block;
  clear: both;
  content: "";
}
.rte ul,
.rte ol {
  padding: revert;
  margin: revert;
  list-style: revert;
}
.rte > p:first-child {
  margin-block-start: 0;
}
.rte > p:last-child {
  margin-block-end: 0;
}
.rte a,
.rte a:hover {
  position: relative;
  padding: 0 1px;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
}
.rte img,
.rte video {
  max-width: 100%;
  height: auto;
}
.rte iframe {
  max-width: 100%;
}
.rte p img {
  vertical-align: bottom;
}
.rte table {
  table-layout: fixed;
}
.icon--checkbox {
  cursor: pointer;
}
.icon--checkbox .filled {
  opacity: 0;
  fill: rgba(var(--color-text, 61, 56, 25), 1);
  stroke: rgba(var(--color-text, 61, 56, 25), 1);
  transition: opacity 0.1s ease;
}
.icon--checkbox .checkmark {
  stroke: rgba(var(--color-button-text, 255, 255, 255), 1);
  transition: stroke-dashoffset 0.3s ease;
}
input:checked ~ .icon--checkbox .filled {
  opacity: 1;
}
input:checked ~ .icon--checkbox .box {
  stroke: rgba(var(--color-entry-line, 232, 232, 225), 1);
}
input:checked ~ .icon--checkbox .checkmark {
  stroke-dashoffset: 0;
}
@layer component {
  theme-input-number {
    position: relative;
    display: inline-flex;
    width: calc(
      3 * var(--sort-body-size) + var(--input-border-thickness) * 2 + 30px * 2
    );
    color: rgba(var(--color-text));
    background: rgb(var(--color-background));
    border-radius: var(--input-border-radius-outset);
  }

  theme-input-number::before {
    position: absolute;
    inset: 0;
    z-index: var(--z-index-hover);
    pointer-events: none;
    content: "";
    border-radius: var(--input-border-radius-outset);
    box-shadow: var(--input-shadow-offset-x) var(--input-shadow-offset-y)
      var(--input-shadow-blur)
      rgba(var(--color-text), var(--input-shadow-opacity));
  }

  theme-input-number::after {
    position: absolute;
    inset: var(--input-border-thickness);
    z-index: var(--z-index-hover);
    pointer-events: none;
    content: "";
    border-radius: var(--input-border-radius);
    box-shadow: 0 0 0 var(--input-border-thickness)
      rgba(var(--color-text), var(--input-border-opacity));
    transition: box-shadow 0.2s;
  }
  theme-input-number:hover::after {
    box-shadow: 0 0 0 calc(var(--input-border-thickness) + 1px)
      rgba(var(--color-text), var(--input-border-opacity));
  }

  theme-input-number button[name="minus"],
  theme-input-number button[name="plus"] {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    align-self: stretch;
    justify-content: center;
    width: 28px;
    padding: 0;
    color: rgb(var(--color-text));
    background: transparent;
    border: 0;
  }

  theme-input-number button[name="minus"]:disabled,
  theme-input-number button[name="plus"]:disabled {
    pointer-events: none;
    cursor: not-allowed;
    opacity: 0.3;
  }

  theme-input-number button[name="minus"] .icon,
  theme-input-number button[name="plus"] .icon {
    width: 10px;
    height: 10px;
    pointer-events: none;
  }

  theme-input-number input[type="number"] {
    flex: 1 0 0;
    width: 100%;
    padding: 0.6em 0;
    color: currentcolor;
    text-align: center;
    appearance: textfield;
    background: transparent;
    border: 0;
    outline-style: none;
  }

  theme-input-number input[type="number"]::-webkit-outer-spin-button,
  theme-input-number input[type="number"]::-webkit-inner-spin-button {
    margin: 0;
    appearance: none;
  }
}
.country-select {
  position: relative;
  display: flex;
  padding-inline-start: 8px;
}
.country-select__dropdown {
  position: absolute;
  inset: 0;
  appearance: none;
  cursor: pointer;
  border: none;
  opacity: 0;
}
.country-select__trigger {
  position: relative;
  display: flex;
  align-items: center;
  padding-inline-start: 16px;
}
.country-select__trigger span {
  padding-inline-end: 4px;
  color: rgb(var(--color-text));
}
.country-select__trigger::before {
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 0;
  height: 100%;
  content: " ";
  border-inline-start: 1px solid rgb(var(--color-entry-line));
}
@layer component {
  theme-show-more:empty {
    display: none;
  }
  theme-show-more:not([open]) [data-more="true"],
  theme-show-more:not([open]) .view-less {
    display: none !important;
  }
  theme-show-more[open] .view-more {
    display: none !important;
  }
}
.product-price {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  color: rgb(var(--color-sale));
}
.product-price__item--compare {
  color: rgb(var(--color-light-text));
  text-decoration: line-through;
}

/* ============================================================
   Queen Cosmetics — reusable global button system
   Three button styles, each a faithful copy of an existing bespoke button:

     .qc-btn--primary   = featured-collection "VIEW ALL PRODUCTS"
                          black, white label; white panel swipes L->R on hover,
                          continues L->R out on leave.
     .qc-btn--secondary = newsletter "SUBSCRIBE" (also used in slideshow slides)
                          white, dark label; white panel swipes OUT L->R on
                          hover to reveal a transparent button, re-enters L->R.
     .qc-btn--tertiary  = product-card "ADD TO CART"
                          violet (#762f8e) -> black on hover, no swipe.

   The swipe uses a ::before panel (translateX) + a .qc-btn__label span on top.
   Add .is-armed on first hover (global script in layout/theme.html) so the
   leave animation never fires on page load.
   ============================================================ */

.qc-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 15px 34px;
  font-family: var(--sort-body-font);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: 0;
  outline: 0;
  box-shadow: none;
  overflow: hidden;
  isolation: isolate;
  transition: color 350ms ease, background-color 350ms ease;
}
/* full-width variant (e.g. cart Checkout uses .button--fill) */
.qc-btn.button--fill,
.qc-btn--fill {
  width: 100%;
}
.qc-btn__label {
  position: relative;
  z-index: 2;
  display: inline-flex;
  transition: color 350ms ease;
}
/* swipe panel — hidden by default; primary/secondary position it explicitly */
.qc-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  transition: transform 350ms ease;
  pointer-events: none;
}
.qc-btn::after { display: none !important; }
.qc-btn:disabled,
.qc-btn.disabled { cursor: not-allowed; opacity: 0.45; }

/* ---- PRIMARY (featured-collection view-all) ----
   !important throughout so the base .button (incl. its pink :hover) never
   bleeds through. */
.qc-btn--primary,
.qc-btn--primary:hover,
.qc-btn--primary:focus-visible {
  color: #ffffff !important;
  background-color: #1c1b1b !important;
  background-image: none !important;
  border: 1px solid #1c1b1b !important;
  box-shadow: none !important;
}
.qc-btn--primary .qc-btn__label { color: #ffffff; }
.qc-btn--primary::before {
  background-color: #ffffff;
  transform: translateX(-101%); /* hidden off the left edge */
}
.qc-btn--primary:hover::before,
.qc-btn--primary:focus-visible::before { transform: translateX(0); }
.qc-btn--primary.is-armed:not(:hover):not(:focus-visible)::before {
  animation: qc-swipe-out-right 350ms ease;
}
.qc-btn--primary:hover .qc-btn__label,
.qc-btn--primary:focus-visible .qc-btn__label { color: #1c1b1b; }

/* ---- SECONDARY (newsletter subscribe / slideshow / founder) ----
   Stays TRANSPARENT in every state (no brand pink); only the white ::before
   panel and the label colour change. */
.qc-btn--secondary,
.qc-btn--secondary:hover,
.qc-btn--secondary:focus-visible {
  color: #1c1b1b !important;
  background-color: transparent !important;
  background-image: none !important;
  border: 1px solid #ffffff !important;
  box-shadow: none !important;
}
.qc-btn--secondary .qc-btn__label { color: #1c1b1b; }
.qc-btn--secondary::before {
  background-color: #ffffff;
  transform: translateX(0); /* white panel covers at rest */
}
.qc-btn--secondary:hover::before,
.qc-btn--secondary:focus-visible::before { transform: translateX(101%); }
.qc-btn--secondary.is-armed:not(:hover):not(:focus-visible)::before {
  animation: qc-swipe-in-left 350ms ease;
}
.qc-btn--secondary:hover .qc-btn__label,
.qc-btn--secondary:focus-visible .qc-btn__label { color: #ffffff; }

/* ---- TERTIARY (product-card add to cart) ---- */
.qc-btn--tertiary {
  color: #faf4fa !important;
  background-color: #762f8e !important;
  background-image: none !important;
  border: 1px solid #762f8e !important;
  box-shadow: none !important;
}
.qc-btn--tertiary .qc-btn__label { color: #faf4fa; }
.qc-btn--tertiary::before { display: none; }
.qc-btn--tertiary:hover,
.qc-btn--tertiary:focus-visible {
  background-color: #000000 !important;
  border-color: #000000 !important;
}

/* swipe keyframes (panel translate, always left -> right) */
@keyframes qc-swipe-out-right {
  0% { transform: translateX(0); }
  100% { transform: translateX(101%); }
}
@keyframes qc-swipe-in-left {
  0% { transform: translateX(-101%); }
  100% { transform: translateX(0); }
}

/* ---- Fallback: generic theme primary buttons that we can't add a label
   span to (cart Checkout, account forms, Shopline-rendered). Give them the
   primary look + a simple color swap so they stay on-brand, minus the panel
   swipe. Bespoke section buttons opt out via their container. ---- */
:where(.button:not(.button--link):not(.button--icon):not(.button--secondary):not(.button--no-swipe):not(.qc-btn),
  .shopline-element-buy-now):not(
    .slideshow__group *,
    .founder-story-container *,
    .sign-up-and-save__inline-form *,
    .qc-btn *
  ) {
  font-size: 12px !important;
  font-weight: 500 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  color: #ffffff !important;
  background-color: #1c1b1b !important;
  background-image: none !important;
  border: 1px solid #1c1b1b !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  transition: background-color 300ms ease, color 300ms ease !important;
}
:where(.button:not(.button--link):not(.button--icon):not(.button--secondary):not(.button--no-swipe):not(.qc-btn),
  .shopline-element-buy-now):not(
    .slideshow__group *,
    .founder-story-container *,
    .sign-up-and-save__inline-form *,
    .qc-btn *
  ):not([disabled]):hover {
  background-color: #ffffff !important;
  color: #1c1b1b !important;
}
:where(.button:not(.button--link):not(.button--icon):not(.button--secondary):not(.button--no-swipe):not(.qc-btn),
  .shopline-element-buy-now):not(
    .slideshow__group *,
    .founder-story-container *,
    .sign-up-and-save__inline-form *,
    .qc-btn *
  )::after {
  display: none !important;
}

/* ============================================================
   Queen Cosmetics — scroll reveal (fadeInUp)
   Elements with .qc-reveal start invisible + shifted down, then fade and
   slide up when they enter the viewport (a global IntersectionObserver in
   layout/theme.html adds .qc-reveal--in). Mirrors the live site's reveal.
   Stagger children with .qc-reveal-group (each child delays a little more).
   Fully disabled for prefers-reduced-motion.
   ============================================================ */
.qc-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 600ms cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 600ms cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: opacity, transform;
}
.qc-reveal--in {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger: when a container is .qc-reveal-group, its direct .qc-reveal
   children cascade in. Delays applied once the group is in view. */
.qc-reveal-group.qc-reveal--in > .qc-reveal:nth-child(1) { transition-delay: 0ms; }
.qc-reveal-group.qc-reveal--in > .qc-reveal:nth-child(2) { transition-delay: 90ms; }
.qc-reveal-group.qc-reveal--in > .qc-reveal:nth-child(3) { transition-delay: 180ms; }
.qc-reveal-group.qc-reveal--in > .qc-reveal:nth-child(4) { transition-delay: 270ms; }
.qc-reveal-group.qc-reveal--in > .qc-reveal:nth-child(5) { transition-delay: 360ms; }
.qc-reveal-group.qc-reveal--in > .qc-reveal:nth-child(n+6) { transition-delay: 450ms; }

@media (prefers-reduced-motion: reduce) {
  .qc-reveal,
  .qc-reveal--in {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* Product-card grid stagger — cards in a row reveal in a quick cascade
   (delay by column position) rather than all at once. */
.main-collection__list > li.qc-reveal.qc-reveal--in,
.main-search__results.grid > li.qc-reveal.qc-reveal--in,
.block-product-list > li.qc-reveal.qc-reveal--in {
  transition-delay: 0ms;
}
.main-collection__list > li.qc-reveal--in:nth-child(4n+2),
.main-search__results.grid > li.qc-reveal--in:nth-child(4n+2),
.block-product-list > li.qc-reveal--in:nth-child(4n+2) {
  transition-delay: 80ms;
}
.main-collection__list > li.qc-reveal--in:nth-child(4n+3),
.main-search__results.grid > li.qc-reveal--in:nth-child(4n+3),
.block-product-list > li.qc-reveal--in:nth-child(4n+3) {
  transition-delay: 160ms;
}
.main-collection__list > li.qc-reveal--in:nth-child(4n+4),
.main-search__results.grid > li.qc-reveal--in:nth-child(4n+4),
.block-product-list > li.qc-reveal--in:nth-child(4n+4) {
  transition-delay: 240ms;
}
/* a smaller lift for cards so the grid doesn't jump too much */
/* Static grids (collection / search) get a small vertical lift. */
.main-collection__list > li.qc-reveal,
.main-search__results.grid > li.qc-reveal {
  transform: translateY(18px);
}
.main-collection__list > li.qc-reveal.qc-reveal--in,
.main-search__results.grid > li.qc-reveal.qc-reveal--in {
  transform: translateY(0);
}

/* Carousel cards (featured / recommendations) live in a horizontal scroller
   whose overflow-x:auto forces overflow-y:auto — a vertical translateY would
   push content past the track and trigger an internal scrollbar. So these
   reveal with a FADE ONLY (no vertical lift). */
.block-product-list > li.qc-reveal {
  transform: none;
}

/* ============================================================
   Queen Cosmetics — product detail (PDP) buy area
   ============================================================ */

/* Quantity stepper — taller, cleaner (same treatment as the cart drawer). */
.product-detail__quantity-selector theme-input-number {
  /* size to the buttons + input so the +/- stay INSIDE the border
     (the base rule pins a calc() width that's too narrow for 40px buttons). */
  width: fit-content;
  height: 44px;
  border: 1px solid rgba(var(--color-text), 0.25);
  border-radius: 0;
  background: transparent;
  overflow: hidden;
}
.product-detail__quantity-selector theme-input-number::before,
.product-detail__quantity-selector theme-input-number::after {
  display: none;
}
.product-detail__quantity-selector theme-input-number button[name="minus"],
.product-detail__quantity-selector theme-input-number button[name="plus"] {
  flex: 0 0 40px;
  width: 40px;
  height: 100%;
}
.product-detail__quantity-selector theme-input-number button[name="minus"] .icon,
.product-detail__quantity-selector theme-input-number button[name="plus"] .icon {
  width: 12px;
  height: 12px;
}
.product-detail__quantity-selector theme-input-number input[type="number"] {
  flex: 0 0 48px;
  width: 48px;
  height: 100%;
  padding: 0;
  font-size: 14px;
  text-align: center;
  border: 0;
  background: transparent;
}

/* Add-to-cart / sold-out button uses the primary qc-btn (black swipe). */
.product-detail__buy-buttons .qc-btn .qc-btn__label {
  text-transform: uppercase;
}
/* Loading state (AJAX add to cart) — hide the label, show a centered spinner
   above the swipe panel, in the button's light label colour. Mirrors the
   product-card add-to-cart loading behaviour. */
.product-detail__buy-buttons .qc-btn.loading .qc-btn__label {
  visibility: hidden;
}
.product-detail__buy-buttons .qc-btn .button__spinner {
  z-index: 3;
  /* difference blend keeps the spinner visible whether it sits over the dark
     button or the white swipe panel (white on dark, dark on white). */
  color: #ffffff;
  mix-blend-mode: difference;
}
.product-detail__buy-buttons .qc-btn.loading .button__spinner {
  display: flex;
}

/* ============================================================
   Queen Cosmetics — product description rich text (.rte)
   Respect paragraph spacing, lists, headings and overall HTML styling
   (a global reset zeroes default <p>/<h*> margins).
   ============================================================ */
.product-detail__description.rte,
.additional__content.rte {
  font-size: 15px;
  line-height: 1.7;
}
.product-detail__description.rte p,
.additional__content.rte p {
  margin-block: 0 1em;
}
.product-detail__description.rte p:last-child,
.additional__content.rte p:last-child {
  margin-block-end: 0;
}
.product-detail__description.rte ul,
.product-detail__description.rte ol,
.additional__content.rte ul,
.additional__content.rte ol {
  padding-inline-start: 1.4em;
  margin-block: 0 1em;
  list-style-position: outside;
}
.product-detail__description.rte ul,
.additional__content.rte ul { list-style-type: disc; }
.product-detail__description.rte ol,
.additional__content.rte ol { list-style-type: decimal; }
.product-detail__description.rte li,
.additional__content.rte li {
  margin-block-end: 0.35em;
}
.product-detail__description.rte :is(h1, h2, h3, h4, h5, h6),
.additional__content.rte :is(h1, h2, h3, h4, h5, h6) {
  margin-block: 1.2em 0.5em;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.3;
}
.product-detail__description.rte > :first-child,
.additional__content.rte > :first-child {
  margin-block-start: 0;
}
.product-detail__description.rte :is(strong, b),
.additional__content.rte :is(strong, b) {
  font-weight: 600;
}

/* Product detail — share text, quantity label, accordion title (uppercase,
   consistent with the theme's typography). */

/* Share button trigger text */
.product-detail__share .share-button__trigger {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* "Quantity" / "Amount" label above the stepper — small uppercase */
.product-detail__quantity-selector > .title-font-bold:first-child {
  font-size: 11px !important;
  font-weight: 500 !important;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* Accordion ("additional") header title — uppercase, letter-spaced */
.product-detail__additional .additional__title {
  font-size: 13px !important;
  font-weight: 500 !important;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* "You may also like" / recommended-product section title — match the
   homepage section titles (20px / 500 / 0.2em / uppercase). */
.section-recommended-product .block-heading,
.section-recently-viewed-products .block-heading {
  font-size: 16px !important;
  font-weight: 500 !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
}

/* ============================================================
   Queen Cosmetics — product detail typography (match live site)
   Title 18px / 500 / 0.2em / uppercase; price 11px / 500 / 0.2em /
   uppercase / grey. (Gallery + buttons stay as the theme has them.)
   ============================================================ */

/* Product title — smaller, lighter (live = 18px / 500 / 0.2em) */
.product-detail__title {
  font-size: 18px !important;
  font-weight: 500 !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  line-height: 1.4;
}

/* Price — grey, uppercase, letter-spaced (live PDP = 16px / 500 / 0.18em /
   #6a6a6a). */
.product-detail__price .product-price,
.product-detail__price .product-price.title-font-bold,
.product-detail__price .product-price__item {
  font-size: 16px !important;
  font-weight: 500 !important;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #6a6a6a !important;
}
/* compare-at (strikethrough) price — same scale, muted */
.product-detail__price .product-price__item--compare {
  font-size: 16px !important;
  font-weight: 400 !important;
  letter-spacing: 0.16em;
  text-decoration: line-through;
  opacity: 0.7;
}

/* Vendor label above the product title (live = 12px / 500 / 0.2em / upper) */
.product-detail__vendor {
  margin-block-end: 8px;
  font-family: var(--sort-title-font);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgb(var(--color-text));
}

/* Shipping-policy note under the price — small + muted (live PDP keeps the
   price area clean; we keep the info but make it unobtrusive). */
.product-detail__price > .rte {
  margin-block-start: 6px;
  font-size: 12px;
  color: rgb(var(--color-light-text));
}
.product-detail__price > .rte a {
  text-underline-offset: 3px;
}

/* Divider before the quantity selector (live PDP has a thin rule between the
   price/trust area and the quantity + buy buttons). */
.product-detail__quantity-selector {
  position: relative;
  margin-block-start: 24px;
  padding-block-start: 24px;
}
.product-detail__quantity-selector::before {
  content: "";
  position: absolute;
  inset-block-start: 0;
  inset-inline: 0;
  height: 1px;
  background-color: rgba(var(--color-text), 0.12);
}

/* ---- Sticky product info on desktop ----
   The info column sticks while the gallery/images scroll past. */
@media (min-width: 960px) {
  .product-detail__media-group.product-detail__col {
    position: static;
  }
  .product-detail__info.product-detail__col {
    position: sticky;
    inset-block-start: 20px;
    align-self: flex-start;
  }
  .section-recommended-product .block-heading,
  .section-recently-viewed-products .block-heading {
    font-size: 20px !important;
  }
}
