﻿:root {
  --ink: #332a31;
  --muted: #756a70;
  --paper: #fffdf9;
  --white: #ffffff;
  --pink: #d94d82;
  --pink-dark: #b93b6d;
  --violet: #76649a;
  --violet-dark: #54466f;
  --beige: #e8d9c9;
  --beige-soft: #f6eee6;
  --line: #e8ded5;
  --soft-pink: #faedf2;
  --display: "Cormorant Garamond", Georgia, serif;
  --body: "DM Sans", Arial, sans-serif;
  --header-height: 84px;
  --brand-logo: url("assets/logo.png");
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

body.no-scroll {
  overflow: hidden;
}

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
}

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

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

.sr-only {
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.skip-link {
  background: var(--ink);
  color: var(--white);
  left: 1rem;
  padding: 0.65rem 1rem;
  position: fixed;
  top: -5rem;
  z-index: 100;
}

.skip-link:focus {
  top: 1rem;
}

.announcement {
  align-items: center;
  background: var(--ink);
  color: var(--white);
  display: flex;
  font-size: 0.67rem;
  font-weight: 700;
  gap: 1rem;
  justify-content: center;
  letter-spacing: 0.09em;
  min-height: 32px;
  overflow: hidden;
  padding: 0.4rem 1rem;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-header {
  align-items: center;
  background: rgba(248, 246, 245, 0.96);
  border-bottom: 1px solid rgba(23, 21, 26, 0.1);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  height: var(--header-height);
  padding: 0 4vw;
  position: sticky;
  top: 0;
  z-index: 30;
}

.brand {
  align-items: center;
  display: flex;
  font-family: var(--display);
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  width: fit-content;
}

.brand img {
  border-radius: 50%;
  height: 54px;
  margin-right: 0.55rem;
  object-fit: cover;
  width: 54px;
}

.main-nav {
  align-items: center;
  display: flex;
  font-size: 0.72rem;
  font-weight: 700;
  gap: 2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-nav a,
.text-button {
  position: relative;
}

.main-nav a::after,
.text-button::after {
  background: var(--pink);
  bottom: -0.35rem;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
  width: 100%;
}

.main-nav a:hover::after,
.text-button:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  align-items: center;
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}

.text-button,
.site-footer button {
  background: none;
  border: 0;
  color: inherit;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0;
  text-transform: uppercase;
}

.cart-button {
  background: var(--pink);
  border: 0;
  border-radius: 999px;
  color: var(--white);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  padding: 0.75rem 0.85rem 0.75rem 1.1rem;
  text-transform: uppercase;
  transition: background 180ms ease, transform 180ms ease;
}

.cart-button:hover {
  background: var(--pink-dark);
  transform: translateY(-2px);
}

.cart-button span {
  align-items: center;
  background: var(--white);
  border-radius: 50%;
  color: var(--pink);
  display: inline-flex;
  height: 24px;
  justify-content: center;
  margin-left: 0.55rem;
  width: 24px;
}

.icon-button {
  align-items: center;
  background: transparent;
  border: 0;
  color: inherit;
  display: inline-flex;
  justify-content: center;
}

.mobile-menu-button {
  display: none;
}

.hero {
  color: var(--white);
  min-height: calc(100svh - var(--header-height) - 32px);
  overflow: hidden;
  position: relative;
}

.hero-carousel {
  height: 100%;
  inset: 0;
  overflow: hidden;
  position: absolute;
  transform: scale(1.04);
  width: 100%;
}

.hero-slide {
  animation: heroCarousel 25s infinite;
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: 60% 49%;
  opacity: 0;
  position: absolute;
  transform: scale(1.035);
  width: 100%;
}

.hero-slide:nth-child(2) {
  animation-delay: 5s;
}

.hero-slide:nth-child(3) {
  animation-delay: 10s;
}

.hero-slide:nth-child(4) {
  animation-delay: 15s;
}

.hero-slide:nth-child(5) {
  animation-delay: 20s;
}

@keyframes heroCarousel {
  0% {
    opacity: 0;
    transform: scale(1.075);
  }

  4%,
  20% {
    opacity: 1;
  }

  24%,
  100% {
    opacity: 0;
    transform: scale(1.02);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    animation: none;
    opacity: 0;
    transform: none;
  }

  .hero-slide:first-child {
    opacity: 1;
  }
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(23, 14, 26, 0.95) 0%, rgba(63, 31, 67, 0.78) 35%, rgba(33, 18, 34, 0.18) 68%),
    linear-gradient(0deg, rgba(23, 14, 26, 0.35), transparent 50%);
  inset: 0;
  position: absolute;
}

.hero-content {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 750px;
  min-height: calc(100svh - var(--header-height) - 32px);
  padding: 8vh 6vw;
  position: relative;
  z-index: 2;
}

.eyebrow {
  color: var(--violet);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  margin: 0 0 0.8rem;
  text-transform: uppercase;
}

.eyebrow.light {
  color: #f5a4c8;
}

.hero h1,
.section-heading h2,
.wholesale-copy h2,
.story-copy h2,
.final-cta h2,
.product-dialog-info h2,
.drawer-header h2,
.checkout-dialog h2 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: 0.015em;
  line-height: 0.92;
  margin: 0;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(4.5rem, 9.5vw, 9.5rem);
}

.hero h1 em {
  color: #f66ca7;
  font-style: normal;
}

.hero-copy {
  font-size: clamp(0.95rem, 1.4vw, 1.15rem);
  margin: 1.6rem 0 2rem;
  max-width: 510px;
}

.hero-actions,
.wholesale-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  font-size: 0.72rem;
  font-weight: 800;
  justify-content: center;
  letter-spacing: 0.09em;
  min-height: 48px;
  padding: 0.8rem 1.4rem;
  text-align: center;
  text-transform: uppercase;
  transition: background 180ms ease, border 180ms ease, color 180ms ease, transform 180ms ease;
}

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

.button.primary {
  background: var(--pink);
  color: var(--white);
}

.button.primary:hover {
  background: var(--pink-dark);
}

.button.light {
  background: var(--white);
  color: var(--pink);
}

.button.ghost-light {
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--white);
}

.button.ghost-light:hover {
  background: rgba(255, 255, 255, 0.12);
}

.button.full {
  width: 100%;
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
  transform: none;
}

.hero-note {
  align-items: center;
  bottom: 2rem;
  display: flex;
  gap: 0.8rem;
  position: absolute;
  right: 4vw;
  z-index: 2;
}

.hero-note span {
  align-items: center;
  border: 1px dashed rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  display: flex;
  font-family: var(--display);
  font-size: 2rem;
  height: 62px;
  justify-content: center;
  width: 62px;
}

.hero-note p {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  line-height: 1.5;
  margin: 0;
  text-transform: uppercase;
}

.benefit-strip {
  background: var(--pink);
  color: var(--white);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
}

.benefit-strip p {
  border-right: 1px solid rgba(255, 255, 255, 0.24);
  font-size: 0.71rem;
  letter-spacing: 0.08em;
  margin: 0;
  padding: 1.1rem;
  text-align: center;
  text-transform: uppercase;
}

.shop-section,
.faq-section {
  padding: 8rem 5vw;
}

.section-heading {
  align-items: end;
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr minmax(220px, 340px);
  margin-bottom: 3.5rem;
}

.section-heading h2,
.story-copy h2 {
  font-size: clamp(3.7rem, 6.4vw, 6.8rem);
}

.section-heading > p,
.story-copy > p,
.wholesale-copy > p {
  color: var(--muted);
  margin: 0;
}

.shop-controls {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  padding-bottom: 1rem;
}

.filter-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.filter {
  background: transparent;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  padding: 0.7rem 1rem;
  text-transform: uppercase;
}

.filter.active {
  background: var(--ink);
  color: var(--white);
}

.search-box {
  align-items: center;
  border-bottom: 1px solid var(--ink);
  display: flex;
  gap: 0.6rem;
  min-width: 220px;
}

.search-box input {
  background: transparent;
  border: 0;
  color: var(--ink);
  outline: 0;
  padding: 0.65rem 0;
  width: 100%;
}

.product-grid {
  display: grid;
  gap: 4rem 1.5rem;
  grid-template-columns: repeat(4, 1fr);
}

.product-card {
  min-width: 0;
}

.product-media {
  background: #efebeb;
  border: 0;
  display: block;
  overflow: hidden;
  padding: 0;
  position: relative;
  width: 100%;
}

.product-media::after {
  background: linear-gradient(180deg, transparent 65%, rgba(23, 21, 26, 0.28));
  content: "";
  inset: 0;
  opacity: 0;
  position: absolute;
  transition: opacity 220ms ease;
}

.product-media img {
  aspect-ratio: 4 / 5;
  height: auto;
  object-fit: cover;
  transition: transform 450ms cubic-bezier(0.2, 0.75, 0.3, 1);
  width: 100%;
}

.product-media:hover img {
  transform: scale(1.045);
}

.product-media:hover::after {
  opacity: 1;
}

.product-badge {
  background: var(--white);
  border-radius: 999px;
  color: var(--pink);
  font-size: 0.58rem;
  font-weight: 800;
  left: 0.8rem;
  letter-spacing: 0.08em;
  padding: 0.5rem 0.65rem;
  position: absolute;
  text-transform: uppercase;
  top: 0.8rem;
  z-index: 2;
}

.quick-add {
  background: var(--white);
  border: 0;
  border-radius: 999px;
  bottom: 0.75rem;
  color: var(--ink);
  font-size: 0.64rem;
  font-weight: 800;
  left: 50%;
  letter-spacing: 0.08em;
  opacity: 0;
  padding: 0.75rem 1rem;
  position: absolute;
  text-transform: uppercase;
  transform: translate(-50%, 15px);
  transition: opacity 180ms ease, transform 180ms ease;
  white-space: nowrap;
  z-index: 2;
}

.product-media:hover .quick-add,
.quick-add:focus-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.product-info {
  display: grid;
  gap: 0.25rem 1rem;
  grid-template-columns: 1fr auto;
  padding-top: 0.85rem;
}

.product-info h3 {
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  margin: 0;
  text-transform: uppercase;
}

.product-info p {
  color: var(--muted);
  font-size: 0.72rem;
  grid-column: 1 / 2;
  margin: 0;
}

.product-info strong {
  color: var(--violet);
  font-size: 0.7rem;
  font-weight: 700;
  grid-column: 2;
  grid-row: 1 / 3;
  text-align: right;
}

.empty-state {
  color: var(--muted);
  padding: 3rem 0;
  text-align: center;
}

.wholesale-section {
  align-items: end;
  background: var(--violet-dark);
  color: var(--white);
  display: grid;
  gap: 4rem;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.6fr);
  overflow: hidden;
  padding: 7rem 6vw;
  position: relative;
}

.wholesale-section::before {
  border: 2px dashed rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  content: "";
  height: 460px;
  position: absolute;
  right: -160px;
  top: -220px;
  width: 460px;
}

.wholesale-copy {
  max-width: 790px;
  position: relative;
  z-index: 2;
}

.wholesale-copy h2 {
  font-size: clamp(4.4rem, 8vw, 8.5rem);
  margin-bottom: 1.5rem;
}

.wholesale-copy > p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 2rem;
  max-width: 590px;
}

.wholesale-number {
  align-items: center;
  display: flex;
  flex-direction: column;
  position: relative;
  text-align: center;
  z-index: 2;
}

