/** Shopify CDN: Minification failed

Line 2478:10 Expected identifier but found whitespace
Line 2478:15 Unexpected ";"

**/
/* Nuvelle Beauty — WowAngel-style landing */

:root {
  --wa-pink: #EF4B81;
  --wa-pink-dark: #e03d74;
  --wa-black: #111111;
  --wa-gray: #f5f5f5;
  --wa-border: #ececec;
}

/* Top bar */
.top-bar {
  background: var(--wa-black);
  color: #fff;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
}

.top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.45rem 0;
}

.top-bar__social {
  display: flex;
  gap: 0.65rem;
  align-items: center;
}

.top-bar__social a {
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.social-icon {
  width: 18px;
  height: 18px;
  display: block;
}

.social-strip__icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.social-strip__icons a {
  color: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.footer-wa .social-strip__icons a {
  color: #111;
}

.footer-wa .social-icon {
  width: 20px;
  height: 20px;
}

.top-bar__locale {
  font-size: 0.68rem;
  white-space: nowrap;
}

/* Header WowAngel style */
.header--wa {
  background: #fff;
  border-bottom: 1px solid var(--wa-border);
}

.header--wa .header__brand img {
  width: 110px;
}

.header--wa .header__link {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
}

.header--wa .cart-count {
  background: #22c55e;
}

/* Hero slider */
#pairs,
#range,
#editors {
  scroll-margin-top: calc(var(--header-height) + 1rem);
}

.hero-slider {
  position: relative;
  overflow: hidden;
  background: #1a1210;
}

.hero-slider__track {
  display: flex;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slider__slide {
  flex: 0 0 100%;
  min-height: min(78vh, 720px);
  position: relative;
  isolation: isolate;
}

.hero-slider__slide img,
.hero-slider__slide video {
  width: 100%;
  height: 100%;
  min-height: min(78vh, 720px);
  object-fit: cover;
  object-position: center 20%;
  display: block;
  transform: scale(1.04);
  transition: transform 6.5s ease-out;
}

.hero-slider__slide.is-active img {
  transform: scale(1.12);
}

.hero-slider__slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(20, 12, 10, 0.72) 0%, rgba(20, 12, 10, 0.42) 38%, rgba(20, 12, 10, 0.08) 62%, transparent 78%),
    linear-gradient(180deg, rgba(20, 12, 10, 0.18) 0%, transparent 28%, rgba(20, 12, 10, 0.35) 100%);
  pointer-events: none;
}

.hero-slider__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: min(48rem, 92vw);
  padding: clamp(1.5rem, 5vw, 4.5rem);
  color: #fff;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease 0.15s, transform 0.55s ease 0.15s;
  pointer-events: none;
}

.hero-slider__slide.is-active .hero-slider__content {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.hero-slider__eyebrow {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: #F4D3D1;
}

.hero-slider__script {
  margin: 0;
  font-family: var(--font-script);
  font-size: clamp(2.4rem, 5vw, 4.1rem);
  line-height: 1;
  color: #fff;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.28);
}

.hero-slider__title {
  margin: 0.15rem 0 0.9rem;
  font-family: var(--font-ui);
  font-size: clamp(1.85rem, 4.2vw, 3.35rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.05;
}

.hero-slider__offer {
  margin: 0 0 1.4rem;
  max-width: 26rem;
  font-size: 0.98rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
}

.hero-slider__offer em {
  font-style: normal;
  color: #F4D3D1;
  font-weight: 700;
}

.hero-slider__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.hero-slider__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 0.9rem 1.7rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--wa-pink);
  color: #fff;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(239, 75, 129, 0.38);
}

.hero-slider__cta:hover {
  background: var(--wa-pink-dark);
}

.hero-slider__cta--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.85);
  box-shadow: none;
}

.hero-slider__cta--ghost:hover {
  background: #fff;
  color: #1a1210;
  border-color: #fff;
}

.hero-slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.92);
  color: var(--wa-black);
  cursor: pointer;
  font-size: 1.35rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.16);
}

.hero-slider__arrow:hover {
  background: #fff;
}

.hero-slider__arrow--prev { left: 1.1rem; }
.hero-slider__arrow--next { right: 1.1rem; }

.hero-slider__dots {
  position: absolute;
  bottom: 1.35rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.45rem;
  z-index: 3;
}

.hero-slider__dot {
  width: 28px;
  height: 4px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  padding: 0;
}

.hero-slider__dot.is-active {
  background: var(--wa-pink);
  width: 42px;
}

@media (max-width: 700px) {
  .hero-slider__slide,
  .hero-slider__slide img {
    min-height: min(86vh, 640px);
  }

  .hero-slider__content {
    justify-content: flex-end;
    padding-bottom: 4.25rem;
    max-width: 100%;
  }

  .hero-slider__arrow {
    width: 38px;
    height: 38px;
    top: auto;
    bottom: 1.15rem;
  }

  .hero-slider__arrow--prev { left: 0.85rem; }
  .hero-slider__arrow--next { right: 0.85rem; }

  .hero-slider__dots { bottom: 1.35rem; }
}

