.skincare-product-template {
  padding: 34px 0 72px;
  color: #232722;
  font-family: inherit;
}

.skincare-product-template__inner {
  width: var(--container);
  margin: 0 auto;
}

.skincare-product-template__breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 26px;
  color: #6f726b;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.skincare-product-template__breadcrumb a:hover {
  color: var(--brand);
}

.skincare-product-template__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(340px, 0.95fr);
  gap: 48px;
  align-items: start;
}

.skincare-product-template__gallery-column,
.skincare-product-template__content-column {
  min-width: 0;
  align-self: start;
}

.skincare-product-template__content-column {
  position: sticky;
  top: calc(var(--header-height) + 28px);
}

.skincare-product-template--slider_bottom .skincare-product-template__content-column,
.skincare-product-template--slider_left .skincare-product-template__content-column {
  position: static;
  top: auto;
}

.skincare-product-template--slider_bottom .skincare-product-template__gallery-column,
.skincare-product-template--slider_left .skincare-product-template__gallery-column {
  position: sticky;
  top: calc(var(--header-height) + 28px);
}

.skincare-product-template__gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.skincare-product-template__gallery-mobile-slider {
  display: none;
}

.skincare-product-template__gallery--slider_bottom,
.skincare-product-template__gallery--slider_left {
  display: block;
}

.skincare-product-template__slider-shell {
  display: grid;
  gap: 12px;
}

.skincare-product-template__gallery--slider_left .skincare-product-template__slider-shell {
  grid-template-columns: 108px minmax(0, 1fr);
  align-items: start;
}

.skincare-product-template__gallery--slider_left .skincare-product-template__thumbs-shell {
  grid-column: 1;
  grid-row: 1;
  align-self: stretch;
}

.skincare-product-template__gallery--slider_left .skincare-product-template__slider-stage {
  grid-column: 2;
  grid-row: 1;
}

.skincare-product-template__slider-stage {
  position: relative;
  min-width: 0;
}

.skincare-product-template__slider-main {
  min-width: 0;
}

.skincare-product-template__slider-arrows {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
}

.skincare-product-template__gallery-arrow,
.skincare-product-template__thumb-arrow {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(31, 81, 71, 0.1);
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(246, 241, 233, 0.94) 100%);
  color: #1f5147;
  box-shadow:
    0 10px 24px rgba(31, 81, 71, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease, opacity 0.24s ease, border-color 0.24s ease;
}

.skincare-product-template__gallery-arrow span,
.skincare-product-template__thumb-arrow span {
  font-size: 0;
  line-height: 1;
}

.skincare-product-template__gallery-arrow::before,
.skincare-product-template__thumb-arrow::before {
  content: "";
  width: 10px;
  height: 10px;
  display: block;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: rotate(45deg);
}

.skincare-product-template__gallery-arrow--prev::before,
.skincare-product-template__thumb-arrow--prev::before {
  transform: rotate(-135deg);
  margin-left: 3px;
}

.skincare-product-template__gallery-arrow--next::before,
.skincare-product-template__thumb-arrow--next::before {
  transform: rotate(45deg);
  margin-right: 3px;
}

.skincare-product-template__gallery--slider_left .skincare-product-template__thumb-arrow--prev::before {
  transform: rotate(-45deg);
  margin-left: 0;
  margin-top: 3px;
}

.skincare-product-template__gallery--slider_left .skincare-product-template__thumb-arrow--next::before {
  transform: rotate(135deg);
  margin-right: 0;
  margin-bottom: 3px;
}