.wholesale-number strong {
  color: #f76fab;
  font-family: var(--display);
  font-size: clamp(10rem, 20vw, 20rem);
  font-weight: 400;
  line-height: 0.72;
}

.wholesale-number span {
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-top: 1.4rem;
  text-transform: uppercase;
}

.story-section {
  align-items: center;
  display: grid;
  gap: 8vw;
  grid-template-columns: minmax(300px, 0.85fr) minmax(300px, 1.15fr);
  padding: 9rem 8vw;
}

.story-image-wrap {
  position: relative;
}

.story-image-wrap img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  width: 100%;
}

.stitch-circle {
  border: 3px dashed var(--pink);
  border-radius: 50%;
  bottom: -2rem;
  height: 120px;
  position: absolute;
  right: -2rem;
  width: 120px;
}

.story-copy {
  max-width: 670px;
}

.story-copy > p {
  margin: 2rem 0;
  max-width: 590px;
}

.text-link {
  border-bottom: 1px solid var(--ink);
  display: inline-flex;
  font-size: 0.72rem;
  font-weight: 800;
  gap: 1rem;
  letter-spacing: 0.09em;
  padding-bottom: 0.4rem;
  text-transform: uppercase;
}

.text-link span {
  color: var(--pink);
}

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

.faq-list {
  border-top: 1px solid var(--line);
  margin-left: auto;
  max-width: 1000px;
}

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

.faq-list summary {
  align-items: center;
  cursor: pointer;
  display: flex;
  font-size: 0.84rem;
  font-weight: 700;
  justify-content: space-between;
  list-style: none;
  padding: 1.5rem 0;
  text-transform: uppercase;
}

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

.faq-list summary span {
  color: var(--pink);
  font-family: var(--display);
  font-size: 1.8rem;
  font-weight: 400;
  transition: transform 180ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  color: var(--muted);
  margin: -0.4rem 0 1.5rem;
  max-width: 680px;
}

.final-cta {
  align-items: center;
  background: var(--pink);
  color: var(--white);
  display: flex;
  flex-direction: column;
  padding: 8rem 1.5rem;
  text-align: center;
}

.final-cta h2 {
  font-size: clamp(4.5rem, 10vw, 10rem);
  margin-bottom: 2rem;
}

.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.76);
  display: grid;
  gap: 3rem;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  padding: 5rem 5vw 2rem;
}

.footer-brand img {
  border-radius: 50%;
  height: 110px;
  margin-bottom: 1.2rem;
  object-fit: cover;
  width: 110px;
}

.footer-brand p {
  max-width: 260px;
}

.site-footer h3 {
  color: var(--white);
  font-size: 0.7rem;
  letter-spacing: 0.13em;
  margin: 0 0 1.2rem;
  text-transform: uppercase;
}

.site-footer a,
.site-footer button {
  color: rgba(255, 255, 255, 0.68);
  display: block;
  font-size: 0.73rem;
  font-weight: 500;
  letter-spacing: 0;
  margin-bottom: 0.75rem;
  text-align: left;
  text-transform: none;
}

.site-footer a:hover,
.site-footer button:hover {
  color: #f46ca6;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.66rem;
  grid-column: 1 / -1;
  margin: 2rem 0 0;
  padding-top: 1.5rem;
}

.drawer-backdrop {
  background: rgba(23, 21, 26, 0.56);
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  transition: opacity 220ms ease;
  z-index: 40;
}

.drawer-backdrop.visible {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  background: var(--paper);
  display: flex;
  flex-direction: column;
  height: 100%;
  max-width: 500px;
  padding: 1.5rem;
  position: fixed;
  right: 0;
  top: 0;
  transform: translateX(105%);
  transition: transform 280ms cubic-bezier(0.2, 0.75, 0.3, 1);
  width: min(100%, 500px);
  z-index: 50;
}

.cart-drawer.open {
  transform: translateX(0);
}

.drawer-header {
  align-items: flex-start;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  padding-bottom: 1rem;
}

.drawer-header h2,
.checkout-dialog h2 {
  font-size: 3.6rem;
}

.close-button {
  font-size: 2rem;
  height: 42px;
  width: 42px;
}

.purchase-mode {
  background: #ebe6e8;
  border-radius: 999px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 1rem 0;
  padding: 0.25rem;
}

.purchase-mode button {
  background: transparent;
  border: 0;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 0.75rem;
  text-transform: uppercase;
}

.purchase-mode button.active {
  background: var(--white);
  color: var(--ink);
}

.wholesale-progress {
  margin-bottom: 1rem;
}

.wholesale-progress > div:first-child {
  display: flex;
  font-size: 0.66rem;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.progress-track {
  background: #e5dde1;
  border-radius: 999px;
  height: 6px;
  overflow: hidden;
}

.progress-track span {
  background: var(--pink);
  display: block;
  height: 100%;
  transition: width 250ms ease;
  width: 0;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
}

.cart-item {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 0.8rem;
  grid-template-columns: 82px 1fr auto;
  padding: 1rem 0;
}

.cart-item img {
  aspect-ratio: 1;
  object-fit: cover;
  width: 82px;
}

.cart-item h3 {
  font-size: 0.72rem;
  margin: 0 0 0.2rem;
  text-transform: uppercase;
}

.cart-item p {
  color: var(--muted);
  font-size: 0.66rem;
  margin: 0 0 0.6rem;
}

.cart-item-controls {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.cart-size-select {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  display: inline-flex;
  gap: 0.35rem;
  padding: 0.25rem 0.45rem;
}

.cart-size-select span {
  color: var(--muted);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cart-size-select select {
  background: transparent;
  border: 0;
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 800;
  outline: 0;
}

.quantity-control {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  display: inline-flex;
  overflow: hidden;
}

.quantity-control button {
  background: transparent;
  border: 0;
  height: 28px;
  width: 28px;
}

.quantity-control input {
  appearance: textfield;
  background: transparent;
  border: 0;
  font-size: 0.67rem;
  min-width: 26px;
  outline: 0;
  text-align: center;
  width: 42px;
}

.quantity-control input::-webkit-inner-spin-button,
.quantity-control input::-webkit-outer-spin-button {
  appearance: none;
  margin: 0;
}

.remove-item {
  background: transparent;
  border: 0;
  color: var(--muted);
  font-size: 1.1rem;
  padding: 0;
}

.cart-empty {
  align-items: center;
  color: var(--muted);
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

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

.cart-summary > div {
  display: flex;
  justify-content: space-between;
}

.cart-summary p {
  color: var(--muted);
  font-size: 0.66rem;
  margin: 0.6rem 0 1rem;
}

dialog {
  border: 0;
  box-shadow: 0 24px 70px rgba(23, 21, 26, 0.24);
  color: var(--ink);
  margin: auto;
  max-height: min(92svh, 900px);
  max-width: 1160px;
  overflow: auto;
  padding: 0;
  width: calc(100% - 2rem);
}

dialog::backdrop {
  background: rgba(23, 21, 26, 0.68);
}

.dialog-close {
  color: var(--ink);
  position: absolute;
  right: 0.8rem;
  top: 0.8rem;
  z-index: 3;
}

.product-dialog-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
}

.product-gallery {
  background: #efe9eb;
  padding: 1.5rem;
}

.product-gallery > img {
  aspect-ratio: 4 / 5;
  height: min(67svh, 650px);
  object-fit: contain;
  width: 100%;
}

.gallery-thumbnails {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.8rem;
  overflow-x: auto;
}

.gallery-thumbnails button {
  background: transparent;
  border: 2px solid transparent;
  padding: 0;
}

.gallery-thumbnails button.active {
  border-color: var(--pink);
}

.gallery-thumbnails img {
  height: 62px;
  object-fit: cover;
  width: 62px;
}

.product-dialog-info {
  align-self: center;
  padding: 4rem;
}

.product-dialog-info h2 {
  font-size: clamp(3.6rem, 6vw, 6rem);
}

.dialog-price {
  color: var(--violet);
  font-weight: 800;
  margin: 1rem 0 1.6rem;
}

.product-dialog-info > p:not(.eyebrow, .dialog-price) {
  color: var(--muted);
  margin-bottom: 1.8rem;
}

.product-dialog-info label,
.checkout-dialog label {
  display: block;
  margin-bottom: 1rem;
}

.product-dialog-info label span,
.checkout-dialog label > span,
.checkout-dialog legend {
  display: block;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  margin-bottom: 0.35rem;
  text-transform: uppercase;
}

.product-dialog-info select,
.product-dialog-info input,
.checkout-dialog input {
  background: var(--white);
  border: 1px solid var(--line);
  min-height: 46px;
  padding: 0.7rem;
  width: 100%;
}

.product-notes {
  color: var(--muted);
  font-size: 0.66rem;
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
}

.product-notes li {
  border-bottom: 1px solid var(--line);
  padding: 0.6rem 0;
}

.checkout-dialog {
  padding: 3rem;
}

.checkout-grid {
  display: grid;
  gap: 3rem;
  grid-template-columns: minmax(0, 1fr) 320px;
}

.checkout-intro {
  color: var(--muted);
  max-width: 660px;
}

.form-grid {
  display: grid;
  gap: 0 1rem;
  grid-template-columns: 1fr 1fr;
}

.form-grid .wide {
  grid-column: 1 / -1;
}

.checkout-dialog fieldset {
  border: 0;
  margin: 1rem 0 1.5rem;
  padding: 0;
}

.payment-options {
  display: grid;
  gap: 0.5rem;
  grid-template-columns: repeat(4, 1fr);
}

.payment-options label {
  margin: 0;
  position: relative;
}

.payment-options input {
  clip: rect(0, 0, 0, 0);
  position: absolute;
}

.payment-options span {
  align-items: center;
  border: 1px solid var(--line);
  display: flex !important;
  justify-content: center;
  margin: 0 !important;
  min-height: 50px;
  padding: 0.6rem;
}

.payment-options input:checked + span {
  border-color: var(--pink);
  color: var(--pink);
}

.payment-note {
  color: var(--muted);
  font-size: 0.68rem;
  margin: 0.8rem 0 0;
}

.terms-check {
  align-items: flex-start;
  display: flex !important;
  font-size: 0.66rem;
  gap: 0.6rem;
  line-height: 1.5;
}

.terms-check input {
  min-height: auto !important;
  margin-top: 0.2rem;
  width: auto !important;
}

.terms-check span {
  display: inline !important;
  font-size: inherit !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
  margin: 0 !important;
  text-transform: none !important;
}

.terms-check a {
  color: var(--pink);
  text-decoration: underline;
}

.checkout-summary {
  background: var(--paper);
  padding: 1.5rem;
}

.checkout-summary h3 {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  margin: 0 0 1rem;
  text-transform: uppercase;
}

.checkout-line {
  border-bottom: 1px solid var(--line);
  display: flex;
  font-size: 0.7rem;
  gap: 0.6rem;
  justify-content: space-between;
  padding: 0.7rem 0;
}

.checkout-total {
  display: flex;
  font-size: 0.76rem;
  justify-content: space-between;
  padding-top: 1rem;
}

.payment-main {
  margin: 0 auto;
  max-width: 1320px;
  padding: 5rem 5vw 8rem;
}

.payment-hero {
  align-items: end;
  border-bottom: 1px solid var(--beige);
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1fr) auto;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
}

.payment-hero h1 {
  font-family: var(--display);
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.88;
  margin: 0;
}

.payment-hero p {
  color: var(--muted);
  margin: 1rem 0 0;
}

.payment-total-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--beige);
  border-radius: 28px;
  box-shadow: 0 18px 45px rgba(82, 61, 72, 0.08);
  min-width: min(280px, 100%);
  padding: 1.3rem;
  text-align: right;
}