/* Shop range carousel */
.range-section {
  padding: 3.5rem 0;
  background: #fff;
  overflow-x: clip;
}

.range-section__head {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 900px) {
  .range-section__head {
    grid-template-columns: 220px minmax(0, 1fr);
  }
}

.range-section__intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

.range-section__title {
  font-family: var(--font-ui);
  font-size: clamp(1.45rem, 2.4vw, 1.85rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.2;
  margin: 0;
}

.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  background: var(--wa-pink);
  color: #fff;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  border: 0;
  cursor: pointer;
}

.btn-pill:hover {
  background: var(--wa-pink-dark);
}

.range-carousel {
  --range-btn-size: 44px;
  --range-gap: 16px;
  position: relative;
  min-width: 0;
  overflow: visible;
  padding: 0 0 0.5rem;
}

.range-carousel__viewport {
  overflow-x: auto;
  overflow-y: hidden;
  width: auto;
  margin-right: calc((100vw - 100%) / -2);
  padding-right: calc((100vw - 100%) / 2);
  container-type: inline-size;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.range-carousel__viewport::-webkit-scrollbar {
  display: none;
}

.range-carousel__track {
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
  gap: var(--range-gap);
  padding-right: 0.5rem;
  box-sizing: content-box;
}

.range-card-wa {
  flex: 0 0 calc((100cqi - 48px) / 4);
  width: calc((100cqi - 48px) / 4);
  scroll-snap-align: start;
  position: relative;
  text-align: center;
}

.range-card-wa:last-child {
  scroll-snap-align: end;
}

@media (max-width: 899px) {
  .range-card-wa {
    flex-basis: calc((100cqi - 16px) / 2);
    width: calc((100cqi - 16px) / 2);
  }
}

.range-carousel__btn {
  position: absolute;
  top: 42%;
  width: var(--range-btn-size);
  height: var(--range-btn-size);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 0;
  background: var(--wa-pink);
  color: #fff;
  cursor: pointer;
  z-index: 30;
  font-size: 1.4rem;
  line-height: 1;
  box-shadow: 0 4px 14px rgba(239, 75, 129, 0.35);
  pointer-events: auto;
}

.range-carousel__btn--prev {
  left: 0;
  transform: translate(-50%, -50%);
}

.range-carousel__btn--next {
  right: 0;
  transform: translate(50%, -50%);
}

.range-card-wa__arch {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 999px 999px 12px 12px;
  overflow: hidden;
  background: #eee;
}

.range-card-wa__arch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.range-card-wa__label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: -1.25rem;
  position: relative;
  z-index: 1;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: var(--wa-pink);
  color: #fff;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.range-card-wa__label--muted {
  background: rgba(0,0,0,0.55);
}

/* Editor's choice */
.editors-wa {
  padding: 3rem 0 4rem;
  background: #fff;
}

.editors-wa__title {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 2.25rem;
  text-align: left;
  font-family: var(--font-ui);
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 0.85rem;
}

.editors-wa__title::after {
  content: "";
  display: block;
  width: 2.75rem;
  height: 2px;
  margin: 0.7rem 0 0;
  background: var(--wa-pink, var(--color-accent, #EF4B81));
  border-radius: 999px;
}

.editors-wa__category {
  padding-bottom: 2.75rem;
}

.editors-wa__category + .editors-wa__category {
  border-top: 1px solid #f0dbe4;
  padding-top: 2.5rem;
}

.editors-wa__category-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.editors-wa__category-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.15rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  margin: 0;
}

@media (max-width: 749px) {
  .editors-wa__category-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.45rem;
  }
}

.editors-wa__tabs {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.editor-tab {
  display: grid;
  gap: 0.65rem;
  place-items: center;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0;
}

.editor-tab__avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid transparent;
  transition: border-color 0.2s;
}

.editor-tab.is-active .editor-tab__avatar {
  border-color: var(--wa-pink);
}

