:root {
  --ink: #201915;
  --espresso: #4b382b;
  --taupe: #b69575;
  --bronze: #9d764c;
  --champagne: #ead9c5;
  --ivory: #fffaf4;
  --pearl: #f6eee5;
  --plum: #4c2f38;
  --line: rgba(75, 56, 43, 0.18);
  --shadow: 0 24px 70px rgba(32, 25, 21, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::selection {
  background: var(--taupe);
  color: var(--ivory);
}

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

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

.grain {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  opacity: 0.24;
  background-image:
    radial-gradient(circle at 25% 15%, rgba(255, 255, 255, 0.8) 0 1px, transparent 1px),
    radial-gradient(circle at 78% 55%, rgba(75, 56, 43, 0.16) 0 1px, transparent 1px);
  background-size: 38px 38px, 54px 54px;
  mix-blend-mode: soft-light;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--ivory);
  transition: background 280ms ease, color 280ms ease, box-shadow 280ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255, 250, 244, 0.86);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(18px);
}

.sale-marquee {
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  z-index: 9;
  overflow: hidden;
  border-top: 1px solid rgba(255, 250, 244, 0.16);
  border-bottom: 1px solid rgba(255, 250, 244, 0.16);
  background: rgba(42, 33, 29, 0.9);
  color: var(--ivory);
}

.sale-marquee-track {
  display: flex;
  width: max-content;
  animation: saleMarquee 26s linear infinite;
}

.sale-marquee span {
  padding: 9px 18px;
  color: rgba(255, 250, 244, 0.86);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  width: max-content;
}

.brand-word {
  display: inline-grid;
  grid-auto-flow: column;
  gap: 10px;
  align-items: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 2.3vw, 2.45rem);
  font-weight: 700;
  line-height: 1;
  transform: translateX(-8px);
}

.nav-links {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 42px);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.nav-links a,
.header-action {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: 8px 0;
}

.nav-links a::after,
.header-action::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 240ms ease;
}

.nav-links a:hover::after,
.header-action:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-action {
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 18px;
}

.profile-menu {
  position: relative;
}

.profile-trigger {
  display: inline-grid;
  min-width: 44px;
  min-height: 44px;
  place-items: center;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  padding: 0;
}

.profile-icon {
  display: inline-grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.profile-icon svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.profile-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: min(260px, calc(100vw - 28px));
  padding: 14px;
  border: 1px solid rgba(75, 56, 43, 0.16);
  background: rgba(255, 250, 244, 0.96);
  color: var(--ink);
  box-shadow: 0 22px 52px rgba(32, 25, 21, 0.18);
  backdrop-filter: blur(18px);
}

.profile-dropdown[hidden] {
  display: none;
}

.profile-dropdown-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.auth-status-email {
  color: var(--espresso);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.profile-menu-close,
.profile-menu-auth,
.profile-menu-profile,
.profile-menu-orders,
.auth-logout {
  width: 100%;
  min-height: 38px;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 900;
  text-align: left;
  text-transform: uppercase;
}

.profile-menu-close {
  width: auto;
  min-width: 34px;
  text-align: center;
  font-size: 1.15rem;
}

.profile-menu-auth,
.profile-menu-profile,
.profile-menu-orders,
.auth-logout {
  margin-top: 8px;
  padding: 0 10px;
  border: 1px solid rgba(75, 56, 43, 0.14);
}

.profile-menu-auth {
  background: var(--espresso);
  color: var(--ivory);
}

.bag-trigger {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  gap: 8px;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.bag-count {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.68rem;
  line-height: 1;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--ivory);
  padding: 150px clamp(22px, 7vw, 96px) 96px;
}

.hero-image,
.hero-video,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  object-fit: cover;
  object-position: center center;
}

.hero-image {
  object-fit: cover;
  object-position: 67% center;
  transform: scale(1.04);
  animation: heroDrift 16s ease-in-out infinite alternate;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(32, 25, 21, 0.56), rgba(32, 25, 21, 0.22) 48%, rgba(32, 25, 21, 0.04)),
    linear-gradient(0deg, rgba(32, 25, 21, 0.34), transparent 38%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  padding-top: 8vh;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--bronze);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--champagne);
}

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

h1 {
  margin-bottom: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(5.5rem, 18vw, 15rem);
  line-height: 0.78;
  font-weight: 700;
}

h2 {
  margin-bottom: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.35rem, 5vw, 5.8rem);
  line-height: 0.96;
}

h3 {
  margin-bottom: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.2vw, 2.4rem);
  line-height: 1.03;
}

.hero-copy {
  max-width: 560px;
  margin-bottom: 34px;
  color: rgba(255, 250, 244, 0.84);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid rgba(255, 250, 244, 0.46);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 220ms ease, background 220ms ease, color 220ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--ivory);
  color: var(--ink);
}

.button.ghost {
  color: var(--ivory);
}

.scroll-cue {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 34px;
  width: 28px;
  height: 48px;
  border: 1px solid rgba(255, 250, 244, 0.55);
  border-radius: 999px;
  transform: translateX(-50%);
}

.scroll-cue span {
  position: absolute;
  left: 50%;
  top: 9px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--ivory);
  transform: translateX(-50%);
  animation: scrollPulse 1.7s ease-in-out infinite;
}

.intro-band {
  min-height: 26vh;
  display: grid;
  place-items: center;
  padding: clamp(54px, 9vw, 110px) clamp(22px, 8vw, 120px);
  background: var(--ink);
  color: var(--pearl);
}

.intro-band p {
  max-width: 1040px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.75rem, 4vw, 4.25rem);
  line-height: 1.05;
  text-align: center;
}

.section,
.private-list {
  padding: clamp(70px, 10vw, 140px) clamp(22px, 6vw, 84px);
}

.collection {
  padding-top: clamp(44px, 6vw, 86px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(220px, 1fr);
  gap: clamp(28px, 5vw, 78px);
  align-items: end;
  margin-bottom: clamp(30px, 5vw, 70px);
}

.section-heading h2 {
  grid-column: 2;
}

.section-heading .eyebrow {
  align-self: start;
}

.collection-heading-with-media {
  width: min(1720px, 100%);
  grid-template-columns: minmax(480px, 0.92fr) minmax(520px, 1fr);
  gap: clamp(34px, 4vw, 72px);
  align-items: center;
  margin: 0 auto clamp(28px, 3vw, 42px);
}

.collection-heading-copy {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
}

.collection-heading-with-media h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3.55rem, 5.05vw, 6.05rem);
  line-height: 0.94;
}

.collection-heading-copy .eyebrow {
  margin: 0 0 14px;
}

.collection-heading-support {
  max-width: 560px;
  margin: 24px 0 0;
  color: rgba(32, 25, 21, 0.7);
  font-size: clamp(1.02rem, 1.45vw, 1.5rem);
  line-height: 1.5;
}

.collection-heading-media {
  grid-column: 1;
  grid-row: 1 / span 2;
  align-self: stretch;
  aspect-ratio: 1.22 / 1;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(75, 56, 43, 0.12);
  background: var(--pearl);
}

.collection-heading-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.bundle-carousel-wrap {
  margin: 0 calc(clamp(22px, 6vw, 84px) * -1) clamp(34px, 5vw, 64px);
  padding: 0 clamp(22px, 6vw, 84px) 8px;
}

.bundle-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(220px, 1fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
  margin-bottom: 22px;
}

.bundle-heading h3 {
  grid-column: 2;
  max-width: 660px;
  margin-bottom: 0;
  color: var(--espresso);
  font-size: clamp(1.75rem, 3vw, 3.35rem);
}

.bundle-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(340px, 31vw);
  gap: 16px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 2px 0 18px;
  scroll-snap-type: inline mandatory;
  scrollbar-color: rgba(75, 56, 43, 0.28) transparent;
}

.bundle-carousel::-webkit-scrollbar {
  height: 8px;
}

.bundle-carousel::-webkit-scrollbar-track {
  background: rgba(75, 56, 43, 0.08);
}

.bundle-carousel::-webkit-scrollbar-thumb {
  background: rgba(75, 56, 43, 0.28);
}

.bundle-card {
  position: relative;
  display: grid;
  grid-template-rows: 190px 1fr;
  min-height: 680px;
  overflow: hidden;
  border: 1px solid rgba(75, 56, 43, 0.18);
  background: linear-gradient(145deg, rgba(255, 253, 249, 0.96), rgba(246, 238, 229, 0.9));
  box-shadow: 0 1px 0 rgba(32, 25, 21, 0.05);
  scroll-snap-align: start;
}