.skincare-product-template__gallery-arrow:hover,
.skincare-product-template__thumb-arrow:hover {
  transform: translateY(-1px);
  border-color: rgba(31, 81, 71, 0.2);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(248, 244, 236, 0.96) 100%);
  box-shadow:
    0 14px 28px rgba(31, 81, 71, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.skincare-product-template__gallery-arrow.slick-disabled,
.skincare-product-template__thumb-arrow.slick-disabled {
  opacity: 0.34;
  cursor: default;
  background: rgba(245, 241, 234, 0.9);
  border-color: rgba(31, 81, 71, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
  transform: none;
}

.skincare-product-template__thumbs-shell {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}

.skincare-product-template__gallery--slider_left .skincare-product-template__thumbs-shell {
  grid-template-columns: 1fr;
  grid-template-rows: auto minmax(0, 1fr) auto;
}

.skincare-product-template__slider-thumbs {
  min-width: 0;
}

.skincare-product-template__gallery--slider_left .skincare-product-template__slider-thumbs {
  height: 100%;
}

.skincare-product-template__thumb {
  padding: 0 5px;
}

.skincare-product-template__gallery--slider_left .skincare-product-template__thumb {
  padding: 5px 0;
}

.skincare-product-template__thumb-button {
  display: block;
  width: 100%;
  position: relative;
  padding: 0;
  border: 0;
  border-radius: 18px;
  overflow: hidden;
  background: #f4efe6;
  box-shadow: inset 0 0 0 1px rgba(233, 227, 216, 0.85);
  cursor: pointer;
  opacity: 0.58;
  transform: scale(0.96);
  transition: opacity 0.24s ease, transform 0.24s ease, box-shadow 0.24s ease;
}

.skincare-product-template__thumb-button img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.skincare-product-template__thumb-button:hover {
  opacity: 0.82;
  transform: scale(0.98);
}

.skincare-product-template__thumb-button.is-active,
.skincare-product-template__slider-thumbs .slick-current .skincare-product-template__thumb-button {
  opacity: 1;
  transform: scale(1);
  box-shadow:
    inset 0 0 0 2px var(--brand),
    0 14px 28px rgba(31, 81, 71, 0.14);
}

.skincare-product-template__thumb-button.is-active::after,
.skincare-product-template__slider-thumbs .slick-current .skincare-product-template__thumb-button::after {
  content: "";
  position: absolute;
  inset: auto 14px 10px;
  height: 3px;
  border-radius: 999px;
  background: var(--brand);
}

.skincare-product-template__gallery--slider_left .skincare-product-template__thumb-arrow {
  width: 100%;
  height: 36px;
  border-radius: 999px;
}

.skincare-product-template__gallery-card {
  appearance: none;
  border: 0;
  padding: 0;
  margin: 0;
  background: #f4efe6;
  border-radius: 28px;
  overflow: hidden;
  min-height: 280px;
  cursor: pointer;
  position: relative;
  box-shadow: inset 0 0 0 1px rgba(233, 227, 216, 0.85);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.skincare-product-template__gallery-card::after {
  content: "";
  position: absolute;
  inset: auto 18px 18px;
  height: 3px;
  border-radius: 999px;
  background: rgba(31, 81, 71, 0.14);
  opacity: 0;
  transition: opacity 0.24s ease;
}

.skincare-product-template__gallery-card.is-active {
  transform: translateY(-2px);
  box-shadow:
    inset 0 0 0 1px rgba(31, 81, 71, 0.18),
    0 16px 32px rgba(31, 81, 71, 0.09);
}

.skincare-product-template__gallery-card.is-active::after {
  opacity: 1;
}

.skincare-product-template__gallery-card img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.skincare-product-template__gallery-hidden {
  display: none;
}

.skincare-product-template__content {
  display: grid;
  gap: 16px;
}

.skincare-product-template__badge {
  width: max-content;
  padding: 8px 13px;
  border-radius: 999px;
  background: #cf5941;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
}

.skincare-product-template__title {
  margin: 0;
  font-size: clamp(30px, 3.1vw, 42px);
  line-height: 1.06;
  letter-spacing: -0.038em;
  font-weight: 800;
  text-wrap: balance;
  max-width: 520px;
}

.skincare-product-template__rating {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-wrap: wrap;
  font-size: 13px;
  font-weight: 600;
  color: #50554f;
}

.skincare-product-template__stars {
  color: #ff9f0a;
  letter-spacing: 0.1em;
  font-size: 11px;
}

.skincare-product-template__rating-note {
  color: #7b8078;
  font-weight: 500;
}

.skincare-product-template__price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}

.skincare-product-template__price {
  font-size: clamp(24px, 1.9vw, 32px);
  color: #d54d33;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.skincare-product-template__compare {
  color: #8a8b89;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
}

.skincare-product-template__save {
  color: #d54d33;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
}

.is-hidden {
  display: none !important;
}

.skincare-product-template__tax-note {
  margin: 0;
  color: #5f635d;
  font-size: 15px;
  line-height: 1.6;
}

.skincare-product-template__availability {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #0f8e56;
  font-size: 13px;
  font-weight: 700;
}

.skincare-product-template__availability.is-unavailable {
  color: #b24d32;
}

.skincare-product-template__availability-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 4px rgba(15, 142, 86, 0.12);
}

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

.skincare-product-template__variant-select {
  display: none;
}

.skincare-product-template__options {
  display: grid;
  gap: 16px;
}

.product-variant-picker__native {
  display: none;
}

.product-variant-picker__swatch {
  display: grid;
  gap: 16px;
}

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

.product-sw-select {
  display: flex;
  align-items: center;
  gap: 10px 12px;
  flex-wrap: wrap;
}

.product-sw-title {
  width: 100%;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #6a7269;
}

.product-sw-select-item {
  position: relative;
}

.product-sw-select-item input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.product-sw-select-item-span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  min-height: 46px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(31, 81, 71, 0.16);
  background: rgba(255, 255, 255, 0.92);
  color: #263028;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
  transition: border-color 0.24s ease, background 0.24s ease, color 0.24s ease, transform 0.24s ease;
}

