@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&display=swap');
@import url('https://api.fontshare.com/v2/css?f[]=satoshi@700,900&display=swap');

:root {
  --pink: #ffdfdf;
  --blue: #d3e6f7;
  --cream: #fffdfd;
  --ink: #0f0f0f;
  --muted: #5a5a5a;
  --white: #ffffff;
  --page: 1200px;
  --font: "Outfit", system-ui, sans-serif;
  --display: "Satoshi", "Outfit", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.5;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font: inherit; background: none; border: none; cursor: pointer; color: inherit; }
.wrap { width: min(var(--page), calc(100% - 48px)); margin: 0 auto; }
.wrap-wide { width: min(1360px, calc(100% - 48px)); margin: 0 auto; }

/* Announcement — light blue like Candy Claws */
.announcement {
  background: var(--blue);
  color: var(--ink);
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  padding: 10px 16px;
}

/* Header */
.header {
  background: var(--cream);
  border-bottom: 1px solid rgba(15,15,15,.08);
  position: sticky;
  top: 0;
  z-index: 40;
}
.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 68px;
  gap: 16px;
}
.logo {
  font-family: var(--display);
  font-weight: 900;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  text-transform: lowercase;
  justify-self: start;
}
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  justify-self: center;
}
.nav a, .nav summary {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(15,15,15,.75);
  list-style: none;
  cursor: pointer;
}
.nav a:hover, .nav summary:hover { color: var(--ink); }
.nav li.has-sub {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  position: relative;
}
.nav li.has-sub > .nav-parent {
  padding-right: 4px;
}
.nav details { position: relative; }
.nav details summary {
  list-style: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 8px 10px 2px;
  cursor: pointer;
  color: rgba(15,15,15,.75);
}
.nav details summary::-webkit-details-marker { display: none; }
.nav details summary .caret {
  font-size: 10px;
  opacity: .7;
  line-height: 1;
}
.nav details ul {
  position: absolute;
  top: calc(100% - 2px);
  left: 0;
  min-width: 200px;
  background: #fff;
  border: 1px solid rgba(15,15,15,.1);
  border-radius: 10px;
  padding: 8px 0;
  display: none;
  z-index: 60;
  box-shadow: 0 12px 28px rgba(0,0,0,.1);
}
.nav details[open] ul { display: block; }
.nav li.has-sub:hover details ul,
.nav details:focus-within ul { display: block; }
.nav details ul a {
  display: block;
  padding: 10px 16px;
  white-space: nowrap;
  font-size: 13px;
  color: #1a1a1a;
}
.nav details ul a:hover {
  background: #ffdfdf;
  color: #0f0f0f;
}
.length-card:target,
.product:target {
  outline: 3px solid #0f0f0f;
  outline-offset: 4px;
  border-radius: 16px;
}
.section-accessories {
  padding: 64px 0 72px;
  background: #fff;
}
.accessories-lead {
  text-align: center;
  margin: -24px auto 32px;
  color: #666;
  max-width: 40ch;
}
.product-grid--acc {
  max-width: 960px;
  margin: 0 auto;
}
.header-icons {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 4px;
}
.header-icons a, .header-icons button {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.header-icons svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.6; }
.menu-btn { display: none !important; }
@media (max-width: 980px) {
  .menu-btn { display: inline-flex !important; }
}

/* Buttons — Candy Claws style */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #0f0f0f;
  color: #fffdfd !important;
  font-family: var(--display);
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 100px;
  box-shadow: 0 4px 4px rgba(0,0,0,.25);
  border: none;
  transition: transform .2s ease, opacity .2s ease;
}
.btn:hover { transform: translateY(-1px); opacity: .92; }
.btn-wide { min-width: min(430px, 100%); }
.btn-outline {
  background: #fff;
  color: #0f0f0f !important;
  border: 1.5px solid #0f0f0f;
  box-shadow: none;
}

/* Hero — 50/50 split like Candy Claws first section */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: min(640px, 78vh);
  background: #fffdfd;
}
.hero-left {
  background: #ffdfdf;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 40px 48px max(40px, calc((100vw - 1200px) / 2 + 24px));
}
.hero-left-inner {
  width: 100%;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}