.editor-tab__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.editor-tab__pill {
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: #e8e8e8;
  color: var(--wa-black);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.editor-tab.is-active .editor-tab__pill {
  background: var(--wa-pink);
  color: #fff;
}

/* Product grid WowAngel */
.product-grid-wa {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 0.75rem;
}

@media (min-width: 750px) {
  .product-grid-wa {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.75rem 1rem;
  }
}

.product-card-wa {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.product-card-wa__img {
  aspect-ratio: 4 / 4;
  border-radius: 10px;
  overflow: hidden;
  background: #f5f5f5;
  position: relative;
}

.product-card-wa__img img,
.product-card-wa__img svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}

.product-card-wa__img:hover img {
  transform: scale(1.04);
}

.sale-badge {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  background: var(--wa-pink, #EF4B81);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1;
}

.product-card-wa__title {
  font-size: 0.78rem;
  line-height: 1.3;
  font-weight: 500;
  color: var(--wa-black);
  margin-top: 0.25rem;
}

.product-card-wa__title a {
  color: inherit;
}

.product-card-wa__title a:hover {
  color: var(--wa-pink);
}

.product-card-wa__stars {
  color: var(--wa-pink);
  font-size: 0.68rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.product-card-wa__stars .review-count {
  color: #666;
  font-size: 0.7rem;
}

.product-card-wa__stars--empty {
  color: #ccc;
}

.product-card-wa__stars--empty .review-count {
  color: #bbb;
}

.product-card-wa__price {
  font-weight: 700;
  color: var(--wa-pink);
  font-size: 0.88rem;
}

.product-card-wa__compare {
  color: #999;
  text-decoration: line-through;
  font-size: 0.76rem;
  margin-left: 0.35rem;
}

.category-card-wa {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 1;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  color: #fff;
  background: #333;
}

.category-card-wa img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-card-wa__overlay {
  position: relative;
  z-index: 1;
  background: linear-gradient(transparent, rgba(0,0,0,0.65));
  width: 100%;
  padding-top: 2rem;
}

/* Promo banners */
.promo-banners {
  padding: 2rem 0;
  background: #fff;
}

.promo-banners__row {
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 900px) {
  .promo-banners__row--2 { grid-template-columns: 1fr 1fr; }
}

.promo-banner {
  border-radius: 12px;
  overflow: hidden;
  min-height: 240px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  padding: 1.75rem 1.5rem;
  background: #f3ebe3;
}

.promo-banner img {
  position: absolute;
  top: 0;
  right: 0;
  width: 58%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.promo-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #f6efe8 0%, #f6efe8 38%, rgba(246,239,232,0.72) 58%, rgba(246,239,232,0.12) 78%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

.promo-banner__content {
  position: relative;
  z-index: 2;
  color: #111;
  max-width: 58%;
}

.promo-banner--cream .promo-banner__content h3 {
  font-size: clamp(1.15rem, 2.2vw, 1.7rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 800;
  color: #111;
  line-height: 1.2;
  margin: 0;
}

.promo-banner--cream .promo-banner__content p {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  margin: 0.55rem 0 0;
  color: #333;
  font-weight: 600;
}

.promo-banner__gold {
  color: #c4a35a;
  font-weight: 800;
}

.promo-banner .btn-black {
  margin-top: 1rem;
  background: var(--wa-black);
  color: #fff;
  padding: 0.7rem 1.5rem;
  border-radius: 4px;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  border: 0;
  cursor: pointer;
  display: inline-block;
}

.promo-banner--link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.promo-banner--link:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.promo-banner--link:focus-visible {
  outline: 2px solid var(--wa-pink);
  outline-offset: 3px;
}

.section-title-wa {
  text-align: center;
  font-family: var(--font-ui);
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

/* Video look section */
.video-looks {
  padding: 3rem 0;
  background: #fff;
}

.video-looks__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

@media (min-width: 900px) {
  .video-looks__grid { grid-template-columns: repeat(4, 1fr); }
}

.video-card {
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.video-card__stage {
  position: relative;
  aspect-ratio: 9/14;
  background: #222;
  overflow: hidden;
}

.video-card__stage img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.video-card__stage img.is-active {
  opacity: 1;
}

.video-card__play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(0,0,0,0.18);
  cursor: pointer;
  z-index: 2;
  border: 0;
  color: inherit;
}

.video-card.is-playing .video-card__play {
  opacity: 0;
  pointer-events: none;
}

.video-card__play span {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
}

.video-card__angles {
  position: absolute;
  left: 0.55rem;
  right: 0.55rem;
  bottom: 0.55rem;
  z-index: 3;
  display: flex;
  gap: 0.35rem;
}

.video-card__angle {
  flex: 1;
  border: 0;
  border-radius: 999px;
  padding: 0.35rem 0.2rem;
  font-size: 0.58rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
  background: rgba(0,0,0,0.55);
  color: #fff;
  cursor: pointer;
}

.video-card__angle.is-active {
  background: var(--wa-pink);
}

.video-card__caption {
  padding: 0.75rem;
  background: #fff;
  font-size: 0.78rem;
  line-height: 1.4;
}

.video-card__caption strong {
  display: block;
  margin-bottom: 0.25rem;
}

.video-card__caption .btn-pill {
  margin-top: 0.5rem;
}

/* Social strip */
.social-strip {
  padding: 2rem 0;
  text-align: center;
  background: #fff;
}

.social-strip h3 {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

/* Promo cards grid */
.promo-grid {
  padding: 2rem 0 3rem;
  background: #fff;
}

.promo-grid__inner {
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 750px) {
  .promo-grid__inner { grid-template-columns: repeat(2, 1fr); }
}

.promo-card {
  border-radius: 12px;
  overflow: hidden;
  min-height: 180px;
  position: relative;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.promo-card__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.promo-card__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promo-card__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15), rgba(0,0,0,0.45));
}

.promo-card__bg + h3,
.promo-card__bg ~ .promo-card__sub {
  position: relative;
  z-index: 1;
}

.promo-card__sub {
  font-size: 0.8rem;
  margin-top: 0.5rem;
}

.promo-card--pink {
  background: linear-gradient(135deg, #fde8ef, #fff);
  text-align: center;
}

.promo-card--pink h3 {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(239,75,129,0.85);
  padding: 0.35rem 0.75rem;
  border-radius: 4px;
  align-self: center;
}

.promo-card--pink .promo-card__sub {
  color: var(--wa-pink);
  font-weight: 700;
  font-size: 0.75rem;
  margin-top: 1rem;
}

.promo-card--dark {
  background: #1a1a1a;
  color: #fff;
}

.promo-card--dark h3 {
  color: var(--wa-pink);
  font-size: 1.4rem;
  letter-spacing: 0.06em;
}

.promo-card--video {
  padding: 0;
  background: #111;
  color: #fff;
  min-height: 220px;
}

.promo-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  background: #1a1a1a;
  overflow: hidden;
}

.promo-card__player,
.promo-card__embed,
.promo-card__poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
}

.promo-card__poster--empty {
  background: linear-gradient(145deg, #2a1a2e, #111);
}

.promo-card__play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 56px;
  height: 56px;
  border: 0;
  border-radius: 50%;
  background: var(--wa-pink, #EF4B81);
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(239, 75, 129, 0.4);
  z-index: 2;
}

.promo-card__play span {
  font-size: 1.1rem;
  line-height: 1;
  margin-left: 2px;
}

.promo-card__play--static {
  pointer-events: none;
  opacity: 0.9;
}

.promo-card.is-playing .promo-card__play {
  opacity: 0;
  pointer-events: none;
}

.promo-card__video-title {
  position: absolute;
  left: 0.85rem;
  bottom: 0.85rem;
  z-index: 2;
  background: var(--wa-pink, #EF4B81);
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  display: inline-block;
  max-width: calc(100% - 1.7rem);
  margin: 0;
}

.promo-card.is-playing .promo-card__video-title {
  opacity: 0;
  pointer-events: none;
}

.promo-card--tutorial {
  background: #111;
  color: #fff;
  min-height: 140px;
}

.promo-card--tutorial h3 {
  background: var(--wa-pink);
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  display: inline-block;
}

/* Footer WowAngel pink */
.footer-wa {
  background: #fde8ef;
  color: var(--wa-black);
  padding: 3rem 0 1.5rem;
}

.footer-wa h3 {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 0.85rem;
}

.footer-wa a {
  display: block;
  font-size: 0.85rem;
  padding: 0.25rem 0;
  color: #333;
}

.footer-wa .social-strip__icons a {
  display: inline-flex;
  padding: 0;
  color: #111;
}

.footer-wa__newsletter {
  margin-bottom: 1rem;
}

.footer-wa__newsletter h4 {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.footer-wa__input {
  display: flex;
  gap: 0;
  max-width: 280px;
}

.footer-wa__input input {
  flex: 1;
  border: 1px solid #ddd;
  border-right: 0;
  padding: 0.65rem 0.85rem;
  border-radius: 999px 0 0 999px;
  background: #fff;
}

.footer-wa__input button {
  border: 0;
  background: var(--wa-black);
  color: #fff;
  padding: 0 1rem;
  border-radius: 0 999px 999px 0;
  cursor: pointer;
}

.footer-wa__newsletter-msg {
  margin: 0.5rem 0 0;
  font-size: 0.75rem;
  line-height: 1.4;
}

.footer-wa__newsletter-msg--success {
  color: #1a7a3a;
}

.footer-wa__newsletter-msg--error {
  color: #c0392b;
}

.footer-wa__bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0,0,0,0.08);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.75rem;
}

.footer-wa__about {
  margin: 0 0 0.85rem;
  font-size: 0.82rem;
  line-height: 1.55;
  color: #555;
}

.footer-wa__about p {
  margin: 0 0 0.5rem;
}

.footer-wa__about p:last-child {
  margin-bottom: 0;
}

/* Homepage SEO about block */
.seo-about {
  padding: 2.5rem 1rem 3rem;
  max-width: 820px;
}

.seo-about__heading {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 600;
  color: #111;
}

.seo-about__body {
  font-size: 0.92rem;
  line-height: 1.65;
  color: #555;
}

.seo-about__body p {
  margin: 0 0 0.85rem;
}

.seo-about__body p:last-child {
  margin-bottom: 0;
}

/* Sale spotlight — hero visuals + sale picks */
.pair-promo {
  background: linear-gradient(180deg, #fff8fb 0%, #ffe8f1 100%);
  padding: 1.25rem 1rem 2.5rem;
}

.pair-promo__stage {
  max-width: 1120px;
  margin: 0 auto;
  overflow: hidden;
  background: #fff;
  border-radius: 16px;
  border: 2px solid rgba(239, 75, 129, 0.35);
  box-shadow: 0 20px 48px rgba(239, 75, 129, 0.14);
}

.pair-promo__board {
  display: grid;
}

@media (min-width: 900px) {
  .pair-promo__board {
    grid-template-columns: 1fr 1fr;
    min-height: 560px;
  }
}

.pair-promo__visual {
  position: relative;
  min-height: 380px;
  background:
    radial-gradient(circle at 28% 15%, rgba(255, 255, 255, 0.85), transparent 48%),
    linear-gradient(155deg, #ffd6e5 0%, #ef4b81 52%, #d8326a 100%);
}

.pair-promo__shot {
  position: absolute;
  overflow: hidden;
  border-radius: 10px;
  background: #1a1a1a;
  text-decoration: none;
}

.pair-promo__shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.45s ease;
}

.pair-promo__shot:hover img { transform: scale(1.05); }

.pair-promo__shot--buy {
  top: 6%;
  left: 5%;
  width: 58%;
  height: 90%;
  z-index: 2;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.38);
}

.pair-promo__shot--free {
  top: 14%;
  right: 5%;
  width: 52%;
  height: 82%;
  z-index: 1;
  outline: 3px solid #fff;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
}

.pair-promo__plus {
  position: absolute;
  left: 50%;
  top: 48%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-left: -1.375rem;
  border-radius: 50%;
  background: #fff;
  color: var(--wa-pink);
  font-size: 1.5rem;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.pair-promo__upto {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  z-index: 4;
  margin: 0;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pair-promo__hook {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 4;
  max-width: 72%;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(17, 17, 17, 0.88), rgba(17, 17, 17, 0.72));
  color: #fff;
  pointer-events: none;
}

.pair-promo__hero-tag {
  margin: 0;
  color: var(--wa-pink);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.pair-promo__hero-line {
  margin: 0.35rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  font-weight: 600;
  line-height: 1.1;
  color: #fff;
}

.pair-promo__eyebrow {
  margin: 0;
  color: var(--wa-pink);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.pair-promo__heading {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 600;
  line-height: 1.1;
  color: #111;
}

.pair-promo__subtext {
  margin: 0;
  color: #666;
  font-size: 0.92rem;
  line-height: 1.45;
  max-width: 22rem;
}

.pair-promo__deals {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.15rem;
  padding: 1.5rem 1.25rem 1.75rem;
  background: #fff;
}

@media (min-width: 900px) {
  .pair-promo__deals {
    padding: 2rem 1.75rem 2rem 1.5rem;
  }
}

.pair-promo__sale-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
}

.pair-promo__empty {
  margin: 0;
  color: #888;
  font-size: 0.88rem;
  line-height: 1.45;
}

.pair-sale-card {
  display: block;
  color: inherit;
  text-decoration: none;
  border-radius: 12px;
  overflow: hidden;
  background: #fafafa;
  border: 1px solid #eee;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pair-sale-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(239, 75, 129, 0.12);
}

.pair-sale-card__img {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: #f0f0f0;
}

.pair-sale-card__img img,
.pair-sale-card__img svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.pair-sale-card__badge {
  position: absolute;
  top: 0.55rem;
  left: 0.55rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: var(--wa-pink);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1;
}

.pair-sale-card__meta {
  padding: 0.65rem 0.7rem 0.75rem;
}

.pair-sale-card__meta h3 {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pair-sale-card__price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.4rem;
  margin-top: 0.35rem;
}

.pair-sale-card__now {
  color: var(--wa-pink);
  font-weight: 800;
  font-size: 0.95rem;
}

.pair-sale-card__was {
  color: #999;
  text-decoration: line-through;
  font-size: 0.78rem;
}

.pair-promo__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  margin-top: 0.25rem;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  background: #111;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s ease;
}

.pair-promo__cta:hover {
  background: var(--wa-pink);
}

@media (max-width: 899px) {
  .pair-promo__visual { min-height: 340px; }
  .pair-promo__deals { text-align: center; }
  .pair-promo__cta { align-self: center; }
}

@media (prefers-reduced-motion: reduce) {
  .pair-promo__shot img,
  .pair-sale-card { transition: none; }
}

/* Product detail page — WowAngel-style */
.pdp-crumb {
  padding: 0.85rem 0 0.25rem;
  font-size: 0.78rem;
  color: #888;
}

.pdp-crumb a { color: #555; }
.pdp-crumb a:hover { color: var(--wa-pink); }

.product {
  display: grid;
  gap: 1.75rem;
  padding: 0.75rem 0 3.5rem;
}

@media (min-width: 900px) {
  .product {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2.5rem;
    align-items: start;
  }
}

.product__media-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product__info-col {
  display: flex;
  flex-direction: column;
}

.product__gallery {
  position: relative;
}

.product__gallery-main {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f4f4f4;
}

.product__gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product__gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  color: #111;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0,0,0,.12);
  z-index: 2;
}

.product__gallery-nav--prev { left: 12px; }
.product__gallery-nav--next { right: 12px; }

.product__thumbs {
  display: flex;
  gap: 0.45rem;
  margin-top: 0.65rem;
  overflow-x: auto;
}

.product__thumbs button {
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
  padding: 0;
  border: 2px solid transparent;
  background: #eee;
  cursor: pointer;
}

.product__thumbs button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product__thumbs button.is-active { border-color: var(--wa-pink); }

.product__gallery-reviews {
  margin-top: 1rem;
}

.product__gallery-reviews .product__reviews {
  margin-bottom: 0;
}

@media (min-width: 900px) {
  .product__gallery-reviews .product__reviews-mid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1200px) {
  .product__gallery-reviews .product__reviews-mid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  }
}

.product__rating-line {
  margin: 0 0 0.75rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  font-size: 0.82rem;
  color: #666;
}

.product__rating-line-stars {
  color: var(--wa-pink);
  letter-spacing: 0.06em;
}

.product__rating-line-score {
  font-weight: 800;
  color: #111;
}

.product__rating-line-count {
  color: #888;
}

.product__title {
  margin: 0 0 0.45rem;
  font-family: var(--font-ui);
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0;
  text-transform: none;
}

.product__stars {
  color: #111;
  font-size: 0.82rem;
  margin-bottom: 0.65rem;
}

.product__stars span { color: #999; }

.product__reviews {
  margin-bottom: 1rem;
  padding: 1rem 1.1rem;
  border: 1px solid #eee;
  border-radius: 12px;
  background: #fff;
}

.product__reviews-admin-notice {
  margin-bottom: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  background: #fff8e6;
  border: 1px solid #f0d78c;
  font-size: 0.78rem;
  line-height: 1.5;
  color: #5c4a1a;
}

.product__reviews-admin-notice p {
  margin: 0 0 0.5rem;
}

.product__reviews-admin-notice p:last-child,
.product__reviews-admin-notice ol {
  margin-bottom: 0;
}

.product__reviews-admin-notice ol {
  margin: 0.35rem 0 0;
  padding-left: 1.2rem;
}

.product__reviews-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.product__reviews-score-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.product__reviews-score {
  margin: 0;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  color: #111;
}

.product__reviews-stars {
  margin: 0;
  color: var(--wa-pink);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  line-height: 1;
}

.product__reviews-stars--empty {
  color: #ccc;
}

.product__reviews-count {
  margin: 0.35rem 0 0;
  font-size: 0.82rem;
  color: #666;
}

.product__reviews-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  background: var(--wa-pink);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  line-height: 1.2;
}

.product__reviews-cta:hover {
  background: #111;
}

.product__reviews-mid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 700px) {
  .product__reviews-mid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    align-items: start;
  }
}

.product__reviews-bars {
  display: grid;
  gap: 0.35rem;
}

.product__reviews-bar {
  display: grid;
  grid-template-columns: 1rem 1fr 2rem;
  align-items: center;
  gap: 0.45rem;
}

.product__reviews-bar-label {
  color: var(--wa-pink);
  font-size: 0.75rem;
  line-height: 1;
}

.product__reviews-bar-track {
  height: 8px;
  border-radius: 999px;
  background: #ececec;
  overflow: hidden;
}

.product__reviews-bar-fill {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--wa-pink);
}

.product__reviews-bar-num {
  font-size: 0.78rem;
  color: #666;
  text-align: right;
}

.product__reviews-photos-title {
  margin: 0 0 0.55rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #111;
}

.product__reviews-photo-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.4rem;
}

.product__reviews-photo {
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  background: #f3f3f3;
}

.product__reviews-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product__reviews-photo--more {
  position: relative;
}

.product__reviews-photo--more span {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
}

.product__reviews-think {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #eee;
}

.product__reviews-think-title {
  margin: 0 0 0.55rem;
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 800;
  color: #111;
}

.product__reviews-think-stars {
  color: var(--wa-pink);
  font-size: 0.85rem;
}

.product__reviews-think-text {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: #555;
}

.product__reviews-think-text p {
  margin: 0;
}

.product__reviews-feed {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #eee;
}

.product__reviews-actions {
  margin-top: 1rem;
}

.product__reviews-view-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 44px;
  padding: 0.7rem 1.1rem;
  border: 0;
  border-radius: 999px;
  background: var(--wa-pink, #EF4B81);
  color: #fff;
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, opacity 0.2s ease;
}

.product__reviews-view-btn:hover {
  background: var(--wa-pink-dark, #d63a6d);
  color: #fff;
}

.product__reviews-view-btn[aria-expanded="true"] {
  display: none;
}

.product__reviews-feed-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.product__reviews-feed-title {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #111;
}

.product__reviews-feed-close {
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  background: #f3f3f3;
  color: #444;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  font-family: inherit;
}

.product__reviews-feed-close:hover {
  background: #ececec;
}

.product__reviews-feed-list {
  display: grid;
  gap: 0.75rem;
}

.product__reviews-pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 0.9rem;
}

.product__reviews-pager-btn {
  width: 34px;
  height: 34px;
  border: 1px solid #ddd;
  border-radius: 50%;
  background: #fff;
  color: #111;
  font-size: 1.15rem;
  line-height: 1;
  cursor: pointer;
  font-family: inherit;
}

.product__reviews-pager-btn:hover:not(:disabled) {
  border-color: #111;
}

.product__reviews-pager-btn:disabled {
  opacity: 0.35;
  cursor: default;
}

.product__reviews-pager-status {
  margin: 0;
  min-width: 3.5rem;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: #555;
}

.product__review-card {
  padding: 0.85rem 1rem;
  border: 1px solid #eee;
  border-radius: 12px;
  background: #fff;
}

.product__review-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  margin-bottom: 0.55rem;
}