.bundle-card.featured-bundle {
  border-color: rgba(157, 118, 76, 0.52);
  background:
    linear-gradient(145deg, rgba(255, 253, 249, 0.98), rgba(234, 217, 197, 0.86));
}

.bundle-image {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 22%, rgba(255, 253, 249, 0.92), transparent 34%),
    linear-gradient(135deg, rgba(234, 217, 197, 0.62), rgba(132, 93, 61, 0.16));
}

.bundle-image img {
  width: 78%;
  max-height: 168px;
  object-fit: contain;
  filter: drop-shadow(0 24px 36px rgba(32, 25, 21, 0.14));
}

.bundle-card-body {
  display: grid;
  align-content: space-between;
  padding: clamp(24px, 3vw, 34px);
}

.bundle-card-top p {
  margin-bottom: 16px;
  color: var(--bronze);
  font-size: 0.78rem;
  font-weight: 900;
}

.bundle-card h4 {
  margin: 0 0 14px;
  color: var(--espresso);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 2.4vw, 2.55rem);
  line-height: 1.02;
}

.bundle-card-top span {
  display: block;
  max-width: 360px;
  color: rgba(32, 25, 21, 0.66);
  line-height: 1.6;
}

.bundle-badge {
  width: max-content;
  margin: 20px 0 0;
  padding: 8px 10px;
  border: 1px solid rgba(157, 118, 76, 0.42);
  color: var(--espresso);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.bundle-card ul {
  display: grid;
  gap: 8px;
  margin: 28px 0;
  padding: 0;
  color: rgba(32, 25, 21, 0.7);
  list-style: none;
}

.bundle-card li {
  padding-top: 8px;
  border-top: 1px solid rgba(75, 56, 43, 0.12);
  font-size: 0.9rem;
  line-height: 1.45;
}

.bundle-pricing {
  margin: 0;
  border-top: 1px solid rgba(75, 56, 43, 0.18);
}

.bundle-pricing div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(75, 56, 43, 0.12);
}

.bundle-pricing dt,
.bundle-pricing dd {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.bundle-pricing dt {
  color: var(--bronze);
}

.bundle-pricing dd {
  color: var(--espresso);
}

.bundle-pricing div:nth-child(2) dd {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.75rem;
  line-height: 1;
  text-transform: none;
}

.bundle-add {
  width: 100%;
  min-height: 48px;
  margin-top: 20px;
  border: 1px solid var(--espresso);
  background: var(--espresso);
  color: var(--pearl);
  cursor: pointer;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.bundle-add:hover {
  background: transparent;
  color: var(--espresso);
  transform: translateY(-1px);
}

.bundle-add:disabled {
  border-color: rgba(75, 56, 43, 0.24);
  background: rgba(75, 56, 43, 0.12);
  color: rgba(32, 25, 21, 0.48);
  cursor: not-allowed;
  transform: none;
}

.before-after-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  padding: clamp(64px, 8vw, 118px) clamp(22px, 6vw, 84px);
  border-top: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255, 250, 244, 0.96), rgba(246, 238, 229, 0.72)),
    radial-gradient(circle at 82% 16%, rgba(234, 217, 197, 0.4), transparent 30%);
}

.before-after-copy h2 {
  max-width: 520px;
  margin: 0 0 20px;
  color: var(--espresso);
  font-size: clamp(3.2rem, 6.2vw, 7.2rem);
  line-height: 0.9;
}

.before-after-copy p:not(.eyebrow) {
  max-width: 470px;
  margin: 0;
  color: rgba(32, 25, 21, 0.68);
  font-size: clamp(1rem, 1.45vw, 1.34rem);
  line-height: 1.62;
}

.comparison-slider {
  --split: 50%;
  position: relative;
  width: min(100%, 920px);
  aspect-ratio: 16 / 9;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(75, 56, 43, 0.16);
  background: #fff;
  box-shadow: 0 30px 80px rgba(32, 25, 21, 0.12);
  cursor: ew-resize;
  touch-action: none;
  user-select: none;
}

.comparison-slider:focus-visible {
  outline: 2px solid rgba(157, 118, 76, 0.72);
  outline-offset: 4px;
}

.comparison-image {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.comparison-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  pointer-events: none;
  user-select: none;
}

.comparison-before {
  background:
    linear-gradient(135deg, rgba(246, 238, 229, 0.84), rgba(191, 163, 134, 0.42)),
    repeating-linear-gradient(45deg, rgba(75, 56, 43, 0.08) 0 1px, transparent 1px 18px);
}

.comparison-after {
  clip-path: inset(0 0 0 var(--split));
  background:
    radial-gradient(circle at 76% 24%, rgba(255, 250, 244, 0.88), transparent 28%),
    linear-gradient(135deg, rgba(234, 217, 197, 0.94), rgba(157, 118, 76, 0.44)),
    repeating-linear-gradient(-35deg, rgba(255, 250, 244, 0.16) 0 1px, transparent 1px 22px);
  transition: clip-path 120ms ease;
}

.comparison-slider.is-dragging .comparison-after {
  transition: none;
}

.comparison-image span {
  padding: 10px 14px;
  border: 1px solid rgba(255, 250, 244, 0.5);
  background: rgba(32, 25, 21, 0.24);
  color: var(--ivory);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.comparison-label {
  position: absolute;
  top: 18px;
  z-index: 2;
  padding: 8px 10px;
  border: 1px solid rgba(255, 250, 244, 0.52);
  background: rgba(32, 25, 21, 0.34);
  color: var(--ivory);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.comparison-label-left {
  left: 18px;
}

.comparison-label-right {
  right: 18px;
}

.comparison-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--split);
  z-index: 3;
  width: 1px;
  background: rgba(255, 250, 244, 0.82);
  box-shadow: 0 0 0 1px rgba(75, 56, 43, 0.18);
  transform: translateX(-50%);
  transition: left 120ms ease;
}

.comparison-slider.is-dragging .comparison-divider {
  transition: none;
}

.comparison-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(75, 56, 43, 0.2);
  border-radius: 50%;
  background: rgba(255, 250, 244, 0.9);
  box-shadow: 0 18px 38px rgba(32, 25, 21, 0.2);
  transform: translate(-50%, -50%);
}

.comparison-arrow {
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--espresso);
  border-left: 2px solid var(--espresso);
}

.comparison-arrow-left {
  transform: rotate(-45deg);
}

.comparison-arrow-right {
  transform: rotate(135deg);
}

.comparison-disclaimer {
  grid-column: 2;
  max-width: 680px;
  margin: -18px 0 0;
  color: rgba(32, 25, 21, 0.52);
  font-size: 0.78rem;
  line-height: 1.6;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.product-card {
  position: relative;
  display: grid;
  grid-template-rows: auto auto;
  align-self: start;
  border: 1px solid var(--line);
  background: #fffdf9;
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(32, 25, 21, 0.05);
  cursor: pointer;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.product-card:hover,
.product-card:focus-visible {
  border-color: rgba(157, 118, 76, 0.62);
  box-shadow: 0 16px 38px rgba(32, 25, 21, 0.12);
  outline: 0;
  transform: translateY(-4px);
}

.product-card.featured {
  border-color: rgba(157, 118, 76, 0.34);
}

.product-card-unavailable {
  opacity: 0.78;
}

.best-seller-tag {
  position: absolute;
  left: 14px;
  top: 14px;
  z-index: 2;
  padding: 8px 10px;
  border: 1px solid rgba(255, 253, 249, 0.34);
  background: var(--espresso);
  color: var(--ivory);
  box-shadow: 0 10px 24px rgba(32, 25, 21, 0.18);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-visual {
  position: relative;
  aspect-ratio: auto;
  min-height: 0;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(246, 238, 229, 0.88), rgba(204, 177, 149, 0.7)),
    radial-gradient(circle at 70% 30%, rgba(76, 47, 56, 0.2), transparent 40%);
}

.product-visual::before {
  content: "";
  position: absolute;
  inset: -28%;
  background: linear-gradient(115deg, transparent 34%, rgba(255, 255, 255, 0.72) 48%, transparent 60%);
  transform: translateX(-42%) rotate(8deg);
  animation: satinSheen 5.8s ease-in-out infinite;
}

.product-visual span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(62%, 260px);
  aspect-ratio: 1.08;
  transform: translate(-50%, -50%) rotate(-10deg);
  box-shadow: var(--shadow);
}

.product-photo {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 520ms ease;
}

.product-card:hover .product-photo {
  transform: scale(1.035);
}

.reviews-panel {
  margin-top: clamp(42px, 7vw, 86px);
  padding-top: clamp(34px, 5vw, 64px);
  border-top: 1px solid var(--line);
}

.reviews-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(220px, 1fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
  margin-bottom: 24px;
}

.reviews-heading h3 {
  grid-column: 2;
  margin-bottom: 10px;
  color: var(--espresso);
  font-size: clamp(1.85rem, 3.2vw, 3.6rem);
}

.reviews-heading p:not(.eyebrow) {
  grid-column: 2;
  max-width: 620px;
  margin: 0;
  color: rgba(32, 25, 21, 0.64);
  line-height: 1.65;
}

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

.review-card {
  display: grid;
  align-content: space-between;
  min-height: 300px;
  padding: 24px;
  border: 1px solid rgba(75, 56, 43, 0.16);
  background: #fffdf9;
}

.review-stars {
  margin-bottom: 22px;
  color: var(--bronze);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
}

.review-card blockquote {
  margin: 0;
  color: rgba(32, 25, 21, 0.76);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.08rem, 1.55vw, 1.45rem);
  line-height: 1.28;
}