.hero-q {
  margin: 0;
  font-family: var(--font);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
  color: #000;
}
.hero-h {
  margin: 0;
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(30px, 3.4vw, 40px);
  line-height: 1.22;
  color: #0f0f0f;
  letter-spacing: -0.01em;
}
.hero-feats {
  display: flex;
  gap: 14px;
  width: 100%;
  margin: 4px 0 2px;
}
.feat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  min-width: 0;
}
.feat-icon {
  width: 100%;
  aspect-ratio: 1.15 / 1;
  max-height: 96px;
  background: #fffdfd;
  border-radius: 12px;
  box-shadow: -4px 4px 5px rgba(0,0,0,.09);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
}
.feat-icon img {
  width: 52px;
  height: 52px;
  display: block;
}
.feat span {
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.25;
  color: #0f0f0f;
}
.btn-hero {
  width: 100%;
  max-width: 430px;
  margin-top: 6px;
  padding: 16px 32px;
  font-size: 15px;
  letter-spacing: 2px;
}
.hero-right {
  position: relative;
  background: #efeae7;
  min-height: 420px;
  overflow: hidden;
}
.hero-right > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}
.hero-quote {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: min(300px, calc(100% - 36px));
  background: #fffdfd;
  border-radius: 12px;
  padding: 14px 16px 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,.14);
}
.hero-quote .stars {
  color: #f0c12a;
  letter-spacing: 1px;
  font-size: 13px;
  line-height: 1;
  margin-bottom: 6px;
}
.hero-quote strong {
  display: block;
  font-family: var(--display);
  font-weight: 900;
  font-size: 15px;
  line-height: 1.25;
  margin-bottom: 4px;
  color: #0f0f0f;
}
.hero-quote p {
  margin: 0;
  font-size: 12.5px;
  color: #444;
  line-height: 1.35;
  font-weight: 500;
}

/* Section commons */
.section { padding: 56px 0; }
.section-head { text-align: center; margin-bottom: 28px; }
.section-head .eyebrow {
  margin: 0 0 8px;
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(28px, 3.5vw, 40px);
  line-height: 1.2;
}
.section-head h2 {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  color: var(--muted);
}

/* Shop by length — Candy Claws style */
.section-lengths {
  padding: 64px 0 72px;
  background: #fff;
}
.section-head--lengths {
  margin-bottom: 36px;
}
.lengths-title {
  margin: 0 0 10px;
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.15;
  color: #0f0f0f;
  text-align: center;
}
.lengths-sub {
  margin: 0;
  font-size: 17px;
  font-weight: 500;
  color: #6a6a6a;
  text-align: center;
}
.length-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.length-card {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 18px;
  overflow: hidden;
  display: block;
  background: #f3f3f3;
}
.length-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.length-card:hover img { transform: scale(1.04); }
.length-card span {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  background: #0f0f0f;
  color: #fff;
  font-family: var(--display);
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 11px 18px;
  border-radius: 100px;
  white-space: nowrap;
  max-width: calc(100% - 28px);
  overflow: hidden;
  text-overflow: ellipsis;
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
}
.section-cta { text-align: center; margin-top: 32px; }
.btn-shop-all {
  background: #fff !important;
  color: #0f0f0f !important;
  border: 1.5px solid #0f0f0f;
  box-shadow: none;
  min-width: min(360px, 100%);
  padding: 16px 40px;
}
.btn-shop-all:hover {
  background: #0f0f0f !important;
  color: #fff !important;
}