.product-sw-select-item input:checked + .product-sw-select-item-span {
  border-color: var(--brand);
  background: var(--brand);
  color: #fff;
  transform: translateY(-1px);
}

.product-sw-select-item input.soldOut + .product-sw-select-item-span {
  opacity: 0.35;
  cursor: not-allowed;
}

.product-sw-select-item.sw-color .product-sw-select-item-span {
  width: 52px;
  min-width: 52px;
  height: 52px;
  min-height: 52px;
  padding: 5px;
  border-radius: 50%;
}

.product-sw-select-item.sw-color .product-sw-select-item-span > span {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: inset 0 0 0 1px rgba(31, 81, 71, 0.08);
}

.product-sw-select-item.sw-color input:checked + .product-sw-select-item-span {
  background: #fff;
  box-shadow: inset 0 0 0 2px var(--brand);
}

.skincare-product-template__actions {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 12px;
  align-items: stretch;
  min-width: 0;
}

.skincare-product-template__qty {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 42px;
  align-items: center;
  min-height: 54px;
  border: 1px solid rgba(31, 81, 71, 0.15);
  border-radius: 999px;
  overflow: hidden;
  background: #fff;
  min-width: 0;
}

.skincare-product-template__qty button,
.skincare-product-template__qty input {
  border: 0;
  background: transparent;
  text-align: center;
  font-size: 24px;
}

.skincare-product-template__qty button {
  width: 42px;
  min-width: 42px;
  padding: 0;
  line-height: 1;
  font-weight: 500;
  -webkit-appearance: none;
  appearance: none;
}

.skincare-product-template__qty input {
  width: 100%;
  min-width: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  color: #131722;
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
  box-shadow: none;
}

.skincare-product-template__qty input::-webkit-outer-spin-button,
.skincare-product-template__qty input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.skincare-product-template__cart,
.skincare-product-template__buy {
  width: 100%;
  min-width: 0;
  min-height: 54px;
  padding: 12px 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  white-space: normal;
  overflow-wrap: anywhere;
  letter-spacing: -0.015em;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

.skincare-product-template__cart span,
.skincare-product-template__buy span {
  min-width: 0;
}

.skincare-product-template__cart {
  border: 1px solid var(--brand);
  background: var(--brand);
  color: #fff;
}

.skincare-product-template__buy {
  border: 1px solid rgba(31, 81, 71, 0.8);
  background: rgba(255, 255, 255, 0.56);
  color: var(--brand);
}

.skincare-product-template__cart:hover,
.skincare-product-template__buy:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(31, 81, 71, 0.12);
}