.payment-total-card span {
  color: var(--muted);
  display: block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.payment-total-card strong {
  color: var(--pink);
  display: block;
  font-family: var(--display);
  font-size: 3rem;
  line-height: 1;
}

.payment-layout {
  align-items: start;
  display: grid;
  gap: 1.4rem;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
}

.payment-summary,
.payment-panel {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--beige);
  border-radius: 30px;
  box-shadow: 0 18px 45px rgba(82, 61, 72, 0.08);
  padding: clamp(1rem, 2.2vw, 1.6rem);
}

.payment-summary-head {
  align-items: flex-start;
  border-bottom: 1px solid var(--beige);
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
}

.payment-summary-head h2,
.payment-panel h2 {
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.9;
  margin: 0;
}

.payment-summary-head > span {
  background: var(--soft-pink);
  border-radius: 999px;
  color: var(--pink);
  font-size: 0.68rem;
  font-weight: 800;
  padding: 0.5rem 0.75rem;
}

.payment-customer {
  color: var(--muted);
  display: grid;
  gap: 0.2rem;
  margin-bottom: 1rem;
}

.payment-customer strong {
  color: var(--ink);
}

.payment-items {
  display: grid;
  gap: 0.75rem;
}

.payment-item {
  align-items: center;
  border-top: 1px solid var(--beige);
  display: grid;
  gap: 0.9rem;
  grid-template-columns: 82px minmax(0, 1fr) auto;
  padding-top: 0.75rem;
}

.payment-item:first-child {
  border-top: 0;
}

.payment-item img {
  aspect-ratio: 1;
  border: 1px solid var(--beige);
  border-radius: 20px;
  object-fit: cover;
  width: 82px;
}

.payment-item h3 {
  font-size: 0.82rem;
  margin: 0 0 0.2rem;
  text-transform: uppercase;
}

.payment-item p,
.payment-item span,
.payment-panel p {
  color: var(--muted);
  margin: 0;
}

.payment-item strong {
  color: var(--violet);
  white-space: nowrap;
}

.payment-method-grid {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.2rem;
}

.payment-method-button {
  align-items: center;
  background: var(--paper);
  border: 1px solid var(--beige);
  border-radius: 18px;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  min-height: 58px;
  padding: 0.85rem 1rem;
  text-align: left;
  transition: border 180ms ease, transform 180ms ease;
}

.payment-method-button:hover {
  border-color: var(--pink);
  transform: translateY(-2px);
}

.payment-method-button span {
  font-weight: 800;
}