/* Difference — image left, blue right (Candy Claws style) */
.section-diff {
  padding: 0;
  background: #fff;
}
.diff-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  overflow: hidden;
}
.diff-visual {
  min-height: 480px;
  background: #f4f1ee;
}
.diff-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.diff-copy {
  background: #d3e6f7;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 56px 48px;
}
.diff-copy-inner {
  width: 100%;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 22px;
}
.diff-copy h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.18;
  color: #0f0f0f;
  max-width: 16ch;
}
.diff-copy h2 u {
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
}
.diff-copy .lead {
  margin: 0;
  font-size: 15px;
  line-height: 1.45;
  color: #1a1a1a;
  max-width: 38ch;
  font-weight: 500;
}
.diff-copy .lead strong { font-weight: 800; }
.diff-pills {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  width: 100%;
  margin: 4px 0;
  padding: 0;
  list-style: none;
}
.diff-pills li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  background: #ffc7ce;
  border-radius: 100px;
  padding: 12px 16px 12px 14px;
  font-size: 13px;
  font-weight: 700;
  color: #0f0f0f;
  text-align: left;
}
.diff-pills img {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.diff-pills span { line-height: 1.2; }
.btn-diff {
  margin-top: 6px;
  min-width: min(320px, 100%);
  box-shadow: 0 4px 4px rgba(0,0,0,.25);
}

/* Products — Fan Favourites */
.section-favourites {
  padding: 72px 0 80px;
  background: #f7f7f7;
}
.products-title {
  text-align: center;
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(28px, 3.5vw, 40px);
  margin: 0 0 40px;
  color: #0f0f0f;
  line-height: 1.15;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 22px;
}
.product {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: stretch;
}
.product-img {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 16px;
  background: #eee;
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.product:hover .product-img img { transform: scale(1.03); }
.product h3 {
  margin: 6px 0 0;
  font-size: 16px;
  font-weight: 700;
  text-transform: lowercase;
  color: #0f0f0f;
  line-height: 1.25;
}
.product .price {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  color: #0f0f0f;
}
.btn-product {
  width: 100%;
  margin-top: 8px;
  box-shadow: none;
  font-size: 13px;
  letter-spacing: 1.5px;
  padding: 14px 16px;
  border-radius: 100px;
}

/* Social proof — 3x3 UGC + review cards */
.section-social {
  padding: 72px 0 80px;
  background: #fff;
}
.social-title {
  text-align: center;
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(26px, 3.2vw, 40px);
  max-width: 18ch;
  margin: 0 auto 40px;
  line-height: 1.18;
  color: #0f0f0f;
}
.social-title u {
  text-decoration-thickness: 3px;
  text-underline-offset: 6px;
}
.social-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: stretch;
}
.ugc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.ugc-grid figure {
  margin: 0;
  aspect-ratio: 1;
  overflow: hidden;
  background: #eee;
  position: relative;
}
.ugc-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ugc-hearts .hearts {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8px;
  text-align: center;
  color: #ff7a8a;
  font-size: 14px;
  letter-spacing: 4px;
  text-shadow: 0 1px 2px rgba(255,255,255,.8);
}
.reviews-panel {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.reviews-viewport {
  overflow: hidden;
  flex: 1;
  height: 440px;
}
.reviews-track {
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .45s ease;
}
.review-card {
  background: #d3e6f7;
  border-radius: 14px;
  padding: 24px 22px;
  min-height: 200px;
  height: 210px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}
.review-card .stars {
  color: #f0c12a;
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 10px;
}
.review-card h3 {
  margin: 0 0 10px;
  font-family: var(--display);
  font-weight: 900;
  font-size: 22px;
  line-height: 1.2;
  color: #0f0f0f;
}
.review-card p {
  margin: 0;
  color: #222;
  font-size: 14px;
  line-height: 1.5;
  flex: 1;
}
.review-card cite {
  display: block;
  margin-top: 16px;
  font-style: normal;
  font-weight: 800;
  font-size: 14px;
  color: #0f0f0f;
}
.reviews-nav {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 16px;
}
.rev-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: #d8d8d8;
  color: #fff;
  font-size: 22px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.rev-btn--active,
.rev-btn:hover {
  background: #0f0f0f;
}

/* How-to — Fit / Prep / Apply / Wear */
.section-howto {
  padding: 72px 0 48px;
  background: #ffdfdf;
}
.howto-title {
  margin: 0 auto 28px;
  text-align: center;
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.2;
  color: #0f0f0f;
  max-width: 22ch;
}
.howto-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 420px;
  margin: 0 auto 36px;
}
.howto-progress span {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #fff;
  color: #0f0f0f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 16px;
  flex-shrink: 0;
  box-shadow: 0 1px 3px rgba(0,0,0,.08);
}
.howto-progress i {
  flex: 1;
  height: 2px;
  background: #0f0f0f;
  min-width: 28px;
  display: block;
}
.howto-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  position: relative;
  z-index: 1;
}
.howto-step {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.howto-step > img,
.howto-img-wrap img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 14px;
  background: #fff;
  display: block;
}
.howto-img-wrap {
  position: relative;
}
.howto-callout {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  background: #fff;
  border: 1.5px solid #0f0f0f;
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(0,0,0,.08);
}
.howto-step h3 {
  margin: 4px 0 0;
  font-family: var(--display);
  font-weight: 900;
  font-size: 22px;
  color: #0f0f0f;
}
.howto-step p {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: #1a1a1a;
}
.howto-note {
  font-size: 12px !important;
  opacity: .85;
}
.remove-card {
  position: relative;
  z-index: 2;
  max-width: 560px;
  margin: -28px auto 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
}
.remove-card--float {
  margin: 0 auto;
  position: relative;
  top: 0;
  transform: translateY(-42%);
  z-index: 5;
}
.remove-card__top {
  background: #0f0f0f;
  color: #fff;
  text-align: center;
  font-family: var(--display);
  font-weight: 900;
  font-size: 18px;
  padding: 14px 18px;
}
.remove-card__body {
  background: #fff;
  border: 2px solid #0f0f0f;
  border-top: none;
  padding: 16px 18px 18px;
  font-size: 13.5px;
  line-height: 1.5;
  color: #1a1a1a;
  text-align: center;
}
.remove-card__body strong { font-weight: 800; }

/* Story — blue left + spine + photo */
.section-story {
  padding: 0 0 72px;
  background: #fff;
  margin-top: -20px;
}
.section-story .wrap-wide {
  margin-top: -40px;
}
.story {
  display: grid;
  grid-template-columns: 1.05fr 56px 0.95fr;
  border-radius: 20px;
  overflow: hidden;
  min-height: 560px;
  background: #d3e6f7;
}
.story-copy {
  background: #d3e6f7;
  padding: 72px 48px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  border: none;
}
.story-copy h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.15;
  max-width: 14ch;
  color: #0f0f0f;
}
.story-copy p {
  margin: 0;
  color: #1a1a1a;
  font-size: 15px;
  line-height: 1.55;
  max-width: 42ch;
}
.story-copy strong { font-weight: 800; }
.story-copy em { font-style: italic; font-weight: 800; }
.story-copy .btn { align-self: flex-start; margin-top: 6px; }
.story-spine {
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 48px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--display);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: lowercase;
  color: #0f0f0f;
}
.story-spine span { white-space: nowrap; }
.story-visual {
  min-height: 480px;
  background: #efeae7;
}
.story-visual img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: center 15%;
  display: block;
}

