:root {
  --paper: #f8f5ef;
  --paper-2: #e8e2d8;
  --mist: #dcebf1;
  --cloud-blue: #78a9c8;
  --ink: #141313;
  --muted: #68635b;
  --line: rgba(20, 19, 19, 0.13);
  --celadon: #7f9486;
  --blue: #384f68;
  --orchid: #8f6f84;
  --umber: #8b443a;
  --noir: #191517;
  --champagne: #c9a96c;
  --white: #fffdf8;
  --shadow: 0 24px 70px rgba(20, 19, 19, 0.13);
  --radius: 8px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  letter-spacing: 0;
}

img {
  display: block;
  max-width: 100%;
}

button,
a,
input {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

.promo-bar {
  background: var(--noir);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  line-height: 40px;
  text-align: center;
  text-transform: uppercase;
}

.lc-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(248, 245, 239, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.lc-nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 62px;
  padding: 0 54px;
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.nav-right {
  justify-content: flex-end;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.brand-mark {
  width: 2.1rem;
  height: 2.1rem;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background:
    linear-gradient(105deg, transparent 52%, var(--ink) 53% 59%, transparent 60%),
    radial-gradient(circle at 62% 38%, var(--ink) 0 0.16rem, transparent 0.18rem),
    var(--paper);
}

.nav-icon {
  border: 0;
  background: transparent;
  cursor: pointer;
  text-transform: uppercase;
}

.nav-icon span {
  display: inline-grid;
  min-width: 20px;
  height: 20px;
  margin-left: 4px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  font-size: 11px;
}

.hero-product {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.82fr);
  gap: 74px;
  max-width: 1360px;
  margin: 0 auto;
  padding: 54px 54px 78px;
  align-items: start;
}

.gallery-panel {
  min-width: 0;
}

.gallery-main-wrap {
  position: relative;
  display: grid;
  min-height: 650px;
  place-items: center;
  overflow: hidden;
  border-radius: var(--radius);
  background: linear-gradient(145deg, var(--paper-2), var(--mist));
}

.gallery-main {
  width: 100%;
  height: 100%;
  max-height: 760px;
  object-fit: contain;
  padding: 42px;
}

.sale-pill {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  border-radius: 4px;
  background: var(--noir);
  color: var(--white);
  padding: 9px 12px;
  font-size: 12px;
  font-weight: 700;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.84);
  cursor: pointer;
  font-size: 30px;
}

.gallery-arrow.prev {
  left: 20px;
}

.gallery-arrow.next {
  right: 20px;
}

.thumb-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(70px, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.pdp-thumbs {
  grid-template-columns: repeat(6, minmax(70px, 1fr));
}

.thumb {
  height: 94px;
  padding: 0;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
}

.thumb.is-active {
  border-color: var(--ink);
}

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

.buy-panel {
  position: sticky;
  top: 96px;
}

.rating-row {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 10px;
  font-size: 14px;
}

.rating-row span,
.stars {
  color: var(--ink);
  letter-spacing: 1px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 500;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(42px, 5vw, 74px);
  line-height: 0.95;
}

h2 {
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1;
}

h3 {
  font-size: 19px;
}

.price-line {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 28px;
}

.price-line strong {
  font-size: 21px;
}

.price-line span {
  color: var(--muted);
}

.divider {
  height: 1px;
  margin-bottom: 24px;
  background: var(--ink);
}

.lede,
.split-copy p,
.section-head-center p,
.size-section p,
.faq-list p {
  color: #2b2a27;
  font-size: 16px;
  line-height: 1.65;
}

.promise-list {
  margin: 0 0 34px;
  padding-left: 18px;
  line-height: 1.75;
}

.variant-switch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 0 0 26px;
}

.variant-button {
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
  font-weight: 700;
  text-transform: uppercase;
}

.variant-button.is-active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.option-block {
  margin-bottom: 24px;
}

.option-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 16px;
  text-transform: uppercase;
}

.option-head a {
  border-bottom: 1px solid var(--ink);
}

.option-label {
  display: block;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.size-options {
  display: grid;
  grid-template-columns: repeat(4, 62px);
  gap: 12px;
}

.size-button,
.qty-control button,
.qty-control input {
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  cursor: pointer;
}

.size-button.is-active {
  border-color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--ink);
}

.qty-control {
  display: inline-grid;
  grid-template-columns: 44px 76px 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.qty-control button,
.qty-control input {
  border: 0;
  border-radius: 0;
  text-align: center;
}

.add-button,
.shop-pay-button,
.checkout-button,
.sticky-buy button,
.review-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 700;
  text-transform: uppercase;
}