.payment-method-button small {
  color: var(--pink);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.payment-message {
  background: var(--beige-soft);
  border: 1px solid var(--beige);
  border-radius: 18px;
  color: var(--muted);
  font-size: 0.76rem;
  margin-top: 1rem;
  padding: 0.9rem;
}

.payment-message.success {
  background: #edf8ef;
  border-color: #aed9b9;
  color: #225f32;
}

.payment-message.warning {
  background: #fff6e8;
  border-color: #e8c784;
  color: #82590d;
}

.payment-empty {
  color: var(--muted);
  padding: 2rem;
  text-align: center;
}

.toast {
  background: var(--ink);
  bottom: 1.4rem;
  color: var(--white);
  font-size: 0.72rem;
  left: 50%;
  opacity: 0;
  padding: 0.9rem 1.2rem;
  pointer-events: none;
  position: fixed;
  transform: translate(-50%, 15px);
  transition: opacity 180ms ease, transform 180ms ease;
  z-index: 80;
}

.toast.visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.policy-main {
  margin: 0 auto;
  max-width: 1120px;
  padding: 6rem 5vw 9rem;
}

.policy-back {
  justify-self: end;
}

.policy-hero {
  border-bottom: 1px solid var(--line);
  margin-bottom: 4rem;
  padding-bottom: 3rem;
}

.policy-hero h1 {
  font-family: var(--display);
  font-size: clamp(4.5rem, 10vw, 9rem);
  font-weight: 400;
  line-height: 0.9;
  margin: 0;
  text-transform: uppercase;
}

.policy-hero p {
  color: var(--muted);
  max-width: 680px;
}

.policy-notice {
  background: #fff5de;
  border-left: 4px solid #e8ae2e;
  font-size: 0.75rem;
  margin-top: 2rem;
  padding: 1rem 1.2rem;
}

.policy-section {
  display: grid;
  gap: 2rem;
  grid-template-columns: 240px 1fr;
  padding: 3rem 0;
}

.policy-section + .policy-section {
  border-top: 1px solid var(--line);
}

.policy-section h2 {
  font-family: var(--display);
  font-size: 3rem;
  font-weight: 400;
  line-height: 1;
  margin: 0;
  text-transform: uppercase;
}

.policy-section p,
.policy-section li {
  color: var(--muted);
}

.policy-section ul {
  margin: 0;
  padding-left: 1.2rem;
}

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

  .main-nav {
    background: var(--paper);
    border-top: 1px solid var(--line);
    display: none;
    flex-direction: column;
    gap: 1.25rem;
    left: 0;
    padding: 2rem;
    position: absolute;
    top: 100%;
    width: 100%;
  }

  .main-nav.open {
    display: flex;
  }

  .mobile-menu-button {
    display: flex;
    flex-direction: column;
    gap: 6px;
    height: 40px;
    margin-left: auto;
    width: 40px;
  }

  .mobile-menu-button span {
    background: var(--ink);
    display: block;
    height: 2px;
    width: 22px;
  }

  .header-actions {
    display: none;
  }

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

  .story-section {
    gap: 5vw;
    padding-inline: 5vw;
  }

  .product-dialog-info {
    padding: 2.5rem;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 70px;
  }

  .announcement {
    justify-content: flex-start;
  }

  .site-header {
    padding: 0 1rem;
  }

  .brand img {
    height: 46px;
    width: 46px;
  }

  .hero {
    min-height: calc(100svh - var(--header-height) - 32px);
  }

  .hero-slide {
    object-position: 56% center;
  }

  .hero-scrim {
    background: linear-gradient(0deg, rgba(23, 14, 26, 0.94) 0%, rgba(32, 18, 34, 0.62) 58%, rgba(23, 14, 26, 0.12));
  }

  .hero-content {
    justify-content: flex-end;
    min-height: calc(100svh - var(--header-height) - 32px);
    padding: 4rem 1.2rem 6rem;
  }

  .hero h1 {
    font-size: clamp(4.3rem, 22vw, 6.5rem);
  }

  .hero-note {
    bottom: 1rem;
    display: none;
  }

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

  .benefit-strip p:nth-child(2) {
    border-right: 0;
  }

  .shop-section,
  .faq-section {
    padding: 5.5rem 1rem;
  }

  .section-heading {
    align-items: start;
    gap: 1.3rem;
    grid-template-columns: 1fr;
    margin-bottom: 2.4rem;
  }

  .section-heading h2,
  .story-copy h2 {
    font-size: clamp(3.5rem, 17vw, 5rem);
  }

  .shop-controls {
    align-items: stretch;
    flex-direction: column;
    gap: 1rem;
  }

  .search-box {
    min-width: 0;
  }

  .product-grid {
    gap: 2.6rem 0.75rem;
    grid-template-columns: repeat(2, 1fr);
  }

  .product-info {
    display: block;
  }

  .product-info strong {
    display: block;
    margin-top: 0.3rem;
    text-align: left;
  }

  .quick-add {
    opacity: 1;
    transform: translate(-50%, 0);
  }

  .wholesale-section {
    gap: 3rem;
    grid-template-columns: 1fr;
    padding: 5.5rem 1.2rem;
  }

  .wholesale-copy h2 {
    font-size: clamp(4rem, 20vw, 6.5rem);
  }

  .wholesale-number strong {
    font-size: 12rem;
  }

  .story-section {
    gap: 5rem;
    grid-template-columns: 1fr;
    padding: 6rem 1rem;
  }

  .story-image-wrap {
    margin-right: 1rem;
  }

  .stitch-circle {
    right: -1rem;
  }

  .final-cta {
    padding: 6rem 1rem;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
    padding: 4rem 1rem 2rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

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

  .product-gallery {
    padding: 1rem;
  }

  .product-gallery > img {
    height: min(49svh, 500px);
  }

  .product-dialog-info {
    padding: 2rem 1.2rem;
  }

  .checkout-dialog {
    padding: 2rem 1rem;
  }

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

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

  .form-grid .wide {
    grid-column: auto;
  }

  .payment-options {
    grid-template-columns: 1fr 1fr;
  }

  .payment-main {
    padding: 3.5rem 1rem 6rem;
  }

  .payment-hero,
  .payment-layout,
  .payment-summary-head,
  .payment-item {
    grid-template-columns: 1fr;
  }

  .payment-total-card {
    text-align: left;
  }

  .payment-item strong {
    white-space: normal;
  }

  .policy-main {
    padding: 4rem 1rem 6rem;
  }

  .policy-section {
    gap: 1rem;
    grid-template-columns: 1fr;
  }
}

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

/* Boutique visual refresh */
body {
  background-color: var(--paper);
  background-image:
    linear-gradient(rgba(218, 199, 179, 0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(218, 199, 179, 0.2) 1px, transparent 1px);
  background-size: 112px 112px;
}

body::before,
body::after {
  content: "";
  inset: 0;
  pointer-events: none;
  position: fixed;
  z-index: 0;
}

body::before {
  background: var(--brand-logo) center 56% / min(54vw, 620px) no-repeat;
  mix-blend-mode: multiply;
  opacity: 0.058;
}

body::after {
  background-image:
    url("data:image/svg+xml,%3Csvg width='42' height='42' viewBox='0 0 42 42' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21 34s-13-7.6-13-17.1c0-4.3 3.1-7.2 6.8-7.2 2.4 0 4.7 1.4 6.2 3.8 1.5-2.4 3.8-3.8 6.2-3.8 3.7 0 6.8 2.9 6.8 7.2C34 26.4 21 34 21 34Z' fill='none' stroke='%23d94d82' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg width='54' height='54' viewBox='0 0 54 54' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%2376649a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M27 30c-9-7-14-5-14-1.5 0 4.8 9.7 3.4 14 1.5Z'/%3E%3Cpath d='M27 30c-1.4-11.2 2.2-14.8 5.1-12.9 4 2.7-2 10.4-5.1 12.9Z'/%3E%3Cpath d='M27 30c8.4-7.7 13.7-6.1 14-2.6.4 4.8-9.4 4.2-14 2.6Z'/%3E%3Cpath d='M27 30c1.3 10-2.1 13.8-5.2 12.1-4.2-2.3 1.1-9.9 5.2-12.1Z'/%3E%3Ccircle cx='27' cy='30' r='2.6' fill='%23d94d82' stroke='none'/%3E%3C/g%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg width='72' height='92' viewBox='0 0 72 92' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23332a31' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M34 84C32 57 42 32 58 12'/%3E%3Cpath d='M42 53c12-10 22-8 20-1.4-1.5 5.3-11.4 7.4-20 1.4Z' fill='%23faedf2'/%3E%3Cpath d='M34 66c-13-8.8-22-6.2-19.4.4 2 5 12.4 5.8 19.4-.4Z' fill='%23faedf2'/%3E%3Cpath d='M49 34c9-7 16-5.2 14.2.2-1.4 4.3-8.8 5.5-14.2-.2Z' fill='%23f6eee6'/%3E%3Cpath d='M38 46c-9.4-6.4-15.5-4.8-13.8.4 1.3 4 8.7 4.9 13.8-.4Z' fill='%23f6eee6'/%3E%3Ccircle cx='55' cy='19' r='2.6' fill='%23d94d82' stroke='none'/%3E%3Ccircle cx='61' cy='24' r='2.1' fill='%2376649a' stroke='none'/%3E%3Ccircle cx='47' cy='27' r='2' fill='%23d94d82' stroke='none'/%3E%3C/g%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg width='44' height='44' viewBox='0 0 44 44' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23faedf2' stroke='%23d94d82' stroke-width='1.6'%3E%3Cellipse cx='22' cy='12' rx='5' ry='9'/%3E%3Cellipse cx='22' cy='32' rx='5' ry='9'/%3E%3Cellipse cx='12' cy='22' rx='9' ry='5'/%3E%3Cellipse cx='32' cy='22' rx='9' ry='5'/%3E%3Ccircle cx='22' cy='22' r='3.2' fill='%23d94d82' stroke='none'/%3E%3C/g%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg width='50' height='50' viewBox='0 0 50 50' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%2376649a' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10 39c12-2 22-12 30-28'/%3E%3Cpath d='M21 29c-9-6-14-4-13 1.4 1 4.5 8.5 4 13-1.4Z' fill='%23faedf2'/%3E%3Cpath d='M30 21c8-7 13-6 12.5-.8-.5 4.5-8 5.8-12.5.8Z' fill='%23f6eee6'/%3E%3Ccircle cx='36' cy='13' r='2.2' fill='%23d94d82' stroke='none'/%3E%3Ccircle cx='28' cy='17' r='1.7' fill='%23d94d82' stroke='none'/%3E%3C/g%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg width='38' height='38' viewBox='0 0 38 38' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23d94d82' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M19 28c-8-6.8-11-9.8-11-14 0-3 2.2-5.2 5-5.2 2 0 3.7 1.2 4.9 3 1.2-1.8 3-3 5.1-3 2.8 0 5 2.2 5 5.2 0 4.2-3 7.2-9 14Z'/%3E%3C/g%3E%3C/svg%3E");
  background-position: 7vw 28vh, 88vw 74vh, 13vw 76vh, 82vw 22vh, 54vw 86vh, 92vw 44vh;
  background-repeat: no-repeat;
  background-size: 34px 34px, 52px 52px, 68px 86px, 38px 38px, 48px 48px, 34px 34px;
  opacity: 0.42;
}

body > * {
  position: relative;
  z-index: 1;
}

.site-header {
  z-index: 30;
}

.drawer-backdrop {
  z-index: 40;
}

.cart-drawer {
  z-index: 50;
}

.toast {
  z-index: 80;
}

.skip-link {
  z-index: 100;
}

.announcement {
  background: var(--beige-soft);
  border-bottom: 1px solid var(--beige);
  color: var(--ink);
}

.site-header {
  background: rgba(255, 253, 249, 0.94);
  border-bottom-color: var(--beige);
  backdrop-filter: blur(16px);
}

.brand {
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand img {
  border: 1px solid var(--beige);
  box-shadow: 0 8px 24px rgba(77, 58, 68, 0.08);
}

.hero {
  color: var(--ink);
  min-height: calc(100svh - var(--header-height) - 32px);
}

.hero-carousel {
  border: 10px solid rgba(255, 255, 255, 0.86);
  border-radius: 46% 46% 32px 32px;
  bottom: 5vh;
  box-shadow: 0 30px 80px rgba(82, 61, 72, 0.16);
  height: calc(100% - 10vh);
  inset: auto 5vw 5vh auto;
  transform: none;
  width: min(47vw, 700px);
}

.hero-carousel .hero-slide {
  object-position: center;
}

.hero-scrim {
  display: none;
}

.hero-content {
  max-width: 52vw;
  padding-left: 7vw;
}

.hero h1,
.section-heading h2,
.wholesale-copy h2,
.story-copy h2,
.final-cta h2,
.product-dialog-info h2,
.drawer-header h2,
.checkout-dialog h2 {
  font-weight: 600;
  letter-spacing: -0.045em;
  text-transform: none;
}

.hero h1 {
  font-size: clamp(4.8rem, 7.8vw, 8rem);
  line-height: 0.88;
}

.hero h1 em {
  color: var(--pink);
}

.hero-copy {
  color: var(--muted);
}

.hero .eyebrow.light,
.wholesale-section .eyebrow.light,
.final-cta .eyebrow.light {
  color: var(--pink);
}

.hero .button.ghost-light,
.wholesale-section .button.ghost-light {
  border-color: var(--beige);
  color: var(--ink);
}

.hero .button.ghost-light:hover,
.wholesale-section .button.ghost-light:hover {
  background: var(--white);
}

.hero-note {
  background: rgba(255, 253, 249, 0.9);
  border: 1px solid var(--beige);
  border-radius: 24px;
  bottom: 7vh;
  color: var(--ink);
  padding: 0.65rem 0.9rem;
  right: 6vw;
}

.hero-note span {
  border-color: var(--pink);
  color: var(--pink);
}

.benefit-strip {
  background: rgba(246, 238, 230, 0.95);
  border: 1px solid var(--beige);
  border-radius: 999px;
  color: var(--ink);
  margin: 1.5rem 4vw 0;
  overflow: hidden;
}

.benefit-strip p {
  border-right-color: var(--beige);
}

.benefit-strip strong {
  color: var(--pink);
}

.shop-section,
.faq-section {
  background: transparent;
  margin: 0 auto;
  max-width: 1600px;
}

.section-heading h2,
.story-copy h2 {
  font-size: clamp(4.2rem, 6.4vw, 7rem);
  line-height: 0.9;
}

.shop-controls {
  border-bottom-color: var(--beige);
}

.filter {
  border-color: var(--beige);
  color: var(--ink);
}

.filter.active {
  background: var(--violet-dark);
}

.search-box {
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--beige);
  border-radius: 999px;
  padding: 0 0.85rem;
}

.product-grid {
  gap: 4.5rem 1.8rem;
}

.product-media {
  background: var(--beige-soft);
  border: 1px solid rgba(220, 200, 180, 0.8);
  border-radius: 34px 34px 18px 18px;
  box-shadow: 0 18px 45px rgba(82, 61, 72, 0.08);
}

.product-media img {
  aspect-ratio: 3 / 4;
}

.product-badge {
  background: rgba(255, 253, 249, 0.9);
  border: 1px solid var(--beige);
}

.quick-add {
  box-shadow: 0 10px 28px rgba(82, 61, 72, 0.16);
}

.product-info {
  padding: 1rem 0.35rem 0;
}

.product-info h3 {
  font-size: 0.78rem;
}

.wholesale-section {
  background-color: var(--beige-soft);
  background-image:
    linear-gradient(rgba(218, 199, 179, 0.42) 1px, transparent 1px),
    linear-gradient(90deg, rgba(218, 199, 179, 0.42) 1px, transparent 1px);
  background-size: 72px 72px;
  border: 1px solid var(--beige);
  border-radius: 50px;
  color: var(--ink);
  margin: 1rem 4vw;
  overflow: hidden;
}

.wholesale-section::before {
  border-color: rgba(217, 77, 130, 0.3);
}

.wholesale-copy h2 {
  font-size: clamp(5rem, 8vw, 8rem);
  line-height: 0.86;
}

.wholesale-copy > p {
  color: var(--muted);
}

.wholesale-section .button.light {
  background: var(--pink);
  color: var(--white);
}

.wholesale-number strong {
  color: var(--pink);
}

.story-section {
  background: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid var(--beige);
  border-top: 1px solid var(--beige);
  margin: 8rem 0 0;
}

.story-image-wrap img {
  border: 8px solid var(--white);
  border-radius: 46% 46% 28px 28px;
  box-shadow: 0 24px 60px rgba(82, 61, 72, 0.13);
}

.stitch-circle {
  border-color: var(--beige);
}

.faq-list {
  border-top: 0;
  display: grid;
  gap: 0.75rem;
}

.faq-list details {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--beige);
  border-radius: 18px;
  padding: 0 1.2rem;
}

.faq-list summary {
  text-transform: none;
}

.final-cta {
  background-color: var(--soft-pink);
  background-image:
    linear-gradient(rgba(218, 199, 179, 0.35) 1px, transparent 1px),
    linear-gradient(90deg, rgba(218, 199, 179, 0.35) 1px, transparent 1px);
  background-size: 80px 80px;
  border: 1px solid var(--beige);
  border-radius: 50px;
  color: var(--ink);
  margin: 1rem 4vw 4vw;
}

.final-cta h2 {
  font-size: clamp(5rem, 9vw, 9rem);
  line-height: 0.86;
}

.final-cta .button.light {
  background: var(--pink);
  color: var(--white);
}

.site-footer {
  background: #362d34;
  border-radius: 48px 48px 0 0;
}

.footer-brand img {
  border: 4px solid rgba(255, 255, 255, 0.8);
}

.cart-drawer {
  background: var(--paper);
  border-radius: 34px 0 0 34px;
}

.cart-item img {
  border-radius: 16px;
}

dialog {
  border-radius: 30px;
}

.product-gallery {
  background: var(--beige-soft);
}

.product-gallery > img {
  border-radius: 28px;
}

.gallery-thumbnails img {
  border-radius: 10px;
}

.checkout-summary {
  border: 1px solid var(--beige);
  border-radius: 24px;
}

.policy-hero,
.policy-section + .policy-section {
  border-color: var(--beige);
}

.policy-main {
  overflow: hidden;
}

.policy-section {
  column-gap: clamp(2rem, 4vw, 4.5rem);
  grid-template-columns: minmax(270px, 0.42fr) minmax(0, 1fr);
}

.policy-section > * {
  min-width: 0;
}

.policy-section h2 {
  font-size: clamp(2.35rem, 3.6vw, 3rem);
  hyphens: auto;
  overflow-wrap: anywhere;
}

.policy-section p,
.policy-section li,
.text-link {
  overflow-wrap: anywhere;
}

@media (max-width: 980px) {
  .policy-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  body {
    background-size: 72px 72px;
  }

  .hero {
    display: flex;
    flex-direction: column;
    min-height: auto;
    padding: 1rem 1rem 4rem;
  }

  .hero-carousel {
    border-width: 6px;
    bottom: auto;
    height: 56svh;
    inset: auto;
    order: 1;
    position: relative;
    width: 100%;
  }

  .hero-content {
    min-height: auto;
    max-width: none;
    order: 2;
    padding: 2rem 0 0;
  }

  .hero h1 {
    font-size: clamp(4.1rem, 19vw, 5.7rem);
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .button {
    flex: 1;
    padding-inline: 0.8rem;
  }

  .benefit-strip {
    border-radius: 28px;
    margin: 0 1rem;
  }

  .product-media {
    border-radius: 22px 22px 12px 12px;
  }

  .wholesale-section {
    border-radius: 30px;
    margin: 1rem;
  }

  .story-section {
    margin-top: 5rem;
  }

  .final-cta {
    border-radius: 30px;
    margin: 1rem;
  }

  .cart-drawer {
    border-radius: 24px 0 0 24px;
  }
}

/* Final KRO polish */
body::before {
  background-size: min(42vw, 480px);
  opacity: 0.06;
}

.brand img,
.footer-brand img {
  background: var(--white);
  object-fit: contain;
  padding: 2px;
}

.hero h1 {
  font-size: clamp(4rem, 7vw, 7.1rem);
  max-width: 780px;
}

.section-heading h2 {
  font-size: clamp(3rem, 5.4vw, 5.8rem);
}

.wholesale-copy h2 {
  font-size: clamp(3.8rem, 6.2vw, 6.4rem);
}

.story-copy h2 {
  font-size: clamp(3.1rem, 5vw, 5.3rem);
  max-width: 680px;
}

.final-cta {
  overflow: hidden;
}

.final-cta h2 {
  font-size: clamp(3.25rem, 6vw, 6.2rem);
  max-width: 1080px;
}

.payment-body .site-header {
  grid-template-columns: 1fr auto auto;
}

.payment-main {
  max-width: 1180px;
  padding: clamp(3rem, 5vw, 4.5rem) 5vw 7rem;
}

.payment-hero {
  align-items: stretch;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--beige);
  border-radius: 36px;
  box-shadow: 0 24px 70px rgba(82, 61, 72, 0.09);
  grid-template-columns: minmax(0, 1fr) minmax(240px, 320px);
  margin-bottom: 1.25rem;
  padding: clamp(1.25rem, 3vw, 2rem);
}

.payment-hero h1 {
  font-size: clamp(3.1rem, 5.8vw, 5.6rem);
  max-width: 720px;
}

.payment-layout {
  gap: 1rem;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
}

.payment-summary,
.payment-panel {
  backdrop-filter: blur(12px);
}

.payment-panel {
  position: sticky;
  top: calc(var(--header-height) + 1rem);
}

.payment-summary-head h2,
.payment-panel h2 {
  font-size: clamp(2.15rem, 4vw, 3.45rem);
  overflow-wrap: anywhere;
}

.payment-item {
  background: rgba(255, 253, 249, 0.92);
  border: 1px solid var(--beige);
  border-radius: 22px;
  grid-template-columns: 88px minmax(0, 1fr) auto;
  padding: 0.8rem;
}

.payment-item,
.payment-item:first-child {
  border-top: 1px solid var(--beige);
}

.payment-item img {
  height: 88px;
  width: 88px;
}

.payment-method-button {
  background: var(--white);
  border-radius: 999px;
}

.payment-method-button:disabled {
  opacity: 0.58;
  transform: none;
}

.payment-message:empty {
  display: none;
}

@media (max-width: 900px) {
  .payment-body .site-header,
  .payment-hero,
  .payment-layout,
  .payment-summary-head,
  .payment-item {
    grid-template-columns: 1fr;
  }

  .payment-panel {
    position: static;
  }

  .payment-total-card {
    text-align: left;
  }

  .payment-item strong {
    white-space: normal;
  }
}

@media (max-width: 760px) {
  .hero h1 {
    font-size: clamp(3.5rem, 16vw, 5rem);
  }

  .section-heading h2,
  .story-copy h2,
  .final-cta h2 {
    font-size: clamp(2.8rem, 13vw, 4.4rem);
  }

  .payment-main {
    padding: 2rem 1rem 5rem;
  }

  .payment-item img {
    height: 96px;
    width: 96px;
  }
}


/* KRO video try-on */
.tryon-section {
  background: linear-gradient(145deg, rgba(250, 237, 242, 0.82), rgba(255, 253, 249, 0.92));
  border-block: 1px solid var(--beige);
  padding: clamp(5rem, 9vw, 9rem) 5vw;
  scroll-margin-top: calc(var(--header-height) + 1rem);
}

.tryon-heading {
  align-items: end;
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.55fr);
  margin: 0 auto 2.5rem;
  max-width: 1480px;
}