/* Compare — final section */
.section-compare {
  position: relative;
  padding: 80px 0 96px;
  background: #ffe8ea;
  overflow: hidden;
}
.compare-blob {
  position: absolute;
  left: -12%;
  top: 10%;
  width: 48%;
  height: 80%;
  background: #ffd0d6;
  border-radius: 50% 40% 45% 55%;
  opacity: .85;
  pointer-events: none;
}
.compare-title {
  position: relative;
  z-index: 1;
  text-align: center;
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(26px, 3.4vw, 40px);
  line-height: 1.15;
  color: #1a1212;
  max-width: 16ch;
  margin: 0 auto 40px;
}
.compare-title em {
  font-style: italic;
  font-weight: 900;
}
.compare-board {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1fr;
  gap: 0;
  max-width: 920px;
  margin: 0 auto;
  background: rgba(255,255,255,.72);
  border-radius: 18px;
  padding: 8px 8px 8px 18px;
  box-shadow: 0 8px 28px rgba(40,20,20,.06);
}
.compare-labels {
  display: grid;
  grid-template-rows: 52px repeat(4, 64px);
  align-items: center;
}
.compare-labels .compare-spacer { height: 52px; }
.compare-labels > div:not(.compare-spacer) {
  font-size: 14px;
  font-weight: 700;
  color: #1a1212;
  border-top: 1px solid rgba(26,18,18,.08);
  height: 64px;
  display: flex;
  align-items: center;
  padding-right: 12px;
}
.compare-col {
  display: grid;
  grid-template-rows: 52px repeat(4, 64px);
  text-align: center;
}
.compare-head {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-weight: 900;
  font-size: 13px;
  text-transform: lowercase;
  color: #1a1212;
  padding: 0 6px;
}
.compare-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid rgba(26,18,18,.08);
  height: 64px;
}
.compare-col--kitty {
  background: #d3e6f7;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(30,60,90,.16);
  margin: -10px 4px;
  padding-bottom: 6px;
}
.compare-col--kitty .compare-head {
  height: 62px;
  border: none;
}
.compare-col--kitty .compare-cell {
  border-top-color: rgba(255,255,255,.35);
}
.mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 16px;
  line-height: 1;
}
.mark-yes {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #ff9aa8;
  color: #fff;
}
.mark-soft {
  color: #ff9aa8;
  font-size: 20px;
}
.mark-no {
  color: #c5bdbd;
  font-size: 18px;
}
.compare-cta {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-top: 40px;
}
.btn-feel {
  min-width: min(320px, 100%);
  box-shadow: 0 4px 4px rgba(0,0,0,.25);
}

/* Footer */
.footer {
  background: #0f0f0f;
  color: rgba(255,255,255,.75);
  padding: 56px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 36px;
}
.footer h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
}
.footer a:hover { color: #fff; }
.footer li { margin-bottom: 8px; font-size: 14px; }
.newsletter { display: flex; gap: 8px; margin-top: 10px; }
.newsletter input {
  flex: 1;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,.25);
  background: transparent;
  color: #fff;
  padding: 12px 16px;
}
.newsletter button {
  border-radius: 100px;
  background: #fff;
  color: #0f0f0f;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 12px 18px;
}
.subfooter {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 18px;
  font-size: 13px;
  color: rgba(255,255,255,.45);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

@media (max-width: 980px) {
  .header-inner { grid-template-columns: auto 1fr auto; }
  .nav { display: none; }
  .nav.open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    left: 0; right: 0;
    top: 100%;
    background: #fff;
    padding: 12px 20px 20px;
    border-bottom: 1px solid rgba(15,15,15,.08);
    z-index: 30;
  }
  .nav li.has-sub {
    flex-wrap: wrap;
    width: 100%;
  }
  .nav details ul {
    position: static;
    box-shadow: none;
    border: 0;
    padding: 4px 0 8px 12px;
    min-width: 0;
    width: 100%;
  }
  .menu-btn { display: inline-flex !important; }
  .hero { grid-template-columns: 1fr; min-height: 0; }
  .hero-left {
    padding: 36px 24px;
    order: 2;
  }
  .hero-left-inner { max-width: none; }
  .hero-right {
    order: 1;
    min-height: 360px;
    aspect-ratio: 4/3;
  }
  .hero-quote { right: 12px; bottom: 12px; }
  .diff-card { grid-template-columns: 1fr; }
  .story {
    grid-template-columns: 1fr;
  }
  .story-spine { display: none; }
  .diff-copy { padding: 40px 24px; }
  .diff-visual { min-height: 380px; aspect-ratio: 1; }
  .story-copy { padding: 48px 24px 40px; }
  .story-visual img { min-height: 420px; }
  .remove-card--float { transform: translateY(-18%); max-width: calc(100% - 32px); }
  .section-story .wrap-wide { margin-top: 0; }
  .btn-diff { width: 100%; min-width: 0; }
  .social-layout { grid-template-columns: 1fr; }
  .ugc-grid { max-width: 520px; margin: 0 auto; width: 100%; }
  .length-grid, .product-grid, .howto-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .btn-wide, .btn-hero { min-width: 0; width: 100%; max-width: none; }
}
@media (max-width: 800px) {
  .compare-board {
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    padding: 8px;
    overflow-x: auto;
    min-width: 0;
  }
  .compare-labels > div:not(.compare-spacer) { font-size: 12px; }
  .compare-head { font-size: 11px; }
}
@media (max-width: 640px) {
  .length-grid, .product-grid, .howto-grid, .diff-pills { grid-template-columns: 1fr; }
  .hero-feats { gap: 8px; }
  .feat-icon { padding: 10px; max-height: 84px; }
  .feat-icon img { width: 44px; height: 44px; }
  .feat span { font-size: 11px; }
  .howto-callout { font-size: 10px; padding: 5px 8px; }
  .compare-board {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: transparent;
    box-shadow: none;
    padding: 0;
  }
  .compare-labels { display: none; }
  .compare-col {
    background: rgba(255,255,255,.85);
    border-radius: 16px;
    grid-template-rows: auto;
    padding: 8px 0 4px;
  }
  .compare-col--kitty { margin: 0; }
  .compare-cell {
    justify-content: space-between;
    padding: 0 16px;
    height: 52px;
  }
  .compare-col .compare-cell:nth-child(2)::before { content: "Damage-free removal"; }
  .compare-col .compare-cell:nth-child(3)::before { content: "10-minute application"; }
  .compare-col .compare-cell:nth-child(4)::before { content: "Wear up to 2 weeks"; }
  .compare-col .compare-cell:nth-child(5)::before { content: "Reusable"; }
  .compare-cell::before {
    font-size: 13px;
    font-weight: 700;
    color: #1a1212;
  }
  .compare-head { height: auto; padding: 12px; font-size: 14px; }
}