.add-button,
.sticky-buy button,
.checkout-button {
  width: 100%;
  background: var(--ink);
  color: var(--paper);
}

.shop-pay-button {
  width: 100%;
  margin-top: 12px;
  background: var(--cloud-blue);
  color: var(--ink);
}

.service-stack {
  display: grid;
  gap: 8px;
  margin: 22px 0;
}

.service-stack div {
  padding: 14px 16px;
  border-radius: var(--radius);
  background: #f4f5f5;
}

.pdp-includes {
  display: grid;
  gap: 10px;
  margin: 0 0 28px;
}

.pdp-includes div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.pdp-includes strong,
.pdp-includes span {
  display: block;
}

.pdp-includes span {
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.5;
}

.service-stack span,
.mini-kit span {
  display: block;
  font-weight: 700;
}

.service-stack small,
.mini-kit small {
  color: var(--muted);
}

.mini-kit {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 16px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.mini-kit img {
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
}

.benefit-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(170px, 1fr));
  gap: 1px;
  background: #2a2a2a;
  color: var(--paper);
  overflow-x: auto;
}

.benefit-strip div {
  min-height: 76px;
  padding: 16px 20px;
  background: var(--ink);
}

.benefit-strip strong,
.benefit-strip span {
  display: block;
}

.benefit-strip span {
  margin-top: 4px;
  color: #d7d7d7;
  font-size: 13px;
}

.editorial-split,
.packaging-section,
.ritual-section,
.size-section,
.reviews-section,
.faq-section,
.ugc-section {
  max-width: 1360px;
  margin: 0 auto;
  padding: 92px 54px;
}

.editorial-split {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 70px;
  align-items: center;
}

.text-link {
  display: inline-block;
  margin-top: 8px;
  border-bottom: 1px solid var(--ink);
  text-transform: uppercase;
}

.image-pair {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 18px;
  align-items: end;
}

.image-pair img,
.packaging-grid img,
.review-grid img {
  border-radius: var(--radius);
  object-fit: cover;
}

.image-pair img {
  width: 100%;
  aspect-ratio: 4 / 5;
}

.image-pair img:first-child {
  margin-top: 78px;
}

.packaging-section,
.reviews-section {
  background: linear-gradient(180deg, var(--paper), #f7fbfc);
}

.section-head-center {
  max-width: 760px;
  margin: 0 auto 46px;
  text-align: center;
}

.ugc-section {
  background: var(--white);
}

.ugc-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.ugc-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 18px 48px rgba(20, 19, 19, 0.08);
}

.ugc-card.large,
.ugc-card.wide {
  grid-column: span 2;
}

.ugc-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.ugc-card.wide img {
  aspect-ratio: 4 / 5;
}

.ugc-card div {
  padding: 18px;
}

.ugc-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.ugc-card strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
}

.ugc-card p {
  margin-bottom: 0;
  color: #2b2a27;
  line-height: 1.55;
}

.packaging-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 42px;
  align-items: center;
}

.pdp-packaging-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.packaging-grid figure {
  margin: 0;
}

.package-card {
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.package-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
}

.packaging-grid figcaption {
  margin: 0;
  padding: 14px 16px;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}

.kit-list,
.step-grid,
.review-grid,
.shape-row {
  display: grid;
  gap: 16px;
}

.kit-list div,
.step-grid article,
.review-grid article,
.shape-row div {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
}

.kit-list div {
  padding: 22px;
}

.kit-list strong,
.kit-list span {
  display: block;
}

.kit-list span {
  margin-top: 8px;
  color: var(--muted);
}

.step-grid {
  grid-template-columns: repeat(4, 1fr);
}

.step-grid article {
  min-height: 210px;
  padding: 28px;
}

.step-grid span {
  color: var(--champagne);
  font-family: var(--serif);
  font-size: 34px;
}

.size-section {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 60px;
  align-items: center;
}

.shape-row {
  grid-template-columns: repeat(4, 1fr);
}

.shape-row div {
  display: grid;
  min-height: 160px;
  place-items: center;
  text-align: center;
}

.shape-row span {
  font-family: var(--serif);
  font-size: 46px;
}

.shape-row small {
  color: var(--muted);
  text-transform: uppercase;
}

.reviews-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.review-button {
  min-width: 220px;
  background: var(--ink);
  color: var(--paper);
}

.review-grid {
  grid-template-columns: repeat(3, 1fr);
}

.review-grid article {
  overflow: hidden;
  background: var(--paper);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.06);
}

.review-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.review-grid article > :not(img) {
  margin-left: 24px;
  margin-right: 24px;
}

.review-grid .stars {
  margin-top: 24px;
  font-size: 20px;
}