.tryon-heading h2 {
  font-family: var(--display);
  font-size: clamp(3.4rem, 6.5vw, 7.2rem);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.84;
  margin: 0;
  max-width: 900px;
}

.tryon-heading > p {
  color: var(--muted);
  margin: 0;
  max-width: 520px;
}

.tryon-layout {
  align-items: stretch;
  display: grid;
  gap: clamp(1rem, 2.5vw, 2.5rem);
  grid-template-columns: minmax(0, 1.35fr) minmax(310px, 0.65fr);
  margin: 0 auto;
  max-width: 1480px;
}

.tryon-stage {
  --tryon-turn: 0;
  aspect-ratio: 4 / 5;
  background: #eee8e7;
  border: 10px solid rgba(255, 255, 255, 0.88);
  border-radius: 42px;
  box-shadow: 0 30px 85px rgba(82, 61, 72, 0.18);
  cursor: ew-resize;
  min-height: 520px;
  overflow: hidden;
  position: relative;
  touch-action: none;
  user-select: none;
}

.tryon-stage.dragging {
  cursor: grabbing;
}

.tryon-stage video {
  height: 100%;
  inset: 0;
  object-fit: cover;
  pointer-events: none;
  position: absolute;
  width: 100%;
}

.tryon-garment-layer {
  left: 50%;
  pointer-events: none;
  position: absolute;
  top: 43%;
  transform: translate(-50%, -50%) perspective(900px) rotateY(calc((var(--tryon-turn) - 0.5) * 18deg));
  transform-origin: center;
  width: 48%;
  z-index: 2;
}

.tryon-garment-layer img {
  filter: drop-shadow(0 12px 18px rgba(45, 28, 39, 0.2));
  max-height: 48vh;
  object-fit: contain;
  width: 100%;
}

.tryon-cursor-hint {
  align-items: center;
  background: rgba(255, 253, 249, 0.9);
  border: 1px solid rgba(232, 217, 201, 0.95);
  border-radius: 999px;
  bottom: 1.5rem;
  display: flex;
  font-size: 0.68rem;
  font-weight: 800;
  gap: 0.9rem;
  left: 50%;
  letter-spacing: 0.08em;
  padding: 0.75rem 1.1rem;
  position: absolute;
  text-transform: uppercase;
  transform: translateX(-50%);
  transition: opacity 180ms ease, transform 180ms ease;
  white-space: nowrap;
  z-index: 4;
}

.tryon-cursor-hint.hidden {
  opacity: 0;
  transform: translate(-50%, 10px);
}

.tryon-cursor-hint span {
  color: var(--pink);
  font-size: 1.1rem;
}

.tryon-progress {
  background: rgba(255, 255, 255, 0.5);
  bottom: 0;
  height: 5px;
  left: 0;
  overflow: hidden;
  position: absolute;
  right: 0;
  z-index: 5;
}

.tryon-progress span {
  background: var(--pink);
  display: block;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 80ms linear;
  width: 100%;
}

.tryon-panel {
  align-self: stretch;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--beige);
  border-radius: 32px;
  box-shadow: 0 20px 50px rgba(82, 61, 72, 0.09);
  display: flex;
  flex-direction: column;
  max-height: min(80vh, 820px);
  padding: clamp(1rem, 2vw, 1.6rem);
}

.tryon-selected-product {
  align-items: center;
  display: grid;
  gap: 0.9rem;
  grid-template-columns: 86px minmax(0, 1fr);
}

.tryon-selected-product img {
  aspect-ratio: 1;
  border: 1px solid var(--beige);
  border-radius: 20px;
  object-fit: cover;
  width: 86px;
}

.tryon-selected-product strong,
.tryon-selected-product span {
  display: block;
}

.tryon-selected-product strong {
  font-size: 0.92rem;
}

.tryon-selected-product span,
.tryon-note {
  color: var(--muted);
  font-size: 0.72rem;
}

.tryon-note {
  background: var(--beige-soft);
  border-radius: 14px;
  margin: 1rem 0;
  padding: 0.8rem;
}

.tryon-products {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1rem;
  min-height: 0;
  overflow-y: auto;
  padding-right: 0.25rem;
}

.tryon-product-option {
  align-items: center;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 16px;
  color: var(--ink);
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 56px minmax(0, 1fr);
  padding: 0.45rem;
  text-align: left;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
  width: 100%;
}

.tryon-product-option:hover,
.tryon-product-option.active {
  background: var(--soft-pink);
  border-color: var(--beige);
  transform: translateX(3px);
}

.tryon-product-option img {
  aspect-ratio: 1;
  border-radius: 12px;
  object-fit: cover;
  width: 56px;
}

.tryon-product-option strong,
.tryon-product-option small {
  display: block;
}

.tryon-product-option strong {
  font-size: 0.72rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tryon-product-option small {
  color: var(--muted);
  font-size: 0.62rem;
}

.tryon-card-action {
  background: transparent;
  border: 0;
  color: var(--pink-dark);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-top: 0.65rem;
  padding: 0;
  text-transform: uppercase;
}

.tryon-card-action:hover {
  color: var(--violet-dark);
  text-decoration: underline;
}

@media (max-width: 980px) {
  .tryon-heading,
  .tryon-layout {
    grid-template-columns: 1fr;
  }

  .tryon-panel {
    max-height: none;
  }

  .tryon-products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-height: 360px;
  }
}

@media (max-width: 650px) {
  .tryon-section {
    padding-inline: 1rem;
  }

  .tryon-heading h2 {
    font-size: clamp(3rem, 15vw, 4.8rem);
  }

  .tryon-stage {
    border-width: 6px;
    border-radius: 28px;
    min-height: 440px;
  }

  .tryon-cursor-hint {
    max-width: calc(100% - 2rem);
  }

  .tryon-products {
    grid-template-columns: 1fr;
  }
}

/* KRO Collection storefront refresh - inspired interaction, same brand palette */
.storefront-page {
  --hero-x: 0;
  --hero-y: 0;
  background-attachment: fixed;
}

.storefront-page .announcement {
  background: var(--ink);
  color: var(--white);
  height: 38px;
  justify-content: flex-start;
  padding: 0;
}

.announcement-track {
  align-items: center;
  animation: kroAnnouncementMarquee 34s linear infinite;
  display: flex;
  flex: 0 0 auto;
  gap: 2.4rem;
  min-width: max-content;
  padding-inline: 1.2rem;
  will-change: transform;
}

.announcement-track span {
  align-items: center;
  display: inline-flex;
  gap: 2.4rem;
}

.announcement-track span::after {
  color: var(--pink);
  content: "•";
}

@keyframes kroAnnouncementMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.storefront-page .site-header {
  background: rgba(255, 253, 249, 0.88);
  grid-template-columns: auto minmax(0, 1fr) auto;
  height: 82px;
  padding-inline: clamp(1rem, 4vw, 4.75rem);
  transition: box-shadow 220ms ease, background 220ms ease, height 220ms ease;
}

.storefront-page .site-header.is-scrolled {
  background: rgba(255, 253, 249, 0.97);
  box-shadow: 0 16px 40px rgba(58, 42, 51, 0.09);
  height: 70px;
}