/* —— Cart drawer —— */
.cart-trigger {
  position: relative;
}
.cart-badge {
  position: absolute;
  top: 6px;
  right: 4px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: #0f0f0f;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
}
body.cart-open { overflow: hidden; }
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15,15,15,.4);
  z-index: 90;
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;
}
.cart-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(420px, 100%);
  height: 100%;
  background: #fffdfd;
  z-index: 100;
  display: flex;
  flex-direction: column;
  transform: translateX(105%);
  transition: transform .3s ease;
  box-shadow: -12px 0 40px rgba(0,0,0,.12);
}
.cart-drawer.is-open { transform: translateX(0); }
.cart-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  border-bottom: 1px solid rgba(15,15,15,.08);
}
.cart-drawer-head h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 900;
}
.cart-close {
  width: 40px;
  height: 40px;
  font-size: 28px;
  line-height: 1;
  color: #0f0f0f;
}
.cart-empty {
  padding: 40px 22px;
  color: #666;
  text-align: center;
}
.cart-items {
  flex: 1;
  overflow: auto;
  padding: 12px 18px 24px;
}
.cart-line {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 12px;
  align-items: start;
  padding: 14px 0;
  border-bottom: 1px solid rgba(15,15,15,.06);
}
.cart-line-img {
  width: 72px;
  height: 72px;
  border-radius: 10px;
  overflow: hidden;
  background: #ffdfdf;
}
.cart-line-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cart-line-info h3 {
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 700;
  text-transform: lowercase;
}
.cart-line-price {
  margin: 0 0 8px;
  font-size: 13px;
  color: #555;
}
.cart-qty {
  display: inline-flex;
  align-items: center;
  gap: 0;
  border: 1px solid rgba(15,15,15,.15);
  border-radius: 999px;
  overflow: hidden;
}
.cart-qty button {
  width: 32px;
  height: 30px;
  font-size: 16px;
}
.cart-qty span {
  min-width: 28px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
}
.cart-remove {
  font-size: 22px;
  line-height: 1;
  color: #888;
  padding: 4px;
}
.cart-footer {
  padding: 18px 22px 28px;
  border-top: 1px solid rgba(15,15,15,.08);
  background: #fff;
}
.cart-totals {
  display: grid;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 14px;
}
.cart-totals > div,
.checkout-totals > div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.cart-total-row {
  font-size: 16px;
  padding-top: 8px;
  border-top: 1px solid rgba(15,15,15,.08);
  margin-top: 4px;
}
.cart-ship-note {
  margin: 0 0 14px;
  font-size: 12px;
  color: #777;
}
.btn-checkout,
.btn-checkout-submit {
  width: 100%;
  border: 0;
}
.cart-continue {
  display: block;
  width: 100%;
  margin-top: 10px;
  padding: 10px;
  font-size: 13px;
  text-decoration: underline;
  color: #555;
}
button.btn {
  border: 0;
  cursor: pointer;
}