.review-grid p {
  color: #2b2a27;
  line-height: 1.55;
}

.review-grid span {
  display: block;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 13px;
}

.faq-list {
  max-width: 880px;
  margin: 0 auto;
}

.faq-list details {
  border-top: 1px solid var(--ink);
}

.faq-list details:last-child {
  border-bottom: 1px solid var(--ink);
}

.faq-list summary {
  cursor: pointer;
  padding: 22px 0;
  list-style: none;
  font-weight: 700;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  float: right;
  font-size: 22px;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  max-width: 720px;
  margin-bottom: 22px;
}

.sticky-buy {
  position: fixed;
  right: 28px;
  bottom: 24px;
  z-index: 30;
  display: grid;
  grid-template-columns: 66px minmax(120px, 1fr);
  gap: 12px;
  width: 344px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(14px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 180ms ease, transform 180ms ease;
}

body.has-sticky-buy .sticky-buy {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.sticky-buy img {
  width: 66px;
  height: 66px;
  border-radius: var(--radius);
  object-fit: cover;
}

.sticky-buy div {
  align-self: center;
}

.sticky-buy strong,
.sticky-buy span {
  display: block;
}

.sticky-buy span {
  margin-top: 4px;
  color: var(--muted);
}

.sticky-buy button {
  grid-column: 1 / -1;
}

.cart-drawer {
  width: min(430px, calc(100vw - 28px));
  margin: auto 20px auto auto;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
}

.cart-drawer::backdrop {
  background: rgba(0, 0, 0, 0.42);
}

.cart-head,
.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid var(--line);
}

.cart-head button {
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 22px;
}

.cart-items {
  display: grid;
  gap: 16px;
  padding: 20px;
}

.cart-item {
  display: grid;
  grid-template-columns: 76px 1fr auto;
  gap: 12px;
  align-items: center;
}

.cart-item img {
  width: 76px;
  height: 76px;
  border-radius: var(--radius);
  object-fit: cover;
}

.cart-item small,
.cart-drawer p {
  color: var(--muted);
}

.remove-line {
  border: 0;
  background: transparent;
  cursor: pointer;
  text-decoration: underline;
}

.cart-drawer .checkout-button {
  width: calc(100% - 40px);
  margin: 18px 20px 0;
}

.cart-drawer p {
  padding: 0 20px 20px;
  font-size: 13px;
}

@media (max-width: 1040px) {
  .lc-nav {
    grid-template-columns: 1fr auto;
    padding: 0 20px;
  }

  .nav-left {
    display: none;
  }

  .brand {
    justify-self: start;
  }

  .hero-product,
  .editorial-split,
  .packaging-grid,
  .pdp-packaging-grid,
  .size-section,
  .review-grid,
  .step-grid {
    grid-template-columns: 1fr;
  }

  .hero-product {
    gap: 34px;
    padding: 28px 18px 68px;
  }

  .buy-panel {
    position: static;
  }

  .gallery-main-wrap {
    min-height: 430px;
  }

  .editorial-split,
  .packaging-section,
  .ritual-section,
  .size-section,
  .reviews-section,
  .faq-section,
  .ugc-section {
    padding: 70px 18px;
  }
}

@media (max-width: 680px) {
  .promo-bar {
    font-size: 11px;
    line-height: 34px;
  }

  .lc-nav {
    min-height: 56px;
  }

  .nav-right {
    gap: 14px;
    font-size: 12px;
  }

  .nav-right a {
    display: none;
  }

  .brand {
    gap: 8px;
    font-size: 18px;
  }

  .brand-mark {
    width: 28px;
    height: 28px;
  }

  h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 38px;
  }

  .gallery-main-wrap {
    min-height: 360px;
  }

  .gallery-main {
    padding: 22px;
  }

  .gallery-arrow {
    display: none;
  }

  .thumb-row {
    grid-template-columns: repeat(5, 82px);
    max-width: 100%;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    padding-bottom: 4px;
  }

  .pdp-thumbs {
    grid-template-columns: repeat(6, 82px);
  }

  .size-options {
    grid-template-columns: repeat(4, 1fr);
  }

  .benefit-strip {
    grid-template-columns: 1fr;
    overflow-x: hidden;
  }

  .image-pair {
    grid-template-columns: 1fr;
  }

  .image-pair img:first-child {
    margin-top: 0;
  }

  .shape-row {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .ugc-card.large,
  .ugc-card.wide {
    grid-column: auto;
  }

  .reviews-head {
    align-items: start;
    flex-direction: column;
  }

  .review-button {
    width: 100%;
  }

  .sticky-buy {
    right: 10px;
    bottom: 10px;
    left: 10px;
    width: auto;
  }
}