.product__review-card-identity {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-width: 0;
}

.product__review-card-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: #111;
  line-height: 1.2;
}

.product__review-card-stars {
  color: var(--wa-pink);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  flex-shrink: 0;
}

.product__review-card-title {
  margin: 0 0 0.25rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: #222;
}

.product__review-card-body {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.5;
  color: #555;
}

/* Review modal */
.review-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.review-modal[hidden] {
  display: none;
}

.review-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.review-modal__dialog {
  position: relative;
  width: min(100%, 420px);
  max-height: min(92vh, 720px);
  overflow-y: auto;
  background: #fff;
  border-radius: 14px;
  padding: 1.35rem 1.25rem 1.5rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.review-modal__close {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #888;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.review-modal__title {
  margin: 0 0 1rem;
  text-align: center;
  font-size: 1.15rem;
  font-weight: 800;
  color: #111;
}

.review-modal__product {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 0.75rem;
  margin-bottom: 1.1rem;
  border-radius: 10px;
  background: #f3f3f3;
}

.review-modal__product-img {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.review-modal__product-title {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.45;
  color: #333;
}

.review-modal__label {
  display: block;
  margin: 0 0 0.45rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: #111;
}

.review-modal__required {
  color: var(--wa-pink);
}

.review-modal__optional {
  font-weight: 500;
  color: #999;
  font-size: 0.82rem;
}

.review-modal__photo-field {
  margin-bottom: 1rem;
}

.review-modal__photo-input {
  display: none;
}

.review-modal__photo-add {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px dashed #ddd;
  border-radius: 10px;
  background: #fafafa;
  color: #555;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}

.review-modal__photo-add:hover {
  border-color: var(--wa-pink);
  background: #fff5f8;
  color: var(--wa-pink);
}

.review-modal__photo-add-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--wa-pink);
  color: #fff;
  font-size: 1rem;
  line-height: 1;
  font-weight: 700;
}

.review-modal__photo-field.has-photo .review-modal__photo-add {
  display: none;
}

.review-modal__photo-preview {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-modal__photo-preview img {
  width: 72px;
  height: 72px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid #eee;
}

.review-modal__photo-remove {
  border: 0;
  background: transparent;
  color: #666;
  font-size: 0.78rem;
  cursor: pointer;
  font-family: inherit;
  text-decoration: underline;
}

.product__review-card-photo {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  background: #f0f0f0;
  border: 1.5px solid #f3d0dc;
}

.product__review-card-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.review-modal__stars {
  display: flex;
  gap: 0.15rem;
  margin-bottom: 1rem;
}

.review-modal__star {
  border: 0;
  background: transparent;
  padding: 0;
  font-size: 1.75rem;
  line-height: 1;
  color: #ddd;
  cursor: pointer;
  transition: color 0.15s ease, transform 0.15s ease;
}

.review-modal__star.is-active,
.review-modal__star.is-hover {
  color: var(--wa-pink);
}

.review-modal__star:focus-visible {
  outline: 2px solid var(--wa-pink);
  outline-offset: 2px;
  border-radius: 4px;
}

.review-modal__input,
.review-modal__textarea {
  width: 100%;
  margin-bottom: 1rem;
  padding: 0.7rem 0.85rem;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  font: inherit;
  font-size: 0.9rem;
  color: #111;
  background: #fff;
  box-sizing: border-box;
}

.review-modal__input::placeholder,
.review-modal__textarea::placeholder {
  color: #bbb;
}

.review-modal__textarea {
  resize: vertical;
  min-height: 120px;
}

.review-modal__note {
  margin: -0.35rem 0 1rem;
  font-size: 0.78rem;
  line-height: 1.45;
  color: #888;
}

.review-modal__submit {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 0;
  border-radius: 10px;
  background: var(--wa-pink);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: inherit;
}

.review-modal__submit:hover {
  background: #111;
}

.review-modal__submit:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.review-modal__back {
  width: 100%;
  margin-top: 0.55rem;
  padding: 0.55rem;
  border: 0;
  background: transparent;
  color: #666;
  font-size: 0.82rem;
  cursor: pointer;
  font-family: inherit;
}

.review-modal__success-title {
  margin: 0 0 0.35rem;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 800;
  color: #111;
}

.review-modal__success-text {
  margin: 0 0 1.25rem;
  text-align: center;
  font-size: 0.9rem;
  color: #555;
}

  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 0.85rem;
}

.product__price {
  font-size: 1.55rem;
  font-weight: 800;
  color: #111;
}

.product__price--sale {
  color: var(--wa-pink);
}

.product__sale-badge {
  top: 0.85rem;
  left: 0.85rem;
  font-size: 0.75rem;
  padding: 0.35rem 0.65rem;
}

.product__compare {
  font-size: 1rem;
  color: #999;
  text-decoration: line-through;
}

.product__save {
  background: var(--wa-pink);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.2rem 0.45rem;
}

.product__deal {
  margin: 0 0 1rem;
  padding: 0.7rem 0.85rem;
  background: #fff3f7;
  border: 1px dashed var(--wa-pink);
  font-size: 0.82rem;
  line-height: 1.45;
}

.product__deal strong { color: var(--wa-pink); }

.product__form { display: grid; gap: 1rem; margin-top: 0.25rem; }

.option-row label.option-row__name {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
  letter-spacing: 0;
  text-transform: none;
}

.swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.swatches input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.swatches label {
  border: 1px solid #ddd;
  min-width: 0;
  padding: 0.45rem 0.7rem;
  text-align: center;
  cursor: pointer;
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 600;
  background: #fff;
}

.swatches input:checked + label {
  border-color: #111;
  background: #111;
  color: #fff;
}

.product__atc-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.65rem;
  align-items: stretch;
}