.skincare-product-template__cart[disabled],
.skincare-product-template__buy[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

.skincare-product-template__policies {
  display: grid;
  gap: 10px;
  color: #3c403b;
}

.skincare-product-template__policies p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 500;
}

.skincare-product-template__excerpt {
  font-size: 15px;
  line-height: 1.8;
  color: #555951;
  font-weight: 500;
}

.skincare-product-template__meta-icons {
  display: flex;
  gap: 18px 22px;
  flex-wrap: wrap;
}

.skincare-product-template__meta-item {
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
  color: #282b2b;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  min-width: 88px;
}

.skincare-product-template__meta-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(31, 81, 71, 0.14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 241, 233, 0.92) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 10px 20px rgba(31, 81, 71, 0.06);
  overflow: hidden;
  padding: 10px;
  font-size: 20px;
  color: #1f5147;
}

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

.skincare-product-template__accordion-group {
  display: grid;
  gap: 12px;
}

.skincare-product-template__accordion {
  border: 1px solid rgba(31, 81, 71, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.84);
  overflow: hidden;
}

.skincare-product-template__accordion-trigger {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 22px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-align: left;
  color: inherit;
}

.skincare-product-template__accordion-trigger::after {
  content: "+";
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(31, 81, 71, 0.12);
  background: rgba(255, 255, 255, 0.78);
  color: #1f5147;
  font-size: 18px;
  line-height: 1;
  font-weight: 500;
  transition: transform 0.24s ease, background 0.24s ease, border-color 0.24s ease;
}

.skincare-product-template__accordion.is-open .skincare-product-template__accordion-trigger::after {
  content: "-";
  background: rgba(31, 81, 71, 0.08);
  border-color: rgba(31, 81, 71, 0.18);
}

.skincare-product-template__accordion-body {
  padding: 0 24px 22px;
  color: #545754;
  font-size: 13px;
  line-height: 1.78;
}

.skincare-product-template__accordion-body ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
}

.skincare-product-template__bottom {
  display: grid;
  gap: 32px;
  margin-top: 42px;
}

.skincare-product-template__description-card,
.skincare-product-template__related,
.skincare-product-template__recently-viewed {
  padding: 30px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(233, 227, 216, 0.95);
  box-shadow: 0 18px 48px rgba(31, 81, 71, 0.06);
}

.skincare-product-template__description-card h2,
.skincare-product-template__section-head h2 {
  margin: 0;
  font-size: clamp(26px, 2vw, 32px);
  letter-spacing: -0.04em;
  line-height: 1;
  font-weight: 800;
}

.skincare-product-template__description-content {
  margin-top: 18px;
  color: #494d48;
  line-height: 1.82;
  font-size: 13px;
  font-weight: 500;
}

.skincare-product-template__section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.skincare-product-template__related-grid {
  position: relative;
}

.skincare-product-template__related-track,
.skincare-product-template__recently-viewed-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.skincare-product-template__related-status,
.skincare-product-template__recently-viewed-status {
  margin: 0;
  padding: 22px 24px;
  border-radius: 22px;
  background: rgba(252, 248, 241, 0.9);
  color: #5c615b;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.6;
}