.review-card p {
  margin: 24px 0 0;
  color: var(--bronze);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.review-empty-note {
  margin-top: 14px;
  padding: 16px 0 0;
  border-top: 1px solid rgba(75, 56, 43, 0.12);
  color: rgba(32, 25, 21, 0.58);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.55;
}

.pillow span {
  border-radius: 16px;
  background:
    linear-gradient(140deg, rgba(255, 253, 249, 0.9), rgba(185, 149, 112, 0.78) 48%, rgba(255, 250, 244, 0.58)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.15) 0 10px, transparent 10px 22px);
}

.bonnet span {
  width: min(68%, 300px);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 26%, rgba(255, 250, 244, 0.85), transparent 24%),
    conic-gradient(from 120deg, #755943, #d6bea4, #f8eee2, #9d764c, #4c2f38, #755943);
}

.scrunchie span {
  width: min(54%, 220px);
  border: 42px solid #c2a27e;
  border-radius: 50%;
  background: transparent;
}

.scrunchie span::after {
  content: "";
  position: absolute;
  inset: -38px;
  border-radius: inherit;
  background: repeating-conic-gradient(from 15deg, rgba(255, 255, 255, 0.26) 0 7deg, transparent 7deg 18deg);
}

.eyemask span {
  width: min(66%, 280px);
  aspect-ratio: 2.25;
  border-radius: 999px 999px 38px 38px;
  background:
    radial-gradient(circle at 32% 48%, rgba(255, 250, 244, 0.58) 0 15%, transparent 16%),
    radial-gradient(circle at 68% 48%, rgba(255, 250, 244, 0.5) 0 15%, transparent 16%),
    linear-gradient(135deg, #4c2f38, #b69575 46%, #f1dfcd);
}

.bedding span {
  width: min(72%, 300px);
  aspect-ratio: 1.35;
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(255, 250, 244, 0.88), rgba(183, 149, 115, 0.82)),
    repeating-linear-gradient(0deg, transparent 0 22px, rgba(255, 255, 255, 0.16) 22px 24px);
}

.bedding span::after,
.blanket span::after {
  content: "";
  position: absolute;
  inset: 16%;
  border-radius: 10px;
  border: 1px solid rgba(75, 56, 43, 0.15);
}