.qty {
  display: inline-flex;
  border: 1px solid #ddd;
  height: 48px;
}

.qty button,
.qty input {
  border: 0;
  background: transparent;
  width: 40px;
  height: 46px;
  text-align: center;
  font-size: 1rem;
}

.product__atc {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #111;
  color: #fff;
  border: 0;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}

.product__atc:hover { background: var(--wa-pink); }

.product__pay {
  margin-top: 0.35rem;
}

.payment-methods,
.product__pay {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.65rem;
  align-items: center;
  color: #888;
  font-size: 0;
}

.payment-methods svg,
.payment-methods .payment-icon,
.product__pay svg {
  height: 18px;
  width: auto;
  display: block;
}

.payment-methods--footer {
  justify-content: flex-end;
  gap: 0.45rem 0.6rem;
}

.payment-methods--footer svg,
.payment-methods--footer .payment-icon {
  height: 24px;
  width: auto;
  display: block;
}

.payment-methods--footer img.payment-icon {
  object-fit: contain;
}

.afterpay-message {
  margin: 0.35rem 0 0;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--color-muted);
}

.afterpay-message strong {
  color: var(--color-text);
  font-weight: 700;
}

.product__details {
  margin-top: 1.5rem;
}

.product__details details {
  border-bottom: 1px solid #eee;
  padding: 0.85rem 0;
}