/* —— Checkout —— */
.header-inner--checkout {
  grid-template-columns: 1fr auto auto;
}
.checkout-back {
  font-size: 14px;
  font-weight: 500;
  color: rgba(15,15,15,.7);
}
.checkout-page {
  padding: 40px 0 80px;
  background: linear-gradient(180deg, #ffdfdf 0%, #fffdfd 28%);
  min-height: 70vh;
}
.checkout-layout {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 40px;
  align-items: start;
}
.checkout-form-wrap h1 {
  margin: 0 0 8px;
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(28px, 4vw, 40px);
}
.checkout-lead {
  margin: 0 0 24px;
  color: #555;
}
.checkout-form-wrap fieldset {
  border: 0;
  margin: 0 0 28px;
  padding: 0;
}
.checkout-form-wrap legend {
  font-family: var(--display);
  font-weight: 900;
  font-size: 1.05rem;
  margin-bottom: 14px;
  padding: 0;
}
.checkout-form-wrap label {
  display: block;
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 600;
  color: #333;
}
.checkout-form-wrap input,
.checkout-form-wrap select,
.checkout-form-wrap textarea {
  display: block;
  width: 100%;
  margin-top: 6px;
  padding: 12px 14px;
  border: 1px solid rgba(15,15,15,.15);
  border-radius: 10px;
  background: #fff;
  font: inherit;
  color: #0f0f0f;
}
.checkout-form-wrap input:focus,
.checkout-form-wrap select:focus,
.checkout-form-wrap textarea:focus {
  outline: 2px solid #d3e6f7;
  border-color: #9ec5e8;
}
.checkout-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.pay-option {
  display: flex !important;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  border: 1px solid rgba(15,15,15,.1);
  border-radius: 12px;
  margin-bottom: 10px;
  cursor: pointer;
  background: #fff;
}
.pay-option:has(input:checked) {
  border-color: #0f0f0f;
  background: #ffdfdf;
}
.pay-option input {
  width: auto !important;
  margin: 4px 0 0 !important;
}
.pay-option strong {
  display: block;
  font-size: 14px;
}
.pay-option small {
  display: block;
  font-weight: 400;
  color: #666;
  margin-top: 2px;
}
.checkout-error {
  color: #b00020;
  font-size: 14px;
  margin: 0 0 12px;
}
.checkout-summary {
  position: sticky;
  top: 100px;
  background: #fff;
  border: 1px solid rgba(15,15,15,.08);
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 10px 30px rgba(0,0,0,.04);
}
.checkout-summary h2 {
  margin: 0 0 16px;
  font-family: var(--display);
  font-weight: 900;
  font-size: 1.15rem;
}
.summary-line {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(15,15,15,.06);
  font-size: 13px;
}
.summary-line img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 8px;
  background: #ffdfdf;
}
.summary-line strong {
  display: block;
  text-transform: lowercase;
}
.summary-line span { color: #777; }
.summary-line em {
  font-style: normal;
  font-weight: 700;
}
.checkout-totals {
  margin-top: 16px;
  display: grid;
  gap: 8px;
  font-size: 14px;
}
.checkout-summary-empty {
  color: #888;
  font-size: 14px;
}

.order-done {
  padding: 80px 0;
  min-height: 60vh;
  background: linear-gradient(180deg, #d3e6f7 0%, #fffdfd 40%);
}
.order-done-card {
  max-width: 520px;
  text-align: center;
  background: #fff;
  border-radius: 20px;
  padding: 48px 32px;
  box-shadow: 0 16px 40px rgba(0,0,0,.06);
}
.order-done-kicker {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  font-weight: 700;
  color: #666;
  margin: 0 0 8px;
}
.order-done-card h1 {
  margin: 0 0 12px;
  font-family: var(--display);
  font-weight: 900;
  font-size: 2rem;
}
.order-done-card .btn { margin-top: 24px; }

@media (max-width: 900px) {
  .checkout-layout { grid-template-columns: 1fr; }
  .checkout-summary { position: static; order: -1; }
  .checkout-row { grid-template-columns: 1fr; }
  .header-inner--checkout { grid-template-columns: 1fr auto; }
  .checkout-back { display: none; }
}

/* —— Product detail page (PDP) —— */
.page-product .header { background: #fff; }
.pdp-hero {
  padding: 28px 0 48px;
  background: #fff;
}
.pdp-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: start;
}
.pdp-main {
  border-radius: 4px;
  overflow: hidden;
  background: #f6f6f6;
  aspect-ratio: 1;
}
.pdp-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pdp-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.pdp-thumb {
  width: 88px;
  height: 88px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 4px;
  overflow: hidden;
  background: #f3f3f3;
}
.pdp-thumb.is-active { border-color: #0f0f0f; }
.pdp-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pdp-buy h1 {
  margin: 0 0 10px;
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(28px, 3.4vw, 40px);
  text-transform: lowercase;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.pdp-price {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 600;
}
.pdp-tax {
  margin: 2px 0 12px;
  font-size: 12px;
  color: #999;
}
.pdp-reviews-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  margin-bottom: 14px;
}
.pdp-reviews-link .stars { color: #e6b800; letter-spacing: 1px; }
.pdp-tagline {
  margin: 0 0 22px;
  font-size: 15px;
  color: #333;
  text-transform: lowercase;
}
.pdp-icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 24px;
  padding: 8px 0 4px;
}
.pdp-icon {
  text-align: center;
  font-size: 12px;
  line-height: 1.25;
  color: #333;
}
.pdp-icon svg {
  width: 28px;
  height: 28px;
  margin: 0 auto 8px;
  display: block;
}
.btn-pdp-cart {
  width: 100%;
  background: #ffdfdf !important;
  color: #0f0f0f !important;
  border-radius: 6px;
  box-shadow: none;
  letter-spacing: 0.5px;
  text-transform: none;
  font-weight: 700;
  font-size: 16px;
  padding: 18px 20px;
}
.btn-pdp-cart:hover { filter: brightness(0.97); }
.pdp-desc {
  margin: 20px 0 0;
  color: #555;
  font-size: 14px;
  line-height: 1.55;
}

.pdp-included { padding: 12px 0 56px; background: #fff; }
.pdp-included-box {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: center;
  background: #d3e6f7;
  border-radius: 18px;
  padding: 36px;
}
.pdp-included-copy h2 {
  margin: 0 0 12px;
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.15;
}
.pdp-included-copy p { margin: 0; color: #333; max-width: 36ch; }
.pdp-included-visual { position: relative; }
.pdp-included-visual > img {
  width: 100%;
  border-radius: 12px;
  background: #fff;
}
.pdp-kit-labels {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.pdp-kit-labels li {
  background: #fff;
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 600;
}

.pdp-salon {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}
.pdp-salon-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 520px;
}
.pdp-salon-copy {
  background: #ffdfdf;
  padding: clamp(32px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.pdp-salon-badge {
  display: inline-block;
  align-self: flex-start;
  background: #f5c8c8;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 600;
  margin: 0 0 18px;
}
.pdp-salon-copy h2 {
  margin: 0 0 12px;
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.12;
}
.pdp-salon-lead { margin: 0 0 22px; color: #222; }
.pdp-salon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
}
.pdp-salon-grid article {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: #d3e6f7;
  border-radius: 14px;
  padding: 14px;
}
.pdp-salon-grid strong { display: block; font-size: 14px; }
.pdp-salon-grid span { font-size: 12px; color: #444; }
.pdp-salon-copy .btn { align-self: flex-start; }

.pdp-fit {
  padding: 72px 0;
  background: #fff;
}
.pdp-fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.pdp-fit-copy h2 {
  margin: 0 0 18px;
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.15;
}
.pdp-fit-copy p {
  margin: 0 0 14px;
  color: #333;
  font-size: 15px;
  line-height: 1.6;
}
.pdp-fit-collage {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  grid-template-rows: 180px 220px;
  gap: 10px;
}
.pdp-fit-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}
.pdp-fit-collage .a { grid-row: 1 / 3; }
.pdp-howto { background: #ffdfdf; }

.pdp-testimonials {
  padding: 72px 0;
  background: #fff;
}
.pdp-testimonials h2 {
  margin: 0;
  text-align: center;
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(26px, 3vw, 38px);
}
.pdp-testimonials-sub {
  text-align: center;
  color: #555;
  margin: 8px 0 36px;
}
.pdp-testi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.pdp-testi {
  background: #eaf4fc;
  border-radius: 16px;
  padding: 14px;
}
.pdp-testi img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 12px;
}
.pdp-testi .stars { color: #e6b800; font-size: 14px; }
.pdp-testi h3 {
  margin: 8px 0;
  font-size: 15px;
  line-height: 1.3;
}
.pdp-testi p {
  margin: 0 0 14px;
  font-size: 13px;
  color: #444;
}
.pdp-testi cite {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-style: normal;
  font-size: 13px;
  font-weight: 600;
}
.verified {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #0f0f0f;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}

.pdp-compare .compare-sub {
  text-align: center;
  margin: -8px 0 28px;
  color: #444;
}
.mark-soft { color: #f5a8b5; font-weight: 800; }

.pdp-faq {
  padding: 64px 0 72px;
  background: #fff;
}
.wrap-narrow { width: min(720px, calc(100% - 48px)); margin: 0 auto; }
.pdp-faq h2 {
  margin: 0 0 28px;
  text-align: center;
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(24px, 3vw, 34px);
  text-transform: lowercase;
}
.faq-list details {
  border-bottom: 1px solid rgba(15,15,15,.12);
}
.faq-list summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 28px 18px 0;
  font-weight: 700;
  text-transform: lowercase;
  position: relative;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "▾";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  opacity: .7;
}
.faq-list details[open] summary::after { content: "▴"; }
.faq-list details p {
  margin: 0 0 18px;
  color: #555;
  padding-right: 24px;
}
.faq-more {
  text-align: center;
  margin: 28px 0 16px;
  font-size: 14px;
}
.faq-more a { text-decoration: underline; font-weight: 700; }
.btn-faq {
  display: flex;
  width: min(420px, 100%);
  margin: 0 auto;
  background: #ffdfdf !important;
  color: #0f0f0f !important;
  border-radius: 8px;
  box-shadow: none;
  text-transform: lowercase;
  letter-spacing: 0;
  font-weight: 700;
}

.pdp-related {
  padding: 24px 0 72px;
  background: #fff;
}
.pdp-related h2 {
  margin: 0 0 24px;
  font-family: var(--display);
  font-weight: 900;
  font-size: 1.6rem;
}
.pdp-related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.pdp-related-card h3 {
  margin: 10px 0 4px;
  font-size: 15px;
  text-transform: lowercase;
}
.pdp-related-card p { margin: 0; font-size: 14px; }
.pdp-related-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 4px;
  background: #f4f4f4;
}

.pdp-reviews {
  padding: 24px 0 90px;
  background: #fff;
  border-top: 1px solid rgba(15,15,15,.06);
}
.pdp-reviews-intro {
  text-align: center;
  margin-bottom: 28px;
}
.pdp-reviews-intro h2 {
  margin: 0 0 6px;
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(24px, 3vw, 34px);
}
.pdp-reviews-intro p {
  margin: 0;
  color: #666;
  font-size: 14px;
}
.pdp-review-top time { display: none; }
.pdp-reviews-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  margin-bottom: 28px;
}
.pdp-score-num {
  font-size: 48px;
  font-weight: 900;
  color: #f3a6b4;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 10px;
}
.pdp-score-num .stars { font-size: 18px; color: #e6b800; }
.pdp-score p { margin: 8px 0 0; color: #777; font-size: 13px; }
.pdp-bar-row {
  display: grid;
  grid-template-columns: 16px 1fr 40px;
  gap: 8px;
  align-items: center;
  font-size: 12px;
  margin-bottom: 4px;
}
.pdp-bar {
  height: 8px;
  background: #eee;
  border-radius: 99px;
  overflow: hidden;
}
.pdp-bar i {
  display: block;
  height: 100%;
  background: #f3a6b4;
}
.pdp-bar-row em { font-style: normal; color: #777; text-align: right; }
.btn-write-review {
  background: linear-gradient(90deg, #f7b6c2, #ef9aab) !important;
  box-shadow: none;
  border-radius: 999px;
  text-transform: none;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.pdp-media-reviews h3 {
  margin: 0 0 12px;
  font-size: 15px;
}
.pdp-media-row {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 8px;
  margin-bottom: 24px;
}
.pdp-media-row img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 8px;
  flex: 0 0 auto;
}
.pdp-review-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 20px;
}
.pdp-search input {
  border: 1px solid rgba(15,15,15,.15);
  border-radius: 999px;
  padding: 10px 14px;
  min-width: 180px;
  font: inherit;
}
.chip {
  border: 1px solid rgba(15,15,15,.12);
  background: #f3f3f3;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 13px;
}
.chip.is-active {
  background: #ffdfdf;
  border-color: #0f0f0f;
}
.pdp-sort {
  margin-left: auto;
  font-size: 13px;
  color: #555;
}
.pdp-sort select {
  border: 0;
  background: transparent;
  font: inherit;
  font-weight: 600;
}
.pdp-review {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid rgba(15,15,15,.1);
}
.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ddd;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 8px;
}
.pdp-review-user .buyer {
  display: block;
  color: #ef7f97;
  font-size: 12px;
  font-weight: 700;
  margin-top: 4px;
}
.pdp-review-top {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
  margin-bottom: 8px;
}
.pdp-review-top .stars { color: #e6b800; }
.pdp-review-top h3 { margin: 0; font-size: 15px; }
.pdp-review-top time { margin-left: auto; color: #999; font-size: 13px; }
.pdp-review-body p { margin: 0 0 12px; color: #333; }
.pdp-review-photos {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}
.pdp-review-photos img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 6px;
}
.pdp-helpful {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
  font-size: 13px;
  color: #666;
}
.pdp-helpful button { font-size: 13px; }
.promo-tab {
  position: fixed;
  left: 0;
  bottom: 24px;
  z-index: 50;
  background: #ef9aab;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 10px 14px;
  border-radius: 0 8px 8px 0;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}
.product-link {
  display: block;
  color: inherit;
}
.product-link:hover h3 { text-decoration: underline; }

@media (max-width: 980px) {
  .pdp-hero-grid,
  .pdp-included-box,
  .pdp-salon,
  .pdp-fit-grid,
  .pdp-reviews-head {
    grid-template-columns: 1fr;
  }
  .pdp-testi-grid,
  .pdp-related-grid,
  .pdp-salon-grid {
    grid-template-columns: 1fr 1fr;
  }
  .pdp-review { grid-template-columns: 1fr; }
  .pdp-sort { margin-left: 0; width: 100%; }
  .pdp-fit-collage { grid-template-rows: 140px 180px; }
}
@media (max-width: 640px) {
  .pdp-testi-grid,
  .pdp-related-grid,
  .pdp-icons,
  .pdp-salon-grid { grid-template-columns: 1fr; }
  .pdp-thumb { width: 68px; height: 68px; }
}