@media (max-width: 1180px) {
  .skincare-product-template__grid {
    grid-template-columns: 1fr;
  }

  .skincare-product-template__content-column {
    position: static;
    top: auto;
  }

  .skincare-product-template__gallery-column {
    position: static;
    top: auto;
  }

  .skincare-product-template__related-track,
  .skincare-product-template__recently-viewed-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .skincare-product-template {
    padding: 20px 0 48px;
  }

  .skincare-product-template__breadcrumb {
    margin-bottom: 18px;
  }

  .skincare-product-template__grid {
    gap: 28px;
  }

  .skincare-product-template__gallery {
    grid-template-columns: 1fr;
  }

  .skincare-product-template__gallery--grid {
    display: block;
  }

  .skincare-product-template__gallery--grid > .skincare-product-template__gallery-card,
  .skincare-product-template__gallery--grid > .skincare-product-template__gallery-hidden {
    display: none;
  }

  .skincare-product-template__gallery-mobile-slider {
    display: block;
  }

  .skincare-product-template__gallery--slider_left .skincare-product-template__slider-shell {
    grid-template-columns: 1fr;
  }

  .skincare-product-template__gallery--slider_left .skincare-product-template__thumbs-shell {
    grid-template-columns: auto minmax(0, 1fr) auto;
    grid-template-rows: none;
  }

  .skincare-product-template__gallery--slider_left .skincare-product-template__slider-thumbs {
    height: auto;
  }

  .skincare-product-template__gallery--slider_left .skincare-product-template__thumb-arrow--prev::before {
    transform: rotate(-135deg);
    margin-left: 3px;
    margin-top: 0;
  }

  .skincare-product-template__gallery--slider_left .skincare-product-template__thumb-arrow--next::before {
    transform: rotate(45deg);
    margin-right: 3px;
    margin-bottom: 0;
  }

  .skincare-product-template__gallery--slider_left .skincare-product-template__thumbs-shell,
  .skincare-product-template__gallery--slider_left .skincare-product-template__slider-stage {
    grid-column: auto;
    grid-row: auto;
  }

  .skincare-product-template__slider-arrows {
    right: 14px;
    bottom: 14px;
  }

  .skincare-product-template__thumbs-shell {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .skincare-product-template__gallery--slider_bottom .skincare-product-template__thumbs-shell {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .skincare-product-template__gallery-mobile-slider .skincare-product-template__thumbs-shell,
  .skincare-product-template__gallery--slider_left .skincare-product-template__thumbs-shell,
  .skincare-product-template__gallery--slider_bottom .skincare-product-template__thumbs-shell {
    grid-template-columns: 1fr;
  }

  .skincare-product-template__gallery-mobile-slider .skincare-product-template__thumb-arrow,
  .skincare-product-template__gallery--slider_left .skincare-product-template__thumb-arrow,
  .skincare-product-template__gallery--slider_bottom .skincare-product-template__thumb-arrow {
    display: none;
  }

  .skincare-product-template__gallery-mobile-slider .skincare-product-template__thumb,
  .skincare-product-template__gallery--slider_left .skincare-product-template__thumb,
  .skincare-product-template__gallery--slider_bottom .skincare-product-template__thumb {
    padding: 0 4px;
  }

  .skincare-product-template__gallery-mobile-slider .skincare-product-template__slider-thumbs,
  .skincare-product-template__gallery--slider_left .skincare-product-template__slider-thumbs,
  .skincare-product-template__gallery--slider_bottom .skincare-product-template__slider-thumbs {
    display: flex;
    gap: 8px;
    margin: 0 -4px;
    padding: 0 4px 2px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }

  .skincare-product-template__gallery-mobile-slider .skincare-product-template__slider-thumbs::-webkit-scrollbar,
  .skincare-product-template__gallery--slider_left .skincare-product-template__slider-thumbs::-webkit-scrollbar,
  .skincare-product-template__gallery--slider_bottom .skincare-product-template__slider-thumbs::-webkit-scrollbar {
    display: none;
  }

  .skincare-product-template__gallery-mobile-slider .skincare-product-template__thumb,
  .skincare-product-template__gallery--slider_left .skincare-product-template__thumb,
  .skincare-product-template__gallery--slider_bottom .skincare-product-template__thumb {
    flex: 0 0 104px;
    scroll-snap-align: start;
  }

  .skincare-product-template__gallery-card,
  .skincare-product-template__gallery-card img {
    min-height: 220px;
  }

  .skincare-product-template__content {
    gap: 12px;
  }

  .skincare-product-template__badge {
    padding: 7px 11px;
    font-size: 12px;
  }

  .skincare-product-template__title {
    font-size: 28px;
    line-height: 1.08;
    max-width: none;
  }

  .skincare-product-template__rating {
    gap: 7px;
    font-size: 12px;
  }

  .skincare-product-template__price-row {
    gap: 8px 10px;
  }

  .skincare-product-template__price {
    font-size: 26px;
  }

  .skincare-product-template__compare,
  .skincare-product-template__save,
  .skincare-product-template__availability {
    font-size: 12px;
  }

  .skincare-product-template__form {
    gap: 14px;
  }

  .product-variant-picker__swatch {
    gap: 12px;
  }

  .product-sw-line {
    gap: 8px;
  }

  .product-sw-select {
    gap: 8px 10px;
  }

  .product-sw-title {
    font-size: 10px;
    letter-spacing: 0.14em;
  }

  .product-sw-select-item-span {
    min-width: 48px;
    min-height: 40px;
    padding: 8px 13px;
    font-size: 12px;
  }

  .product-sw-select-item.sw-color .product-sw-select-item-span {
    width: 44px;
    min-width: 44px;
    height: 44px;
    min-height: 44px;
    padding: 4px;
  }

  .skincare-product-template__actions {
    grid-template-columns: 1fr;
  }

  .skincare-product-template__qty {
    min-height: 50px;
    max-width: 140px;
  }

  .skincare-product-template__cart,
  .skincare-product-template__buy {
    min-height: 50px;
    font-size: 13px;
  }

  .skincare-product-template__meta-icons {
    gap: 14px 16px;
  }

  .skincare-product-template__meta-item {
    min-width: 72px;
    font-size: 11px;
  }

  .skincare-product-template__meta-icon {
    width: 44px;
    height: 44px;
    padding: 8px;
  }

  .skincare-product-template__accordion-group {
    gap: 10px;
  }

  .skincare-product-template__accordion {
    border-radius: 18px;
  }

  .skincare-product-template__accordion-trigger {
    padding: 16px 18px;
    font-size: 14px;
  }

  .skincare-product-template__accordion-body {
    padding: 0 18px 18px;
    font-size: 12px;
  }

  .skincare-product-template__related-track,
  .skincare-product-template__recently-viewed-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .skincare-product-template__description-card,
  .skincare-product-template__related,
  .skincare-product-template__recently-viewed {
    padding: 22px;
    border-radius: 24px;
  }
}

@supports (-webkit-touch-callout: none) {
  @media (min-width: 768px) {
    .skincare-product-template__actions {
      grid-template-columns: 100px minmax(0, 1fr);
    }
  }

  .skincare-product-template__qty input {
    transform: translateZ(0);
  }
}

@media (max-width: 520px) {
  .skincare-product-template__actions {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .skincare-product-template__qty {
    grid-template-columns: 36px minmax(0, 1fr) 36px;
    max-width: 132px;
  }

  .skincare-product-template__qty button {
    width: 36px;
    min-width: 36px;
    font-size: 22px;
  }

  .skincare-product-template__qty input {
    font-size: 15px;
  }

  .skincare-product-template__cart,
  .skincare-product-template__buy {
    padding: 11px 14px;
    font-size: 12px;
  }
}

@media (max-width: 374px) {
  .skincare-product-template__gallery-card,
  .skincare-product-template__gallery-card img {
    min-height: 180px;
  }

  .skincare-product-template__title {
    font-size: 24px;
  }

  .skincare-product-template__price {
    font-size: 22px;
  }

  .skincare-product-template__description-card,
  .skincare-product-template__related,
  .skincare-product-template__recently-viewed {
    padding: 18px;
    border-radius: 20px;
  }

  .skincare-product-template__related-track,
  .skincare-product-template__recently-viewed-track {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