.product__details summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.product__details-summary-text {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.product__details-icon {
  display: flex;
  align-items: center;
  color: #888;
  flex-shrink: 0;
}

.product__details-icon svg {
  width: 18px;
  height: 18px;
  display: block;
}

.product__purchase-info {
  list-style: none;
  padding: 0;
  margin: 0.65rem 0 0;
}

.product__purchase-info li {
  margin: 0 0 0.4rem;
  color: #555;
  font-size: 0.9rem;
  line-height: 1.55;
}

.product__purchase-info-label {
  font-weight: 800;
  color: #111;
}

.product__purchase-info-label::after {
  content: ">>";
  margin: 0 0.2rem;
  font-weight: 800;
  color: #111;
}

.product__purchase-info-value {
  color: #555;
}

.product__purchase-info--override,
.product__spec-override {
  margin-top: 0.65rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: #555;
}

.product__spec-override table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0.25rem;
}

.product__spec-override td,
.product__spec-override th {
  border: 1px solid #ccc;
  padding: 0.55rem 0.7rem;
}

.product__spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0.65rem;
  font-size: 0.9rem;
}

.product__spec-table td {
  border: 1px solid #ccc;
  padding: 0.55rem 0.7rem;
  color: #555;
  line-height: 1.45;
  vertical-align: top;
}

.product__spec-table td:first-child {
  font-weight: 700;
  color: #111;
  width: 42%;
}

.product__details summary::-webkit-details-marker { display: none; }
.product__details summary::after { content: "+"; font-weight: 400; }
.product__details details[open] summary::after { content: "−"; }

.product__details .rte,
.product__details p,
.product__details li {
  color: #555;
  font-size: 0.9rem;
  line-height: 1.6;
}

.product__details ul { padding-left: 1.1rem; }

.related {
  padding: 0 0 4rem;
}

.related h2 {
  text-align: center;
  font-family: var(--font-ui);
  font-size: 1.35rem;
  margin: 0 0 1.25rem;
}

.related .product-grid-wa { margin-top: 0; }

/* Search results page */
.search-results {
  padding: 4rem 0 4.5rem;
}

.search-results__title {
  text-align: center;
  font-family: var(--font-display);
  font-size: 2rem;
  margin: 0 0 1.75rem;
  font-weight: 500;
}

.search-results__term {
  color: var(--wa-pink);
  font-weight: 800;
}

.search-results__empty {
  text-align: center;
  color: var(--color-muted);
  font-size: 1rem;
  max-width: 680px;
  margin: 0 auto;
}