.storefront-page .brand {
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.storefront-page .brand img {
  height: 58px;
  width: 58px;
}

.storefront-page .site-header.is-scrolled .brand img {
  height: 48px;
  width: 48px;
}

.storefront-page .main-nav {
  justify-content: center;
}

.storefront-page .cart-button {
  box-shadow: 0 12px 30px rgba(217, 77, 130, 0.2);
}

.hero-storefront {
  --hero-edge: clamp(1rem, 4vw, 4rem);
  background:
    radial-gradient(circle at 18% 18%, rgba(250, 237, 242, 0.9), transparent 28%),
    linear-gradient(110deg, rgba(255, 253, 249, 0.96) 0%, rgba(255, 253, 249, 0.9) 45%, rgba(250, 237, 242, 0.55) 100%);
  color: var(--ink);
  isolation: isolate;
  min-height: calc(100svh - 38px);
}

.hero-storefront.reveal-on-scroll {
  opacity: 1;
  transform: none;
}

.hero-storefront::before {
  background:
    linear-gradient(rgba(218, 199, 179, 0.32) 1px, transparent 1px),
    linear-gradient(90deg, rgba(218, 199, 179, 0.32) 1px, transparent 1px);
  background-size: 86px 86px;
  content: "";
  inset: 0;
  mask-image: linear-gradient(90deg, #000 0 62%, transparent 100%);
  opacity: 0.75;
  pointer-events: none;
  position: absolute;
  z-index: -2;
}

.hero-storefront .hero-carousel {
  border: 0;
  border-left: 1px solid rgba(232, 217, 201, 0.9);
  border-radius: 0;
  bottom: 0;
  box-shadow: none;
  height: 100%;
  inset: 0 0 0 auto;
  overflow: hidden;
  transform:
    translate3d(calc(var(--hero-x) * -14px), calc(var(--hero-y) * -10px), 0)
    scale(1.015);
  transition: transform 180ms ease-out;
  width: min(48vw, 760px);
}

.hero-storefront .hero-carousel::after {
  background:
    linear-gradient(90deg, rgba(255, 253, 249, 0.96), rgba(255, 253, 249, 0.08) 36%, transparent 62%),
    linear-gradient(0deg, rgba(51, 42, 49, 0.18), transparent 38%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 2;
}

.hero-storefront .hero-slide {
  animation: kroStorefrontHero 24s infinite;
  object-position: center;
}

.hero-storefront .hero-slide:nth-child(2) {
  animation-delay: 8s;
}

.hero-storefront .hero-slide:nth-child(3) {
  animation-delay: 16s;
}

@keyframes kroStorefrontHero {
  0%,
  29% {
    opacity: 1;
    transform: scale(1.045);
  }

  35%,
  100% {
    opacity: 0;
    transform: scale(1.01);
  }
}

.hero-storefront .hero-content {
  max-width: min(760px, 52vw);
  min-height: calc(100svh - 120px);
  padding: clamp(3.5rem, 7vw, 7.5rem) var(--hero-edge) 9.5rem;
}

.hero-logo-mark {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--beige);
  border-radius: 50%;
  box-shadow: 0 18px 50px rgba(82, 61, 72, 0.1);
  margin-bottom: clamp(1.2rem, 2.4vw, 2rem);
  padding: 0.45rem;
  width: clamp(82px, 9vw, 128px);
}

.hero-logo-mark img {
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: contain;
  width: 100%;
}

.hero-storefront .eyebrow.light {
  color: var(--violet);
}

.hero-storefront h1 {
  font-size: clamp(3.7rem, 7.6vw, 8.4rem);
  letter-spacing: -0.065em;
  line-height: 0.82;
  max-width: 760px;
}

.hero-storefront .hero-copy {
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  max-width: 540px;
}

.hero-storefront .button.ghost-light {
  background: rgba(255, 255, 255, 0.6);
  border-color: var(--beige);
  color: var(--ink);
}

.hero-storefront .hero-note {
  bottom: 8rem;
  right: min(40vw, 38rem);
}

.hero-shop-panel {
  backdrop-filter: blur(16px);
  background: rgba(255, 253, 249, 0.86);
  border: 1px solid var(--beige);
  border-radius: 30px;
  bottom: 2rem;
  box-shadow: 0 24px 60px rgba(82, 61, 72, 0.12);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  left: var(--hero-edge);
  max-width: min(790px, calc(100% - var(--hero-edge) * 2));
  overflow: hidden;
  position: absolute;
  z-index: 4;
}

.hero-shop-panel a {
  display: grid;
  gap: 0.25rem;
  padding: 1.05rem 1.2rem;
  transition: background 180ms ease, transform 180ms ease;
}

.hero-shop-panel a + a {
  border-left: 1px solid var(--beige);
}

.hero-shop-panel a:hover {
  background: var(--soft-pink);
}

.hero-shop-panel small {
  color: var(--pink);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-shop-panel strong {
  font-family: var(--display);
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 0.95;
}

.category-showcase {
  display: grid;
  gap: clamp(0.8rem, 1.5vw, 1.3rem);
  grid-template-columns: 1.35fr 1fr 1fr;
  grid-template-rows: repeat(2, minmax(240px, 330px));
  margin: clamp(4rem, 7vw, 7rem) auto 0;
  max-width: 1540px;
  padding-inline: clamp(1rem, 4vw, 5vw);
}

.category-tile {
  background: var(--beige-soft);
  border: 1px solid var(--beige);
  border-radius: 34px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 0;
  overflow: hidden;
  padding: clamp(1.1rem, 2vw, 1.7rem);
  position: relative;
}

.category-tile-large {
  grid-row: span 2;
}

.category-tile img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  transform: scale(1.015);
  transition: transform 650ms cubic-bezier(0.2, 0.75, 0.3, 1);
  width: 100%;
  z-index: 0;
}

.category-tile::after {
  background:
    linear-gradient(0deg, rgba(35, 25, 33, 0.82), rgba(35, 25, 33, 0.1) 62%),
    linear-gradient(90deg, rgba(217, 77, 130, 0.18), transparent);
  content: "";
  inset: 0;
  position: absolute;
  z-index: 1;
}

.category-tile span,
.category-tile strong {
  position: relative;
  z-index: 2;
}

.category-tile span {
  color: #f7b2d0;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.category-tile strong {
  font-family: var(--display);
  font-size: clamp(2rem, 3.4vw, 4.4rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.9;
  max-width: 520px;
}

.category-tile:not(.category-tile-large) strong {
  font-size: clamp(1.75rem, 2.5vw, 3.1rem);
}

.category-tile:hover img {
  transform: scale(1.08);
}

.category-tile:hover {
  box-shadow: 0 26px 70px rgba(82, 61, 72, 0.16);
}

.storefront-page .benefit-strip {
  transform: translateY(-50%);
}

.storefront-page .shop-section {
  padding-top: clamp(4rem, 8vw, 7rem);
}

.storefront-page .product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.storefront-page .product-card {
  position: relative;
}

.storefront-page .product-card::before {
  background: var(--pink);
  border-radius: 999px;
  content: "";
  height: 7px;
  left: 1rem;
  opacity: 0;
  position: absolute;
  top: -1rem;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 240ms ease, opacity 240ms ease;
  width: 46px;
}

.storefront-page .product-card:hover::before {
  opacity: 1;
  transform: scaleX(1);
}

.storefront-page .product-media {
  border-radius: 28px;
}

.storefront-page .product-media img {
  aspect-ratio: 4 / 5.35;
}

.storefront-page .quick-add {
  background: var(--ink);
  color: var(--white);
}

.storefront-page .tryon-section {
  background:
    radial-gradient(circle at 78% 16%, rgba(217, 77, 130, 0.28), transparent 22%),
    linear-gradient(135deg, #332a31 0%, #4f4050 100%);
  border: 0;
  border-radius: 52px;
  color: var(--white);
  margin: clamp(2rem, 5vw, 5rem) clamp(1rem, 4vw, 4rem);
  overflow: hidden;
  position: relative;
}

.storefront-page .tryon-section::before {
  background: var(--brand-logo) right -8% bottom -18% / min(36vw, 520px) no-repeat;
  content: "";
  inset: 0;
  opacity: 0.08;
  pointer-events: none;
  position: absolute;
}

.storefront-page .tryon-section .eyebrow,
.storefront-page .tryon-heading > p,
.storefront-page .tryon-selected-product span,
.storefront-page .tryon-note,
.storefront-page .tryon-product-option small {
  color: rgba(255, 255, 255, 0.72);
}

.storefront-page .tryon-heading,
.storefront-page .tryon-layout {
  position: relative;
  z-index: 2;
}

.storefront-page .tryon-stage {
  background: #efe9eb;
  border-color: rgba(255, 255, 255, 0.72);
  border-radius: 38px;
}

.storefront-page .tryon-panel {
  background: rgba(255, 253, 249, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: none;
}

.storefront-page .tryon-product-option {
  color: var(--white);
}

.storefront-page .tryon-product-option:hover,
.storefront-page .tryon-product-option.active {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.24);
}

.storefront-page .tryon-note {
  background: rgba(255, 255, 255, 0.1);
}

.storefront-page .wholesale-section {
  background:
    linear-gradient(rgba(218, 199, 179, 0.38) 1px, transparent 1px),
    linear-gradient(90deg, rgba(218, 199, 179, 0.38) 1px, transparent 1px),
    linear-gradient(135deg, rgba(246, 238, 230, 0.98), rgba(250, 237, 242, 0.86));
  background-size: 82px 82px, 82px 82px, auto;
}

.storefront-page .story-image-wrap img {
  object-position: center;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 620ms ease, transform 620ms cubic-bezier(0.2, 0.75, 0.3, 1);
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .announcement-track {
    animation: none;
  }

  .reveal-on-scroll {
    opacity: 1;
    transform: none;
  }

  .hero-storefront .hero-carousel {
    transform: none;
  }
}

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

  .storefront-page .main-nav {
    gap: 1.25rem;
  }

  .hero-storefront .hero-carousel {
    opacity: 0.48;
    width: 58vw;
  }

  .hero-storefront .hero-content {
    max-width: 640px;
  }

  .category-showcase {
    grid-template-columns: 1fr 1fr;
  }

  .category-tile-large {
    grid-column: 1 / -1;
    grid-row: auto;
  }
}

@media (max-width: 900px) {
  .storefront-page .hero-note {
    display: none;
  }

  .hero-shop-panel {
    grid-template-columns: 1fr;
  }

  .hero-shop-panel a + a {
    border-left: 0;
    border-top: 1px solid var(--beige);
  }

  .storefront-page .benefit-strip {
    transform: none;
  }

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

@media (max-width: 760px) {
  .storefront-page .announcement {
    height: 34px;
  }

  .storefront-page .site-header {
    height: 72px;
    padding-inline: 1rem;
  }

  .storefront-page .brand span {
    font-size: 1.15rem;
  }

  .storefront-page .brand img,
  .storefront-page .site-header.is-scrolled .brand img {
    height: 48px;
    width: 48px;
  }

  .hero-storefront {
    min-height: auto;
    padding: 0 1rem 1rem;
  }

  .hero-storefront::before {
    mask-image: none;
  }

  .hero-storefront .hero-carousel {
    border: 6px solid rgba(255, 255, 255, 0.8);
    border-radius: 30px;
    height: min(54svh, 520px);
    inset: auto;
    opacity: 1;
    order: 1;
    position: relative;
    transform: none;
    width: 100%;
  }

  .hero-storefront .hero-carousel::after {
    background: linear-gradient(0deg, rgba(51, 42, 49, 0.24), transparent 45%);
  }

  .hero-storefront .hero-content {
    max-width: none;
    min-height: auto;
    order: 2;
    padding: 1.5rem 0 1rem;
  }

  .hero-logo-mark {
    width: 76px;
  }

  .hero-storefront h1 {
    font-size: clamp(3.15rem, 17vw, 5.25rem);
    letter-spacing: -0.055em;
  }

  .hero-storefront .hero-copy {
    font-size: 0.96rem;
  }

  .hero-shop-panel {
    bottom: auto;
    left: auto;
    margin-top: 1rem;
    max-width: none;
    order: 3;
    position: relative;
    width: 100%;
  }

  .category-showcase {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    margin-top: 4rem;
  }

  .category-tile {
    min-height: 310px;
  }

  .storefront-page .shop-section {
    padding-inline: 1rem;
  }

  .storefront-page .tryon-section {
    border-radius: 30px;
    margin-inline: 1rem;
  }
}

@media (max-width: 560px) {
  .storefront-page .header-actions .text-button {
    display: none;
  }

  .hero-storefront .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .hero-storefront .hero-actions .button {
    width: 100%;
  }

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

  .storefront-page .benefit-strip {
    grid-template-columns: 1fr;
  }
}

/* Oysho + SKIMS inspired pass: minimal fashion storefront, KRO palette */
.editorial-shop-page {
  background:
    linear-gradient(rgba(232, 217, 201, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 217, 201, 0.16) 1px, transparent 1px),
    var(--paper);
  background-size: 120px 120px;
}

.editorial-shop-page::before {
  background: var(--brand-logo) center 58% / min(40vw, 460px) no-repeat;
  opacity: 0.026;
}

.editorial-shop-page::after {
  opacity: 0.13;
}

.editorial-shop-page .announcement {
  background: #2c242b;
  height: 34px;
}

.editorial-shop-page .announcement-track {
  animation-duration: 42s;
  font-size: 0.61rem;
  letter-spacing: 0.14em;
}

.editorial-shop-page .site-header {
  background: rgba(255, 253, 249, 0.94);
  border-bottom: 1px solid rgba(232, 217, 201, 0.95);
  box-shadow: none;
  grid-template-columns: minmax(210px, 1fr) auto minmax(210px, 1fr);
  height: 76px;
  padding-inline: clamp(1rem, 3vw, 3rem);
}

.editorial-shop-page .site-header.is-scrolled {
  height: 64px;
  box-shadow: 0 10px 30px rgba(51, 42, 49, 0.055);
}

.editorial-shop-page .brand {
  font-size: 1.45rem;
}

.editorial-shop-page .brand img {
  box-shadow: none;
  height: 50px;
  width: 50px;
}

.editorial-shop-page .site-header.is-scrolled .brand img {
  height: 42px;
  width: 42px;
}

.editorial-shop-page .main-nav {
  gap: clamp(1rem, 2.4vw, 2.4rem);
}

.editorial-shop-page .main-nav a,
.editorial-shop-page .text-button {
  color: #312a30;
  font-size: 0.66rem;
  letter-spacing: 0.15em;
}

.editorial-shop-page .cart-button {
  background: transparent;
  border: 1px solid var(--ink);
  box-shadow: none;
  color: var(--ink);
  min-height: 42px;
  padding: 0.55rem 0.6rem 0.55rem 1rem;
}

.editorial-shop-page .cart-button:hover {
  background: var(--ink);
  color: var(--white);
}

.editorial-shop-page .cart-button span {
  background: var(--pink);
  color: var(--white);
}

.editorial-shop-page .hero-storefront {
  background: #211b20;
  color: var(--white);
  min-height: calc(100svh - 34px);
}

.editorial-shop-page .hero-storefront::before {
  display: none;
}

.editorial-shop-page .hero-storefront .hero-carousel {
  border: 0;
  inset: 0;
  height: 100%;
  opacity: 1;
  transform:
    translate3d(calc(var(--hero-x) * -10px), calc(var(--hero-y) * -8px), 0)
    scale(1.025);
  width: 100%;
}

.editorial-shop-page .hero-storefront .hero-carousel::after {
  display: none;
}

.editorial-shop-page .hero-storefront .hero-slide {
  object-position: center 46%;
}

.editorial-shop-page .hero-scrim {
  background:
    linear-gradient(90deg, rgba(31, 24, 30, 0.78) 0%, rgba(31, 24, 30, 0.43) 42%, rgba(31, 24, 30, 0.12) 100%),
    linear-gradient(0deg, rgba(31, 24, 30, 0.58) 0%, transparent 46%);
  display: block;
  z-index: 1;
}

.editorial-shop-page .hero-storefront .hero-content {
  color: var(--white);
  max-width: min(690px, 54vw);
  min-height: calc(100svh - 110px);
  padding-bottom: 11rem;
  z-index: 3;
}

.editorial-shop-page .hero-logo-mark {
  display: none;
}

.editorial-shop-page .hero-storefront .eyebrow.light {
  color: #f7b2d0;
}

.editorial-shop-page .hero-storefront h1 {
  color: var(--white);
  font-size: clamp(3.6rem, 7.2vw, 8.6rem);
  letter-spacing: -0.055em;
  max-width: 760px;
}

.editorial-shop-page .hero-storefront .hero-copy {
  color: rgba(255, 255, 255, 0.82);
  max-width: 470px;
}

.editorial-shop-page .button {
  border-radius: 0;
  min-height: 46px;
}

.editorial-shop-page .button.primary {
  background: var(--white);
  color: var(--ink);
}

.editorial-shop-page .button.primary:hover {
  background: var(--pink);
  color: var(--white);
}

.editorial-shop-page .hero-storefront .button.ghost-light {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.76);
  color: var(--white);
}

.editorial-shop-page .hero-storefront .button.ghost-light:hover {
  background: rgba(255, 255, 255, 0.12);
}

.editorial-shop-page .hero-note {
  background: rgba(255, 253, 249, 0.9);
  border-radius: 0;
  bottom: 2.2rem;
  color: var(--ink);
  right: 3rem;
  z-index: 4;
}

.editorial-shop-page .hero-shop-panel {
  backdrop-filter: blur(20px);
  background: rgba(255, 253, 249, 0.93);
  border-radius: 0;
  bottom: 2rem;
  box-shadow: none;
  left: clamp(1rem, 4vw, 4rem);
  max-width: min(760px, calc(100% - 8rem));
  z-index: 4;
}

.editorial-shop-page .hero-shop-panel a {
  padding: 0.95rem 1rem;
}

.editorial-shop-page .hero-shop-panel strong {
  font-size: clamp(1.05rem, 1.55vw, 1.5rem);
}

.editorial-shop-page .benefit-strip {
  background: var(--paper);
  border: 0;
  border-bottom: 1px solid var(--beige);
  border-radius: 0;
  color: var(--ink);
  margin: 0;
  transform: none;
}

.editorial-shop-page .benefit-strip p {
  border-right: 1px solid var(--beige);
  padding-block: 0.9rem;
}

.editorial-shop-page .category-showcase {
  gap: 1px;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: minmax(360px, 58vh);
  margin-top: 0;
  max-width: none;
  padding: 1px 0 0;
}

.editorial-shop-page .category-tile,
.editorial-shop-page .category-tile-large {
  border: 0;
  border-radius: 0;
  grid-column: auto;
  grid-row: auto;
  min-height: 360px;
  padding: clamp(1rem, 2vw, 2rem);
}

.editorial-shop-page .category-tile::after {
  background: linear-gradient(0deg, rgba(28, 23, 28, 0.72), transparent 55%);
}

.editorial-shop-page .category-tile span {
  color: #f7b2d0;
  font-size: 0.61rem;
}

.editorial-shop-page .category-tile strong,
.editorial-shop-page .category-tile:not(.category-tile-large) strong {
  font-family: var(--body);
  font-size: clamp(1.15rem, 2vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.02;
  text-transform: uppercase;
}

.commerce-edit {
  align-items: stretch;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  min-height: min(780px, 82vh);
}

.commerce-edit-media {
  background: var(--beige-soft);
  min-height: 520px;
  overflow: hidden;
}

.commerce-edit-media img {
  height: 100%;
  object-fit: cover;
  transition: transform 900ms cubic-bezier(0.2, 0.75, 0.3, 1);
  width: 100%;
}

.commerce-edit:hover .commerce-edit-media img {
  transform: scale(1.045);
}

.commerce-edit-copy {
  align-items: flex-start;
  background: rgba(255, 253, 249, 0.92);
  border-block: 1px solid var(--beige);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 8vw, 8rem);
}

.commerce-edit-copy h2 {
  font-family: var(--display);
  font-size: clamp(3.5rem, 6.8vw, 7.4rem);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 0.86;
  margin: 0;
  max-width: 760px;
}

.commerce-edit-copy p:not(.eyebrow) {
  color: var(--muted);
  margin: 1.5rem 0 2rem;
  max-width: 520px;
}

.editorial-shop-page .shop-section {
  background: var(--paper);
  max-width: none;
  padding: clamp(4rem, 7vw, 7rem) clamp(1rem, 3vw, 3rem);
}

.editorial-shop-page .section-heading {
  align-items: end;
  border-bottom: 1px solid var(--beige);
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  margin-bottom: 1.3rem;
  padding-bottom: 1.6rem;
}

.editorial-shop-page .section-heading h2 {
  font-size: clamp(2.8rem, 5vw, 5.8rem);
  letter-spacing: -0.055em;
}

.editorial-shop-page .shop-controls {
  background: rgba(255, 253, 249, 0.92);
  border-bottom: 1px solid var(--beige);
  margin-bottom: 1.1rem;
  padding: 0.75rem 0;
  position: sticky;
  top: 64px;
  z-index: 8;
}

.editorial-shop-page .filter {
  border: 0;
  border-radius: 0;
  color: var(--muted);
  padding-inline: 0;
}

.editorial-shop-page .filter + .filter {
  margin-left: 1.25rem;
}

.editorial-shop-page .filter.active {
  background: transparent;
  border-bottom: 1px solid var(--ink);
  color: var(--ink);
}

.editorial-shop-page .search-box {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
  min-width: min(310px, 34vw);
  padding: 0;
}

.editorial-shop-page .product-grid {
  gap: 2.2rem 1px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.editorial-shop-page .product-card {
  background: transparent;
  padding-inline: clamp(0.25rem, 0.8vw, 0.65rem);
}

.editorial-shop-page .product-card::before {
  display: none;
}

.editorial-shop-page .product-media {
  background: #f3efeb;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.editorial-shop-page .product-media img {
  aspect-ratio: 3 / 4.1;
  object-fit: cover;
}

.product-hover-actions {
  bottom: 0.7rem;
  display: grid;
  gap: 0.45rem;
  grid-template-columns: 1fr 0.62fr;
  left: 0.7rem;
  opacity: 0;
  position: absolute;
  right: 0.7rem;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
  z-index: 3;
}

.editorial-shop-page .product-media:hover .product-hover-actions,
.product-hover-actions:focus-within {
  opacity: 1;
  transform: translateY(0);
}

.editorial-shop-page .quick-add,
.quick-tryon {
  background: rgba(255, 253, 249, 0.94);
  border: 1px solid transparent;
  border-radius: 0;
  bottom: auto;
  color: var(--ink);
  font-size: 0.62rem;
  font-weight: 800;
  height: 42px;
  left: auto;
  letter-spacing: 0.12em;
  opacity: 1;
  padding: 0 0.75rem;
  position: static;
  text-transform: uppercase;
  transform: none;
  white-space: nowrap;
}

.quick-tryon {
  color: var(--pink-dark);
}

.editorial-shop-page .quick-add:hover,
.quick-tryon:hover {
  background: var(--ink);
  color: var(--white);
}

.editorial-shop-page .product-media:hover .quick-add,
.editorial-shop-page .quick-add:focus-visible {
  opacity: 1;
  transform: none;
}

.editorial-shop-page .product-badge {
  background: rgba(255, 253, 249, 0.92);
  border: 0;
  border-radius: 0;
  color: var(--ink);
  left: 0.7rem;
  top: 0.7rem;
}

.editorial-shop-page .product-info {
  gap: 0.2rem 1rem;
  padding: 0.9rem 0 0;
}

.editorial-shop-page .product-info h3 {
  font-size: 0.74rem;
  letter-spacing: 0.1em;
}

.editorial-shop-page .product-info p {
  font-size: 0.7rem;
}

.editorial-shop-page .product-info strong {
  color: var(--ink);
  font-size: 0.73rem;
}

.editorial-shop-page .tryon-card-action {
  color: var(--muted);
  font-size: 0.61rem;
  letter-spacing: 0.12em;
}

.editorial-shop-page .tryon-section {
  background:
    linear-gradient(rgba(232, 217, 201, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 217, 201, 0.16) 1px, transparent 1px),
    linear-gradient(135deg, #fffdf9 0%, #faedf2 100%);
  background-size: 110px 110px, 110px 110px, auto;
  border-block: 1px solid var(--beige);
  border-radius: 0;
  color: var(--ink);
  margin: 0;
}

.editorial-shop-page .tryon-section::before {
  opacity: 0.035;
}

.editorial-shop-page .tryon-section .eyebrow,
.editorial-shop-page .tryon-heading > p,
.editorial-shop-page .tryon-selected-product span,
.editorial-shop-page .tryon-note,
.editorial-shop-page .tryon-product-option small {
  color: var(--muted);
}

.editorial-shop-page .tryon-heading h2 {
  font-size: clamp(3rem, 5.6vw, 6.3rem);
}

.editorial-shop-page .tryon-stage {
  border: 1px solid var(--beige);
  border-radius: 0;
  box-shadow: none;
}

.editorial-shop-page .tryon-panel {
  background: rgba(255, 253, 249, 0.82);
  border-color: var(--beige);
  border-radius: 0;
}

.editorial-shop-page .tryon-product-option {
  border-radius: 0;
  color: var(--ink);
}

.editorial-shop-page .tryon-product-option:hover,
.editorial-shop-page .tryon-product-option.active {
  background: var(--soft-pink);
  border-color: var(--beige);
}

.editorial-shop-page .tryon-note {
  background: var(--beige-soft);
  border-radius: 0;
}

.editorial-shop-page .wholesale-section,
.editorial-shop-page .final-cta {
  border-radius: 0;
  margin: 0;
}

.editorial-shop-page .wholesale-section {
  background:
    linear-gradient(90deg, rgba(51, 42, 49, 0.94), rgba(51, 42, 49, 0.68)),
    url("assets/reemplazar/bloque-mayoristas.jpeg") center / cover;
  color: var(--white);
}

.editorial-shop-page .wholesale-copy > p {
  color: rgba(255, 255, 255, 0.78);
}

.editorial-shop-page .wholesale-section .button.light {
  background: var(--white);
  color: var(--ink);
}

.editorial-shop-page .wholesale-section .button.ghost-light {
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--white);
}

.editorial-shop-page .story-section {
  background: var(--paper);
  border: 0;
  margin: 0;
}

.editorial-shop-page .story-image-wrap img {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.editorial-shop-page .stitch-circle {
  display: none;
}

.editorial-shop-page .faq-section {
  background: var(--paper);
}

.editorial-shop-page .faq-list details {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--beige);
  border-radius: 0;
  padding: 0;
}

.editorial-shop-page .final-cta {
  background:
    linear-gradient(rgba(51, 42, 49, 0.55), rgba(51, 42, 49, 0.55)),
    url("assets/reemplazar/hero-2.jpeg") center / cover;
  color: var(--white);
}

.editorial-shop-page .final-cta .button.light {
  background: var(--white);
  color: var(--ink);
}

.editorial-shop-page .site-footer {
  border-radius: 0;
}

@media (max-width: 1180px) {
  .editorial-shop-page .category-showcase {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, minmax(330px, 48vh));
  }

  .editorial-shop-page .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

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

  .editorial-shop-page .hero-storefront .hero-content {
    max-width: 620px;
  }

  .commerce-edit {
    grid-template-columns: 1fr;
  }

  .commerce-edit-media {
    min-height: 420px;
  }

  .editorial-shop-page .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .editorial-shop-page .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    height: 68px;
    max-width: 100vw;
    overflow: hidden;
    width: 100vw;
  }

  .editorial-shop-page .mobile-menu-button {
    align-items: center;
    background: transparent;
    display: flex !important;
    flex-direction: column;
    gap: 6px;
    height: 44px;
    justify-content: center;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    z-index: 5;
  }

  .editorial-shop-page .mobile-menu-button span {
    background: var(--ink) !important;
    display: block;
    height: 2px;
    width: 24px;
  }

  .editorial-shop-page .header-actions {
    display: none;
  }

  .editorial-shop-page .hero-storefront {
    display: flex;
    min-height: auto;
    padding: 0;
    width: 100%;
  }

  .editorial-shop-page .hero-storefront .hero-carousel {
    border: 0;
    border-radius: 0;
    height: 62svh;
    width: 100%;
  }

  .editorial-shop-page .hero-storefront .hero-content {
    background: var(--paper);
    color: var(--ink);
    display: block;
    flex: 0 1 auto;
    justify-content: flex-start;
    max-width: 100vw;
    min-width: 0;
    min-height: auto;
    overflow: hidden;
    padding: 1.75rem 1rem 1.25rem;
    width: 100%;
  }

  .editorial-shop-page .hero-storefront .eyebrow.light {
    color: var(--violet);
  }

  .editorial-shop-page .hero-storefront h1 {
    color: var(--ink);
    font-size: clamp(2rem, 7.8vw, 2.7rem);
    line-height: 0.93;
    max-width: calc(100vw - 2rem);
    min-width: 0;
    overflow-wrap: break-word;
    width: 100%;
  }

  .editorial-shop-page .hero-storefront .hero-copy {
    color: var(--muted);
    max-width: calc(100vw - 2rem);
    min-width: 0;
    overflow-wrap: break-word;
    width: 100%;
  }

  .editorial-shop-page .hero-storefront .button.primary {
    background: var(--pink);
    color: var(--white);
  }

  .editorial-shop-page .hero-storefront .button.ghost-light {
    border-color: var(--beige);
    color: var(--ink);
  }

  .editorial-shop-page .hero-scrim {
    background: linear-gradient(0deg, rgba(31, 24, 30, 0.22), transparent 44%);
  }

  .editorial-shop-page .hero-shop-panel {
    border-inline: 0;
    bottom: auto;
    left: auto;
    margin-top: 0;
    max-width: none;
    width: 100%;
  }

  .editorial-shop-page .category-showcase {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .editorial-shop-page .category-tile {
    min-height: 420px;
  }

  .commerce-edit-copy {
    padding: 3rem 1rem;
  }

  .commerce-edit-copy h2 {
    font-size: clamp(2.85rem, 14vw, 4.8rem);
  }

  .editorial-shop-page .section-heading,
  .editorial-shop-page .shop-controls {
    grid-template-columns: 1fr;
  }

  .editorial-shop-page .shop-controls {
    align-items: stretch;
    gap: 0.8rem;
    position: static;
  }

  .editorial-shop-page .search-box {
    min-width: 0;
    width: 100%;
  }

  .product-hover-actions {
    opacity: 1;
    position: static;
    transform: none;
    margin-top: 0.55rem;
  }
}

@media (max-width: 560px) {
  .editorial-shop-page .brand span {
    font-size: 1rem;
  }

  .editorial-shop-page .cart-button {
    font-size: 0;
    min-height: 40px;
    padding: 0.35rem;
  }

  .editorial-shop-page .cart-button span {
    font-size: 0.69rem;
    margin-left: 0;
  }

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

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

/* Compact video try-on */
.editorial-shop-page .tryon-section {
  padding: clamp(2.2rem, 4vw, 3.5rem) clamp(1rem, 4vw, 4rem);
  scroll-margin-top: 86px;
}

.editorial-shop-page .tryon-heading {
  align-items: end;
  gap: 1rem;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.45fr);
  margin-bottom: 1rem;
  max-width: 1060px;
}

.editorial-shop-page .tryon-heading h2 {
  font-size: clamp(2.25rem, 3.8vw, 4.35rem);
  max-width: 620px;
}

.editorial-shop-page .tryon-heading > p {
  font-size: 0.82rem;
  line-height: 1.55;
  max-width: 360px;
}

.editorial-shop-page .tryon-layout {
  align-items: start;
  gap: clamp(1rem, 1.7vw, 1.35rem);
  grid-template-columns: minmax(360px, 500px) minmax(280px, 340px);
  justify-content: center;
  max-width: 880px;
}

.editorial-shop-page .tryon-stage {
  aspect-ratio: 4 / 5;
  justify-self: end;
  max-height: min(54vh, 540px);
  min-height: 0;
  width: min(100%, 480px);
}

.editorial-shop-page .tryon-stage video {
  object-fit: contain;
}

.editorial-shop-page .tryon-panel {
  max-height: min(54vh, 540px);
  overflow: hidden;
  padding: 0.9rem;
}

.editorial-shop-page .tryon-selected-product {
  grid-template-columns: 64px minmax(0, 1fr);
}

.editorial-shop-page .tryon-selected-product img {
  width: 64px;
}

.editorial-shop-page .tryon-note {
  font-size: 0.68rem;
  line-height: 1.45;
  margin: 0.75rem 0;
  padding: 0.7rem;
}

.editorial-shop-page .tryon-products {
  max-height: calc(min(54vh, 540px) - 220px);
}

.editorial-shop-page .tryon-product-option {
  grid-template-columns: 48px minmax(0, 1fr);
  padding: 0.35rem;
}

.editorial-shop-page .tryon-product-option img {
  width: 48px;
}

.editorial-shop-page .tryon-cursor-hint {
  bottom: 0.9rem;
  padding: 0.58rem 0.9rem;
}

@media (max-width: 980px) {
  .editorial-shop-page .tryon-heading,
  .editorial-shop-page .tryon-layout {
    grid-template-columns: 1fr;
  }

  .editorial-shop-page .tryon-heading {
    max-width: 720px;
  }

  .editorial-shop-page .tryon-layout {
    max-width: 720px;
  }

  .editorial-shop-page .tryon-stage {
    justify-self: center;
    max-height: 62vh;
    width: min(100%, 520px);
  }

  .editorial-shop-page .tryon-panel {
    max-height: none;
  }

  .editorial-shop-page .tryon-products {
    max-height: 300px;
  }
}

@media (max-width: 650px) {
  .editorial-shop-page .tryon-section {
    padding: 2.4rem 1rem;
  }

  .editorial-shop-page .tryon-heading h2 {
    font-size: clamp(2.15rem, 11vw, 3.6rem);
  }

  .editorial-shop-page .tryon-stage {
    max-height: 58vh;
    width: min(100%, 430px);
  }
}

.product-main-media {
  align-items: center;
  aspect-ratio: 4 / 5;
  display: grid;
  min-height: min(67svh, 650px);
  overflow: hidden;
  place-items: center;
  width: 100%;
}

.product-main-media > img {
  border-radius: 28px;
  display: block;
  height: min(67svh, 650px);
  max-height: 100%;
  object-fit: contain;
  width: 100%;
}

.gallery-thumbnails button {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}