.blanket span {
  width: min(74%, 310px);
  aspect-ratio: 1.5;
  border-radius: 18px;
  background:
    linear-gradient(120deg, #ead9c5, #a98763 52%, #f8eee2),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.22) 0 18px, transparent 18px 36px);
  transform: translate(-50%, -50%) rotate(4deg);
}

.slippers span {
  width: min(68%, 285px);
  aspect-ratio: 1.9;
  box-shadow: none;
}

.slippers span::before,
.slippers span::after {
  content: "";
  position: absolute;
  top: 20%;
  width: 46%;
  height: 64%;
  border-radius: 48% 48% 58% 58%;
  background: linear-gradient(145deg, #f6eee5, #b69575 58%, #6d4d35);
  box-shadow: var(--shadow);
}

.slippers span::before {
  left: 4%;
  transform: rotate(-14deg);
}

.slippers span::after {
  right: 4%;
  transform: rotate(14deg);
}

.product-copy {
  padding: 20px 24px 24px;
  border-top: 1px solid var(--line);
}

.product-copy p {
  display: none;
  margin-bottom: 10px;
  color: var(--bronze);
  font-size: 0.82rem;
  font-weight: 900;
}

.product-copy span {
  display: block;
  color: rgba(32, 25, 21, 0.68);
  line-height: 1.6;
}

.product-copy .best-seller-tag {
  position: absolute;
  display: block;
  color: var(--ivory);
  line-height: 1;
}

.product-copy strong {
  display: block;
  margin-top: 16px;
  color: var(--espresso);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.price-row {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 9px;
}

.price-market {
  color: rgba(32, 25, 21, 0.45);
  font-weight: 800;
  text-decoration: line-through;
  text-decoration-thickness: 1px;
}

.price-current {
  color: var(--espresso);
  font-weight: 950;
}

.sale-badge {
  display: inline-flex !important;
  width: max-content;
  margin-top: 9px;
  padding: 5px 8px;
  border: 1px solid rgba(157, 118, 76, 0.28);
  background: rgba(246, 238, 229, 0.72);
  color: var(--bronze) !important;
  font-size: 0.62rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

.colorway-names {
  margin-top: 10px;
  color: rgba(32, 25, 21, 0.54);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.collection-group {
  margin-top: 18px;
  border-top: 1px solid var(--line);
}

.collection-group summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  color: var(--espresso);
  cursor: pointer;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3vw, 3rem);
  list-style: none;
}

.collection-group summary::-webkit-details-marker {
  display: none;
}

.collection-group summary::after {
  content: "+";
  color: var(--bronze);
  font-family: Inter, Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
}

.collection-group[open] summary::after {
  content: "-";
}

.collection-group-grid {
  padding-top: 8px;
}

.product-detail-reviews {
  margin-top: 18px;
  border-top: 1px solid rgba(75, 56, 43, 0.14);
}

.product-detail-reviews summary {
  padding: 14px 0 0;
  color: var(--espresso);
  cursor: pointer;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  list-style: none;
  text-transform: uppercase;
}

.product-detail-reviews summary::-webkit-details-marker {
  display: none;
}

.product-detail-review-list {
  display: grid;
  gap: 12px;
  padding-top: 14px;
  max-height: min(42vh, 380px);
  overflow: auto;
  padding-right: 4px;
}

.review-platform {
  display: grid;
  gap: 22px;
  padding-top: 14px;
}

.review-summary {
  display: grid;
  grid-template-columns: minmax(150px, 0.45fr) minmax(0, 1fr);
  gap: 18px;
  padding: 18px;
  border: 1px solid rgba(75, 56, 43, 0.14);
  background: rgba(255, 250, 244, 0.72);
}

.review-summary-stars {
  color: var(--bronze);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
}

.review-summary strong {
  display: block;
  margin-top: 8px;
  color: var(--espresso);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.2rem;
  line-height: 1;
}

.review-summary span {
  color: rgba(32, 25, 21, 0.62);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.review-breakdown {
  display: grid;
  gap: 8px;
}

.review-breakdown-row {
  display: grid;
  grid-template-columns: 74px 1fr 48px;
  gap: 10px;
  align-items: center;
  color: rgba(32, 25, 21, 0.68);
  font-size: 0.74rem;
  font-weight: 900;
}

.review-breakdown-row div {
  height: 6px;
  overflow: hidden;
  background: rgba(75, 56, 43, 0.12);
}

.review-breakdown-row i {
  display: block;
  height: 100%;
  background: var(--bronze);
}

.review-controls label,
.review-form label {
  display: grid;
  gap: 7px;
  color: var(--bronze);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.review-controls select,
.review-form input,
.review-form select,
.review-form textarea {
  width: 100%;
  border: 1px solid rgba(75, 56, 43, 0.18);
  background: #fffdf9;
  color: var(--espresso);
  font: inherit;
  padding: 12px 13px;
}

.customer-gallery,
.review-list,
.review-list-section {
  display: grid;
  gap: 12px;
}

.customer-gallery-heading,
.review-list-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.customer-gallery-heading h4,
.review-list-heading h4,
.review-form h4,
.product-review h4 {
  margin: 0;
  color: var(--espresso);
}

.customer-gallery-heading span,
.review-list-heading span {
  color: rgba(32, 25, 21, 0.58);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

.customer-photo {
  aspect-ratio: 1;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(75, 56, 43, 0.14);
  background: var(--pearl);
  cursor: zoom-in;
}

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

.product-review {
  display: grid;
  gap: 22px;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid rgba(75, 56, 43, 0.12);
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(255, 253, 249, 0.96), rgba(249, 242, 232, 0.9)),
    radial-gradient(circle at 12% 0%, rgba(234, 217, 197, 0.4), transparent 28%);
  box-shadow: 0 18px 42px rgba(75, 56, 43, 0.08);
  transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.product-review:hover {
  border-color: rgba(157, 118, 76, 0.28);
  box-shadow: 0 24px 54px rgba(75, 56, 43, 0.12);
  transform: translateY(-2px);
}

.product-review-header {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: start;
}

.reviewer-avatar {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid rgba(75, 56, 43, 0.1);
  border-radius: 50%;
  background: linear-gradient(145deg, #efe2d2, #fff8ef);
  color: var(--espresso);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.04em;
}

.reviewer-identity {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.reviewer-name-line,
.product-review-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
}

.reviewer-name-line strong {
  color: var(--espresso);
  font-size: 0.96rem;
  font-weight: 950;
}

.review-country,
.review-date {
  color: rgba(32, 25, 21, 0.5);
  font-size: 0.74rem;
  font-weight: 850;
}

.review-date {
  justify-self: end;
  white-space: nowrap;
}

.review-card-body {
  display: grid;
  gap: 10px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(75, 56, 43, 0.12);
}

.review-stars {
  color: #c99a31;
  font-size: 0.86rem;
  letter-spacing: 0.08em;
}

.product-review h4 {
  font-size: 1rem;
  font-weight: 950;
}

.product-review p {
  margin: 0;
  color: rgba(32, 25, 21, 0.68);
  font-size: 0.94rem;
  font-weight: 400;
  line-height: 1.72;
  text-transform: none;
  overflow-wrap: anywhere;
}

.review-empty {
  color: rgba(32, 25, 21, 0.5);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-review-meta {
  color: rgba(32, 25, 21, 0.54);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.verified-buyer {
  color: #3f7f56;
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.review-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.review-helpful,
.review-photo-count {
  min-height: 36px;
  border: 1px solid rgba(75, 56, 43, 0.18);
  background: rgba(255, 253, 249, 0.74);
  color: var(--espresso);
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 900;
  padding: 0 12px;
  text-transform: uppercase;
}

.review-photo-count {
  border-color: rgba(157, 118, 76, 0.24);
  color: var(--bronze);
}

.review-helpful:disabled,
.review-photo-count:disabled {
  cursor: default;
  opacity: 0.58;
}

.review-load-more {
  justify-self: center;
  min-height: 42px;
  border: 1px solid rgba(75, 56, 43, 0.22);
  background: transparent;
  color: var(--espresso);
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 950;
  padding: 0 18px;
  text-transform: uppercase;
}

.review-form {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(157, 118, 76, 0.2);
  background: linear-gradient(135deg, rgba(255, 253, 249, 0.92), rgba(246, 238, 229, 0.72));
}

.review-form input[name="website"] {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.review-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.review-form button[type="submit"] {
  min-height: 48px;
  border: 1px solid var(--espresso);
  background: var(--espresso);
  color: var(--ivory);
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.review-form-message {
  min-height: 1.2em;
  margin: 0;
  color: rgba(32, 25, 21, 0.62);
  font-size: 0.78rem;
}

.colorway-line {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(0, 1fr);
  height: 8px;
  margin-top: 20px;
  overflow: hidden;
  border: 1px solid rgba(75, 56, 43, 0.16);
  background: var(--pearl);
}

.colorway-line span {
  display: block;
  min-width: 0;
}

.swatch-champagne {
  background: #c49a72;
}

.swatch-black {
  background: #0b0a0a;
}

.swatch-blush {
  background: #e6b8b2;
}

.swatch-rose {
  background: #b85b62;
}

.swatch-pink {
  background: #df9fa2;
}

.swatch-light-pink {
  background: #f2c8cf;
}

.swatch-white {
  background: #f8f2e8;
}

.swatch-navy {
  background: #101833;
}

.swatch-red {
  background: #8f2024;
}

.swatch-light-green {
  background: #b9c7a1;
}

.swatch-coffee-brown {
  background: #5a3928;
}

.swatch-light-champagne {
  background: #ead6b8;
}

.swatch-ivory {
  background: #f1dfc8;
}

.swatch-mocha {
  background: #8a6547;
}

.swatch-bundle {
  background: linear-gradient(135deg, #f7efe4, #b99164);
}

.product-detail {
  position: fixed;
  inset: 0;
  z-index: 30;
  overflow-y: auto;
  padding: clamp(18px, 4vw, 56px);
  background: rgba(32, 25, 21, 0.64);
  backdrop-filter: blur(14px);
}

.product-detail[hidden] {
  display: none;
}

.product-detail-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  width: min(1480px, 100%);
  min-height: min(820px, calc(100vh - 72px));
  max-height: calc(100vh - clamp(36px, 8vw, 112px));
  margin: 0 auto;
  overflow: auto;
  border: 1px solid rgba(75, 56, 43, 0.18);
  background: #fffdf9;
  box-shadow: 0 32px 90px rgba(32, 25, 21, 0.28);
}

.product-detail-close {
  position: absolute;
  top: 16px;
  right: 18px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 249, 0.92);
  color: var(--espresso);
  cursor: pointer;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
  line-height: 1;
}

.product-detail-gallery {
  position: sticky;
  top: 0;
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 16px;
  align-self: start;
  min-height: min(820px, calc(100vh - 72px));
  padding: clamp(18px, 2vw, 28px);
  background:
    linear-gradient(145deg, rgba(255, 250, 244, 0.96), rgba(235, 222, 205, 0.82)),
    radial-gradient(circle at 20% 12%, rgba(255, 255, 255, 0.9), transparent 26%);
}

.product-detail-gallery.has-single-image {
  grid-template-columns: 1fr;
}

.product-detail-thumbnails {
  display: grid;
  align-content: start;
  gap: 10px;
  max-height: calc(100vh - 130px);
  overflow-y: auto;
  padding-right: 2px;
}

.product-detail-thumbnails[hidden] {
  display: none;
}

.product-detail-thumb {
  width: 76px;
  aspect-ratio: 1;
  padding: 0;
  overflow: hidden;
  border: 1px solid transparent;
  background: rgba(255, 253, 249, 0.82);
  cursor: pointer;
  transition: border-color 180ms ease, transform 180ms ease;
}

.product-detail-thumb.is-active {
  border-color: var(--espresso);
}

.product-detail-thumb:hover {
  transform: translateY(-2px);
}

.product-detail-thumb img,
.product-detail-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail-image-wrap {
  display: grid;
  place-items: center;
  min-height: min(720px, calc(100vh - 128px));
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 253, 249, 0.92), rgba(234, 217, 197, 0.74)),
    radial-gradient(circle at 72% 22%, rgba(255, 255, 255, 0.72), transparent 24%);
  cursor: zoom-in;
}

.product-detail-image {
  object-fit: contain;
  object-position: center;
  transition: transform 420ms ease;
}

.product-detail-image-wrap:hover .product-detail-image {
  transform: scale(1.055);
}

.product-detail-copy {
  align-self: start;
  padding: clamp(38px, 5vw, 78px);
}

.product-detail-kicker,
.product-detail-purchase span {
  color: var(--bronze);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-detail-title {
  max-width: 720px;
  margin: 12px 0 12px;
  font-size: clamp(2.7rem, 4.6vw, 5rem);
  line-height: 0.92;
}

.product-detail-rating {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 0 0 18px;
  color: var(--bronze);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-detail-rating strong {
  color: var(--espresso);
}

.product-detail-rating a {
  color: rgba(32, 25, 21, 0.62);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.product-detail-description {
  max-width: 580px;
  color: rgba(32, 25, 21, 0.68);
  font-size: 1rem;
  line-height: 1.75;
}

.product-detail-features,
.product-card-features {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 16px 0 0;
  list-style: none;
}

.product-detail-features:empty,
.product-card-features:empty {
  display: none;
}

.product-detail-features li,
.product-card-features li {
  color: rgba(32, 25, 21, 0.62);
  font-size: 0.82rem;
  line-height: 1.45;
}

.product-detail-features li::before,
.product-card-features li::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--bronze);
  vertical-align: middle;
}

.product-detail-divider {
  margin: 30px 0;
  border-top: 1px solid var(--line);
}

.product-detail-options,
.product-detail-size-options {
  margin: 0;
  padding: 0;
  border: 0;
}

.product-detail-size-options {
  margin-top: 22px;
}

.product-detail-options legend,
.product-detail-size-options legend {
  margin-bottom: 14px;
  color: var(--espresso);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-detail-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-detail-sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-detail-swatch {
  width: 38px;
  height: 38px;
  border: 6px solid #fffdf9;
  outline: 1px solid rgba(75, 56, 43, 0.24);
  cursor: pointer;
}

.product-detail-swatch.is-active {
  outline: 2px solid var(--espresso);
}

.product-detail-size {
  min-width: 46px;
  min-height: 38px;
  border: 1px solid rgba(75, 56, 43, 0.22);
  background: rgba(255, 248, 238, 0.78);
  color: var(--espresso);
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 900;
}

.product-detail-size.is-active {
  border-color: var(--espresso);
  background: var(--espresso);
  color: var(--ivory);
}

.product-detail-selection,
.product-detail-size-selection {
  margin: 14px 0 0;
  color: rgba(32, 25, 21, 0.6);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.product-detail-purchase {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-top: 32px;
}

.product-detail-purchase strong {
  display: block;
  margin-top: 8px;
  color: var(--espresso);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
}

.product-detail-price .price-row {
  gap: 13px;
}

.product-detail-price .price-market {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.05rem;
}

.product-detail-price .sale-badge {
  margin-top: 10px;
  font-family: Arial, Helvetica, sans-serif;
}

.product-detail-purchase label {
  display: grid;
  gap: 8px;
}

.product-detail-quantity {
  width: 84px;
  height: 44px;
  border: 1px solid var(--line);
  background: #fffdf9;
  color: var(--espresso);
  padding: 0 12px;
}

.product-detail-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 26px;
}

.product-detail-add,
.product-detail-buy {
  width: 100%;
  min-height: 56px;
  border: 1px solid var(--espresso);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease;
}

.product-detail-add {
  background: var(--espresso);
  color: var(--ivory);
}

.product-detail-buy {
  background: var(--ivory);
  color: var(--espresso);
}

.product-detail-add:hover,
.product-detail-buy:hover {
  background: var(--ivory);
  color: var(--espresso);
}

.product-detail-buy:hover {
  background: var(--espresso);
  color: var(--ivory);
}

.product-detail-add:disabled,
.product-detail-buy:disabled {
  border-color: rgba(75, 56, 43, 0.24);
  background: rgba(75, 56, 43, 0.12);
  color: rgba(32, 25, 21, 0.48);
  cursor: not-allowed;
}

.product-detail-add:disabled:hover,
.product-detail-buy:disabled:hover {
  background: rgba(75, 56, 43, 0.12);
  color: rgba(32, 25, 21, 0.48);
}

.product-detail-note {
  margin: 14px 0 0;
  color: rgba(32, 25, 21, 0.56);
  font-size: 0.78rem;
  line-height: 1.6;
}

.product-offers {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.product-offers div {
  padding: 13px 14px;
  border: 1px solid rgba(157, 118, 76, 0.22);
  background: linear-gradient(135deg, rgba(255, 250, 244, 0.92), rgba(246, 238, 229, 0.72));
}

.product-offers span {
  display: block;
  margin-bottom: 5px;
  color: var(--espresso);
  font-size: 0.7rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-offers p {
  margin: 0;
  color: rgba(32, 25, 21, 0.62);
  font-size: 0.78rem;
  line-height: 1.5;
}

.product-detail-promises {
  margin: 32px 0 0;
  border-top: 1px solid var(--line);
}

.product-detail-promises div {
  display: grid;
  grid-template-columns: 0.55fr 1fr;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.product-detail-promises dt,
.product-detail-promises dd {
  margin: 0;
  font-size: 0.8rem;
}

.product-detail-promises dt {
  color: var(--bronze);
  font-weight: 900;
  text-transform: uppercase;
}

.product-detail-promises dd {
  color: rgba(32, 25, 21, 0.66);
}

body.has-product-detail {
  overflow: hidden;
}

body.has-product-lightbox {
  overflow: hidden;
}

.product-detail-editorial {
  display: grid;
  gap: 8px;
  margin-top: 24px;
  border-top: 1px solid var(--line);
}

.product-detail-editorial details {
  border-bottom: 1px solid var(--line);
}

.product-detail-editorial summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  color: var(--espresso);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  list-style: none;
  text-transform: uppercase;
}

.product-detail-editorial summary::-webkit-details-marker {
  display: none;
}

.product-detail-editorial summary::after {
  content: "+";
  color: var(--bronze);
  font-size: 1.2rem;
  line-height: 1;
}

.product-detail-editorial details[open] summary::after {
  content: "-";
}

.product-detail-editorial p,
.product-detail-faq p,
.product-recent-empty {
  margin: 0 0 18px;
  color: rgba(32, 25, 21, 0.66);
  font-size: 0.9rem;
  line-height: 1.68;
}

.product-detail-faq {
  display: grid;
  gap: 6px;
  margin-bottom: 18px;
}

.product-detail-faq h4 {
  margin: 0;
  color: var(--espresso);
  font-size: 0.92rem;
}

.product-detail-related {
  margin-top: 30px;
}

.product-detail-related h3 {
  margin: 0 0 12px;
  color: var(--espresso);
  font-size: 1.08rem;
}

.product-related-list,
.product-recent-list {
  display: grid;
  gap: 10px;
}

.product-mini-card {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 12px;
  align-items: center;
  width: 100%;
  padding: 10px;
  border: 1px solid rgba(75, 56, 43, 0.14);
  background: rgba(255, 250, 244, 0.62);
  color: var(--espresso);
  cursor: pointer;
  text-align: left;
}

.product-mini-card img {
  width: 78px;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--pearl);
}

.product-mini-card span {
  display: grid;
  gap: 6px;
}

.product-mini-card strong {
  font-size: 0.9rem;
}

.product-mini-card small {
  display: block;
  font-size: 0.72rem;
}

.product-lightbox {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 54px);
}

.product-lightbox[hidden] {
  display: none;
}

.product-lightbox-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(32, 25, 21, 0.76);
  cursor: zoom-out;
  backdrop-filter: blur(12px);
}

.product-lightbox-frame {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: min(1120px, 100%);
  max-height: calc(100vh - 80px);
  background: #fffdf9;
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.34);
}

.product-lightbox-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(75, 56, 43, 0.18);
  background: rgba(255, 253, 249, 0.94);
  color: var(--espresso);
  cursor: pointer;
  font-size: 1.7rem;
  line-height: 1;
}

.product-lightbox-image {
  display: block;
  width: 100%;
  max-height: calc(100vh - 80px);
  object-fit: contain;
}

.customer-gallery-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(75, 56, 43, 0.18);
  border-radius: 50%;
  background: rgba(255, 253, 249, 0.9);
  color: var(--espresso);
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
  transform: translateY(-50%);
}

.product-lightbox.is-customer-gallery .customer-gallery-nav {
  display: grid;
  place-items: center;
}

.customer-gallery-prev {
  left: 16px;
}

.customer-gallery-next {
  right: 16px;
}

.mobile-sticky-cart {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 35;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(75, 56, 43, 0.16);
  background: rgba(255, 253, 249, 0.94);
  box-shadow: 0 -18px 44px rgba(32, 25, 21, 0.16);
  backdrop-filter: blur(14px);
}

.mobile-sticky-cart[hidden] {
  display: none;
}

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

.mobile-sticky-title {
  color: var(--espresso);
  font-weight: 900;
}

.mobile-sticky-price {
  color: rgba(32, 25, 21, 0.7);
  font-size: 0.78rem;
}

.mobile-sticky-add {
  min-width: 132px;
  min-height: 46px;
  border: 1px solid var(--espresso);
  background: var(--espresso);
  color: var(--ivory);
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.bag-panel {
  position: fixed;
  inset: 0;
  z-index: 40;
}

.bag-panel[hidden] {
  display: none;
}

.bag-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(32, 25, 21, 0.56);
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.bag-drawer {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  width: min(520px, 100%);
  height: 100%;
  padding: 26px;
  background: #fffdf9;
  box-shadow: -24px 0 70px rgba(32, 25, 21, 0.2);
}

.bag-heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.bag-heading .eyebrow {
  margin-bottom: 8px;
}

.bag-heading h2 {
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 4rem);
}

.bag-close {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--espresso);
  cursor: pointer;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
  line-height: 1;
}

.bag-items {
  overflow-y: auto;
}

.bag-item {
  display: grid;
  grid-template-columns: 94px minmax(0, 1fr);
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.bag-item img {
  width: 94px;
  height: 94px;
  object-fit: cover;
}

.bag-item-copy {
  display: grid;
  align-content: start;
  gap: 8px;
}

.bag-item-copy h3 {
  margin: 0;
  font-size: 1.3rem;
}

.bag-item-meta {
  color: rgba(32, 25, 21, 0.58);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.bag-item-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.bag-item-quantity {
  display: inline-grid;
  grid-template-columns: 30px 34px 30px;
  align-items: center;
  border: 1px solid var(--line);
}

.bag-item-quantity button,
.bag-item-remove {
  border: 0;
  background: transparent;
  color: var(--espresso);
  cursor: pointer;
}

.bag-item-quantity button {
  height: 30px;
  font-size: 1rem;
}

.bag-item-quantity span {
  text-align: center;
  font-size: 0.82rem;
  font-weight: 800;
}

.bag-item-remove {
  padding: 0;
  color: rgba(32, 25, 21, 0.56);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.bag-empty {
  align-self: center;
  padding: 34px 0;
  color: rgba(32, 25, 21, 0.62);
}

.bag-empty[hidden] {
  display: none;
}

.bag-empty p {
  margin-bottom: 8px;
  color: var(--espresso);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
}

.bag-empty span {
  line-height: 1.6;
}

.bag-summary {
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.bag-summary div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.bag-summary span,
.bag-summary strong {
  color: var(--espresso);
  font-size: 0.88rem;
  font-weight: 900;
  text-transform: uppercase;
}

.bag-summary p {
  margin: 10px 0 0;
  color: rgba(32, 25, 21, 0.58);
  font-size: 0.76rem;
  line-height: 1.55;
}

.bag-checkout {
  width: 100%;
  min-height: 56px;
  margin-top: 18px;
  border: 1px solid var(--espresso);
  background: var(--espresso);
  color: var(--ivory);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.bag-checkout:disabled {
  cursor: not-allowed;
  opacity: 0.46;
}

.bag-checkout-note {
  min-height: 18px;
}

body.has-bag {
  overflow: hidden;
}

.join-popup {
  position: fixed;
  inset: 0;
  z-index: 35;
  display: grid;
  place-items: center;
  padding: clamp(18px, 5vw, 64px);
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
  transition: opacity 280ms ease;
}

.join-popup[hidden] {
  display: none;
}

.join-popup.is-open {
  opacity: 1;
  pointer-events: auto;
}

.join-popup-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(32, 25, 21, 0.48);
  cursor: pointer;
  backdrop-filter: blur(16px);
}

.join-popup-card {
  position: relative;
  width: min(560px, 100%);
  max-height: min(860px, calc(100vh - clamp(36px, 10vw, 96px)));
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: clamp(34px, 6vw, 58px);
  border: 1px solid rgba(234, 217, 197, 0.5);
  background:
    linear-gradient(145deg, rgba(255, 253, 249, 0.96), rgba(246, 238, 229, 0.94)),
    radial-gradient(circle at 78% 14%, rgba(234, 217, 197, 0.62), transparent 36%);
  box-shadow: 0 32px 90px rgba(32, 25, 21, 0.28);
  color: var(--ink);
  transform: translateY(18px) scale(0.98);
  transition: transform 320ms ease;
  scrollbar-width: thin;
  scrollbar-color: rgba(132, 93, 56, 0.42) rgba(255, 253, 249, 0.28);
}

.join-popup-card::-webkit-scrollbar {
  width: 8px;
}

.join-popup-card::-webkit-scrollbar-track {
  background: rgba(255, 253, 249, 0.35);
}

.join-popup-card::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(132, 93, 56, 0.42);
}

.join-popup.is-open .join-popup-card {
  transform: translateY(0) scale(1);
}

.join-popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 249, 0.84);
  color: var(--espresso);
  cursor: pointer;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
  line-height: 1;
}

.join-popup-card h2 {
  margin-bottom: 18px;
  padding-right: 42px;
  color: var(--espresso);
  font-size: clamp(3rem, 7vw, 5.2rem);
}

.join-popup-card p:not(.eyebrow) {
  max-width: 420px;
  margin-bottom: 30px;
  color: rgba(32, 25, 21, 0.68);
  font-size: 1rem;
  line-height: 1.7;
}

.join-auth-form {
  display: grid;
  gap: 14px;
}

.join-auth-form label {
  color: var(--bronze);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.join-auth-form input {
  min-height: 54px;
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(75, 56, 43, 0.3);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  outline: none;
}

.join-auth-form input::placeholder {
  color: rgba(32, 25, 21, 0.42);
}

.join-popup-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.join-popup-action,
.join-popup-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.join-popup-action {
  border: 1px solid var(--espresso);
  background: var(--espresso);
  color: var(--ivory);
}

.join-popup-secondary {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--espresso);
}

.join-popup-action:hover,
.join-popup-action:focus-visible,
.join-popup-secondary:hover,
.join-popup-secondary:focus-visible {
  background: var(--ivory);
  color: var(--espresso);
  outline: 0;
  transform: translateY(-2px);
}

.join-popup-action:disabled,
.join-popup-secondary:disabled {
  cursor: wait;
  opacity: 0.58;
  transform: none;
}

.join-popup-message {
  min-height: 22px;
  margin: 0;
  color: rgba(32, 25, 21, 0.66);
  font-size: 0.78rem;
  line-height: 1.55;
}

.join-popup-hint {
  margin: -2px 0 0 !important;
  color: rgba(32, 25, 21, 0.52) !important;
  font-size: 0.74rem !important;
  line-height: 1.5 !important;
}

.join-popup-reset {
  width: max-content;
  min-height: 30px;
  border: 0;
  background: transparent;
  color: var(--espresso);
  cursor: pointer;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 900;
  padding: 0;
  text-transform: uppercase;
}

.join-popup-message.is-success {
  color: #536b45;
}

.join-popup-message.is-error {
  color: #8d3f36;
}

@media (max-height: 760px) and (min-width: 721px) {
  .join-popup {
    padding: 24px;
  }

  .join-popup-card {
    max-height: calc(100vh - 48px);
    padding: 28px 34px 24px;
  }

  .join-popup-close {
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
  }

  .join-popup-card h2 {
    margin-bottom: 8px;
    font-size: clamp(2.5rem, 8vh, 3.8rem);
  }

  .join-popup-card p:not(.eyebrow) {
    margin-bottom: 16px;
    line-height: 1.45;
  }

  .join-auth-form {
    gap: 9px;
  }

  .join-auth-form input {
    min-height: 44px;
  }

  .join-popup-action,
  .join-popup-secondary {
    min-height: 46px;
  }
}

body.has-join-popup {
  overflow: hidden;
}

.proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: var(--pearl);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof article {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(28px, 5vw, 58px);
  border-right: 1px solid var(--line);
}

.proof article:last-child {
  border-right: 0;
}

.proof span {
  margin-bottom: auto;
  color: var(--bronze);
  font-size: 0.78rem;
  font-weight: 900;
}

.proof h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3vw, 3.7rem);
}

.proof p {
  max-width: 390px;
  margin-bottom: 0;
  color: rgba(32, 25, 21, 0.68);
  line-height: 1.7;
}

.craft {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  align-items: stretch;
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(70px, 10vw, 140px) clamp(22px, 6vw, 84px);
  background: #2a211d;
  color: var(--ivory);
}

.craft-media {
  min-height: 620px;
  overflow: hidden;
}

.craft-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
  filter: saturate(0.88) contrast(1.03);
}

.craft-copy {
  align-self: center;
}

.craft-copy h2 {
  color: var(--pearl);
}

.craft-copy p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 250, 244, 0.76);
  font-size: 1.08rem;
  line-height: 1.8;
}

.spec-list {
  margin: 42px 0 0;
  border-top: 1px solid rgba(255, 250, 244, 0.22);
}

.spec-list div {
  display: grid;
  grid-template-columns: 0.6fr 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 250, 244, 0.16);
}

.spec-list dt,
.spec-list dd {
  margin: 0;
}

.spec-list dt {
  color: var(--champagne);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.spec-list dd {
  color: rgba(255, 250, 244, 0.82);
}

.ritual {
  padding: clamp(70px, 10vw, 140px) clamp(22px, 6vw, 84px);
  background:
    linear-gradient(180deg, #fffaf4 0%, #f1e4d5 100%);
}

.ritual-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.ritual-inner .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.ritual-steps {
  display: grid;
  gap: 12px;
}

.ritual-steps article {
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.ritual-steps article:last-child {
  border-bottom: 1px solid var(--line);
}

.ritual-steps span {
  display: block;
  margin-bottom: 10px;
  color: var(--plum);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  font-weight: 700;
}

.ritual-steps p {
  margin: 0;
  color: rgba(32, 25, 21, 0.7);
  line-height: 1.65;
}

.care,
.faq {
  padding: clamp(70px, 10vw, 140px) clamp(22px, 6vw, 84px);
}

.section-heading.compact {
  margin-bottom: clamp(26px, 4vw, 54px);
}

.care {
  background: var(--ivory);
}

.care-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.care-grid article {
  min-height: 310px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.care-grid h3 {
  font-size: clamp(1.4rem, 1.8vw, 2rem);
}

.care-grid p {
  margin-bottom: 0;
  color: rgba(32, 25, 21, 0.68);
  line-height: 1.72;
}

.faq {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 6vw, 88px);
  background: #fbf3ea;
}

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

.faq details {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 74px;
  color: var(--espresso);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.2rem, 1.7vw, 1.75rem);
  font-weight: 700;
  cursor: pointer;
}

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

.faq summary::after {
  content: "+";
  color: var(--bronze);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 1.4rem;
}

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

.faq details p {
  max-width: 720px;
  margin-bottom: 24px;
  color: rgba(32, 25, 21, 0.68);
  line-height: 1.72;
}

.private-list {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.9fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: center;
  color: var(--ivory);
  background: var(--espresso);
}

.private-list h2 {
  margin-bottom: 0;
}

.signup-form label {
  display: block;
  margin-bottom: 14px;
  color: var(--champagne);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.input-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  border-bottom: 1px solid rgba(255, 250, 244, 0.54);
}

.input-row input,
.input-row button {
  min-height: 58px;
  border: 0;
  border-radius: 0;
  font: inherit;
}

.input-row input {
  width: 100%;
  min-width: 0;
  color: var(--ivory);
  background: transparent;
  outline: none;
}

.input-row input::placeholder {
  color: rgba(255, 250, 244, 0.46);
}

.input-row button {
  padding: 0 18px;
  color: var(--ink);
  background: var(--champagne);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.form-note {
  min-height: 24px;
  margin: 14px 0 0;
  color: rgba(255, 250, 244, 0.72);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(22px, 6vw, 84px);
  background: var(--ink);
  color: rgba(255, 250, 244, 0.7);
}

.site-footer span {
  color: var(--ivory);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.6rem;
  font-weight: 700;
}

.site-footer p {
  margin: 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.site-footer nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
}

body.reveal-ready [data-animate] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 760ms ease, transform 760ms ease;
}

body.reveal-ready [data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-clean {
  min-height: auto;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(28px, 6vw, 84px);
  align-items: end;
  background:
    radial-gradient(circle at 82% 12%, rgba(196, 154, 114, 0.2), transparent 28%),
    linear-gradient(135deg, #fff8ee 0%, #efe0cd 52%, #dcc3a8 100%);
  color: var(--espresso);
  padding-top: clamp(130px, 15vw, 190px);
  padding-bottom: clamp(72px, 11vw, 128px);
}

.hero-clean .hero-content {
  width: min(820px, 100%);
  padding-top: 0;
}

.hero-clean .eyebrow {
  color: var(--bronze);
}

.hero-clean h1 {
  max-width: 840px;
  color: var(--espresso);
  font-size: clamp(3.6rem, 9vw, 8.6rem);
  line-height: 0.88;
}

.hero-clean .hero-copy {
  max-width: 650px;
  color: rgba(32, 25, 21, 0.72);
}

.hero-clean .button.ghost {
  border-color: rgba(32, 25, 21, 0.28);
  color: var(--espresso);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.hero-trust li {
  border: 1px solid rgba(75, 56, 43, 0.16);
  background: rgba(255, 248, 238, 0.55);
  padding: 10px 12px;
  color: rgba(32, 25, 21, 0.68);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-shop-panel {
  position: relative;
  z-index: 1;
  padding: 26px;
  border: 1px solid rgba(75, 56, 43, 0.16);
  background: rgba(255, 248, 238, 0.72);
  box-shadow: 0 24px 60px rgba(75, 56, 43, 0.12);
}

.hero-shop-panel h2 {
  margin: 0 0 18px;
  color: var(--espresso);
  font-size: clamp(1.5rem, 2.5vw, 2.3rem);
}

.hero-shop-panel a {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 0;
  border-top: 1px solid rgba(75, 56, 43, 0.14);
  color: var(--espresso);
  text-decoration: none;
}

.hero-shop-panel span {
  font-weight: 800;
}

.collection-conversion {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(1720px, 100%);
  margin: 0 auto clamp(24px, 4vw, 48px);
  border: 1px solid var(--line);
  background: var(--line);
}

.collection-conversion article {
  min-height: 150px;
  padding: clamp(18px, 2.5vw, 28px);
  background: rgba(255, 248, 238, 0.78);
}

.collection-conversion span,
.collection-conversion h3 {
  color: var(--espresso);
}

.collection-conversion h3 {
  margin: 14px 0 8px;
  font-size: 1.08rem;
}

.collection-conversion p {
  margin: 0;
  color: rgba(32, 25, 21, 0.62);
  line-height: 1.6;
}

.collection-conversion a,
.product-detail-trust a,
.care-grid a {
  color: var(--espresso);
  font-weight: 900;
}

.product-visual {
  aspect-ratio: auto;
}

.product-visual.slippers .product-photo,
.product-visual.bonnet .product-photo,
.product-visual.pillow .product-photo {
  object-fit: cover;
}

.product-visual.bonnet .product-photo {
  object-position: center 42%;
}

.product-visual.slippers .product-photo {
  object-position: center center;
}

.product-visual.nightgown .product-photo {
  object-fit: cover;
  object-position: center top;
}

.product-detail-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.product-detail-trust a {
  display: grid;
  gap: 5px;
  border: 1px solid rgba(75, 56, 43, 0.16);
  padding: 13px 12px;
  background: rgba(255, 250, 244, 0.68);
  font-size: 0.68rem;
  text-decoration: none;
  text-transform: uppercase;
}

.product-detail-trust span {
  color: var(--espresso);
  font-weight: 950;
}

.product-detail-trust small {
  color: rgba(32, 25, 21, 0.56);
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.35;
  text-transform: none;
}

.trust-card {
  position: relative;
  display: grid;
  min-height: auto;
  align-content: center;
  gap: 18px;
  padding: clamp(26px, 5vw, 54px);
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(255, 248, 238, 0.92), rgba(235, 216, 192, 0.72));
}

.trust-card > img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.92) contrast(1.02);
}

.trust-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(255, 250, 244, 0.92), rgba(255, 250, 244, 0.72) 48%, rgba(255, 250, 244, 0.28)),
    linear-gradient(0deg, rgba(42, 33, 29, 0.18), transparent 42%);
}

.trust-card-copy {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.trust-card h3 {
  margin: 0;
  color: var(--espresso);
  font-size: clamp(1.7rem, 3vw, 3rem);
}

.trust-card ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
  color: rgba(32, 25, 21, 0.66);
  line-height: 1.6;
}

.name-popup {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 22px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 280ms ease;
}

.name-popup[hidden] {
  display: none;
}

.name-popup.is-open {
  opacity: 1;
  pointer-events: auto;
}

.name-popup-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(32, 25, 21, 0.42);
  backdrop-filter: blur(10px);
}

.name-popup-card {
  position: relative;
  width: min(430px, 100%);
  padding: clamp(26px, 5vw, 42px);
  background: var(--pearl);
  color: var(--espresso);
  box-shadow: 0 28px 80px rgba(32, 25, 21, 0.24);
  transform: translateY(14px);
  transition: transform 280ms ease;
}

.name-popup.is-open .name-popup-card {
  transform: translateY(0);
}

.name-popup-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(75, 56, 43, 0.2);
  background: transparent;
  color: var(--espresso);
  cursor: pointer;
  font-size: 1.2rem;
}

.profile-name-form {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.profile-name-form label {
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.profile-name-form input {
  min-height: 48px;
  border: 1px solid rgba(75, 56, 43, 0.18);
  background: #fffaf3;
  padding: 0 14px;
  color: var(--espresso);
  font: inherit;
}

.profile-name-message {
  min-height: 1.2em;
  margin: 0;
  color: rgba(32, 25, 21, 0.62);
  font-size: 0.78rem;
}

body.has-name-popup {
  overflow: hidden;
}

@keyframes heroDrift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.08) translate3d(-1.4%, 0.8%, 0);
  }
}

@keyframes scrollPulse {
  0% {
    transform: translate(-50%, 0);
    opacity: 0.95;
  }
  100% {
    transform: translate(-50%, 21px);
    opacity: 0;
  }
}

@keyframes satinSheen {
  0%,
  42% {
    transform: translateX(-52%) rotate(8deg);
  }
  78%,
  100% {
    transform: translateX(56%) rotate(8deg);
  }
}

@keyframes saleMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .section-heading,
  .craft,
  .ritual-inner,
  .private-list,
  .faq {
    grid-template-columns: 1fr;
  }

  .section-heading h2 {
    grid-column: auto;
  }

  .collection-heading-with-media {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 24px;
  }

  .collection-heading-media,
  .collection-heading-copy {
    grid-column: auto;
    grid-row: auto;
  }

  .collection-heading-copy {
    order: 1;
  }

  .collection-heading-copy .eyebrow {
    margin-bottom: 10px;
  }

  .collection-heading-with-media h2 {
    max-width: 780px;
  }

  .collection-heading-media {
    order: 2;
    min-height: 0;
  }

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

  .product-detail-shell {
    grid-template-columns: 1fr;
    max-height: none;
    min-height: 0;
    overflow: visible;
  }

  .product-detail-image-wrap {
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .proof,
  .care-grid {
    grid-template-columns: 1fr;
  }

  .reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .before-after-section {
    grid-template-columns: 1fr;
  }

  .comparison-disclaimer {
    grid-column: auto;
    margin-top: -8px;
  }

  .proof article {
    min-height: 260px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof article:last-child {
    border-bottom: 0;
  }

  .product-card,
  .product-card.featured {
    min-height: 0;
    transform: none;
  }

  .craft-media {
    min-height: 420px;
  }
}

@media (min-width: 621px) and (max-width: 920px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .site-header {
    gap: 10px;
    padding: 12px 14px;
  }

  .brand-word {
    gap: 7px;
    font-size: 1.55rem;
    transform: translateX(-4px);
  }

  .header-action {
    display: none;
  }

  .header-actions {
    gap: 8px;
  }

  .sale-marquee {
    top: 68px;
  }

  .sale-marquee span {
    padding: 8px 14px;
    font-size: 0.62rem;
  }

  .profile-icon {
    width: 28px;
    height: 28px;
  }

  .profile-dropdown {
    right: -64px;
  }

  .hero {
    min-height: 90vh;
    padding: 126px 18px 82px;
  }

  .hero-clean {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 118px 18px 60px;
  }

  .hero-clean h1 {
    font-size: clamp(3.4rem, 17vw, 5.2rem);
  }

  .hero-shop-panel {
    padding: 20px;
  }

  .hero-trust {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(32, 25, 21, 0.66), rgba(32, 25, 21, 0.28)),
      linear-gradient(0deg, rgba(32, 25, 21, 0.42), transparent 46%);
  }

  h1 {
    font-size: clamp(4.9rem, 24vw, 8rem);
  }

  h2 {
    font-size: clamp(2.2rem, 13vw, 3.8rem);
  }

  .button {
    width: 100%;
  }

  .intro-band p {
    text-align: left;
  }

  .collection-heading-with-media {
    grid-template-columns: 1fr;
  }

  .collection-heading-media,
  .collection-heading-copy {
    grid-column: auto;
    grid-row: auto;
  }

  .collection-heading-media {
    min-height: 240px;
  }

  .collection-heading-with-media h2 {
    font-size: clamp(2.65rem, 13vw, 4.2rem);
  }

  .collection-conversion {
    grid-template-columns: 1fr;
  }

  .collection-conversion article {
    min-height: auto;
  }

  .bundle-heading {
    grid-template-columns: 1fr;
  }

  .bundle-heading h3 {
    grid-column: auto;
  }

  .bundle-carousel {
    grid-auto-columns: minmax(276px, 86vw);
  }

  .bundle-card {
    grid-template-rows: 150px 1fr;
    min-height: 660px;
  }

  .bundle-card-body {
    padding: 22px;
  }

  .bundle-image img {
    max-height: 132px;
  }

  .before-after-section {
    padding: 56px 18px;
  }

  .before-after-copy h2 {
    font-size: clamp(3rem, 16vw, 5.4rem);
  }

  .comparison-slider {
    aspect-ratio: 16 / 9;
    min-height: 0;
  }

  .comparison-label {
    top: 12px;
    font-size: 0.6rem;
  }

  .comparison-label-left {
    left: 12px;
  }

  .comparison-label-right {
    right: 12px;
  }

  .comparison-handle {
    width: 64px;
    height: 64px;
  }

  .reviews-heading {
    grid-template-columns: 1fr;
  }

  .reviews-heading h3,
  .reviews-heading p:not(.eyebrow) {
    grid-column: auto;
  }

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

  .review-card {
    min-height: auto;
  }

  .product-card {
    min-height: auto;
  }

  .product-visual {
    width: 100%;
    min-height: 0;
  }

  .product-detail {
    padding: 0;
  }

  .product-detail-gallery {
    position: relative;
    top: auto;
    grid-template-columns: 1fr;
    padding: 14px;
    min-height: 0;
  }

  .product-detail-thumbnails {
    grid-auto-flow: column;
    grid-auto-columns: 70px;
    overflow-x: auto;
    overflow-y: hidden;
    max-height: none;
    order: 2;
  }

  .product-detail-thumb {
    width: 70px;
  }

  .product-detail-image-wrap {
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .product-detail-trust {
    display: grid;
    grid-template-columns: 1fr;
  }

  .product-detail-actions {
    grid-template-columns: 1fr;
  }

  .review-summary,
  .review-form-grid {
    grid-template-columns: 1fr;
  }

  .customer-gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .product-review {
    border-radius: 12px;
    padding: 18px;
  }

  .product-review-header {
    grid-template-columns: 46px minmax(0, 1fr);
  }

  .review-date {
    grid-column: 2;
    justify-self: start;
  }

  .review-card-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .review-helpful,
  .review-photo-count {
    width: 100%;
  }

  .join-popup {
    padding: 18px;
  }

  .join-popup-card {
    max-height: calc(100vh - 36px);
    padding: 34px 24px 28px;
  }

  .join-popup-card h2 {
    font-size: clamp(2.7rem, 15vw, 4.4rem);
  }

  .join-popup-action {
    width: 100%;
  }

  .join-popup-actions {
    grid-template-columns: 1fr;
  }

  .join-popup-secondary {
    width: 100%;
  }

  .product-detail-copy {
    padding: 30px 20px 112px;
  }

  .product-detail-title {
    padding-right: 42px;
    font-size: clamp(2.7rem, 12vw, 4rem);
  }

  body.has-product-detail .mobile-sticky-cart {
    display: flex;
  }

  .input-row {
    grid-template-columns: 1fr;
    gap: 12px;
    border-bottom: 0;
  }

  .input-row input {
    border-bottom: 1px solid rgba(255, 250, 244, 0.54);
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
