: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;
  }
}

/* Puntadas KRO subdomain edition */
.puntadas-atelier-page {
  --ink: #2f2730;
  --muted: #75616d;
  --paper: #fffaf6;
  --pink: #e04884;
  --pink-dark: #b93569;
  --violet: #7b5aa7;
  --beige: #eadaca;
  --beige-soft: #fff0e8;
  background:
    radial-gradient(circle at 88% 13%, rgba(224, 72, 132, 0.12), transparent 24rem),
    radial-gradient(circle at 10% 40%, rgba(123, 90, 167, 0.08), transparent 22rem),
    linear-gradient(rgba(234, 218, 202, 0.38) 1px, transparent 1px),
    linear-gradient(90deg, rgba(234, 218, 202, 0.38) 1px, transparent 1px),
    var(--paper);
  background-size: auto, auto, 88px 88px, 88px 88px, auto;
}

.puntadas-atelier-page::before {
  background-image: var(--brand-logo);
  background-position: right 7vw top 9rem;
  background-repeat: no-repeat;
  background-size: min(38vw, 470px);
  content: "";
  inset: 0;
  opacity: 0.045;
  pointer-events: none;
  position: fixed;
  z-index: -1;
}

.puntadas-atelier-page::after {
  color: rgba(224, 72, 132, 0.34);
  content: "✿  ·  ♡  ·  ✿";
  font-family: var(--display);
  font-size: clamp(2rem, 5vw, 5rem);
  letter-spacing: 0.55em;
  pointer-events: none;
  position: fixed;
  right: -4rem;
  top: 54%;
  transform: rotate(-90deg);
  z-index: -1;
}

.puntadas-atelier-page .announcement {
  background: #352933;
  color: #fff8fb;
}

.puntadas-atelier-page .site-header {
  backdrop-filter: blur(20px);
  background: rgba(255, 250, 246, 0.88);
  border-bottom-color: rgba(224, 72, 132, 0.16);
}

.puntadas-atelier-page .brand span {
  font-size: 1.45rem;
}

.puntadas-atelier-page .brand img {
  box-shadow: 0 10px 24px rgba(80, 41, 62, 0.12);
  padding: 3px;
}

.puntadas-atelier-page .hero {
  align-items: center;
  color: var(--ink);
  display: grid;
  gap: clamp(1.75rem, 4vw, 4.5rem);
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.72fr);
  min-height: calc(100svh - var(--header-height) - 32px);
  overflow: hidden;
  padding: clamp(2.2rem, 5vw, 5.5rem) 5vw;
}

.puntadas-atelier-page .hero-carousel {
  align-self: stretch;
  aspect-ratio: 0.78;
  border: 1px solid rgba(224, 72, 132, 0.18);
  border-radius: 50vw 50vw 36px 36px;
  box-shadow: 0 34px 90px rgba(71, 45, 56, 0.18);
  grid-column: 2;
  grid-row: 1;
  height: min(72svh, 700px);
  inset: auto;
  justify-self: end;
  max-width: 560px;
  overflow: hidden;
  position: relative;
  transform: none;
  width: min(42vw, 560px);
}

.puntadas-atelier-page .hero-carousel::before {
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: inherit;
  content: "";
  inset: 14px;
  pointer-events: none;
  position: absolute;
  z-index: 3;
}

.puntadas-atelier-page .hero-slide {
  object-position: center top;
}

.puntadas-atelier-page .hero-scrim {
  background:
    radial-gradient(circle at 56% 16%, rgba(224, 72, 132, 0.16), transparent 18rem),
    linear-gradient(110deg, rgba(255, 250, 246, 0.9), transparent 64%);
  pointer-events: none;
}

.puntadas-atelier-page .hero-content {
  color: var(--ink);
  grid-column: 1;
  grid-row: 1;
  max-width: 760px;
  min-height: 0;
  padding: 0;
}

.puntadas-atelier-page .hero h1 {
  color: var(--ink);
  font-size: clamp(4.4rem, 9vw, 9.5rem);
  letter-spacing: -0.07em;
  line-height: 0.83;
  margin-bottom: 1.35rem;
  max-width: 830px;
}

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

.puntadas-atelier-page .hero-copy {
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  max-width: 560px;
}

.puntadas-atelier-page .hero .eyebrow.light,
.puntadas-atelier-page .final-cta .eyebrow.light,
.puntadas-atelier-page .wholesale-copy .eyebrow.light {
  color: var(--violet);
}

.puntadas-atelier-page .hero .button.ghost-light,
.puntadas-atelier-page .wholesale-section .button.ghost-light {
  border-color: rgba(47, 39, 48, 0.18);
  color: var(--ink);
}

.puntadas-atelier-page .hero-note {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(224, 72, 132, 0.2);
  box-shadow: 0 18px 45px rgba(65, 39, 53, 0.12);
  color: var(--ink);
  right: clamp(1rem, 6vw, 6rem);
}

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

.modelos-section {
  align-items: end;
  display: grid;
  gap: clamp(1.5rem, 4vw, 4rem);
  grid-template-columns: minmax(260px, 0.44fr) minmax(0, 1fr);
  margin: clamp(4rem, 8vw, 8rem) auto;
  max-width: 1500px;
  padding: 0 5vw;
}

.modelos-copy {
  border-left: 2px solid var(--pink);
  padding-left: clamp(1rem, 2vw, 1.6rem);
}

.modelos-copy h2 {
  font-family: var(--display);
  font-size: clamp(3.2rem, 6vw, 6.4rem);
  letter-spacing: -0.06em;
  line-height: 0.86;
  margin: 0 0 1rem;
  max-width: 680px;
}

.modelos-copy p {
  color: var(--muted);
  margin: 0;
  max-width: 520px;
}

.modelos-rail {
  display: grid;
  gap: clamp(0.8rem, 1.6vw, 1.25rem);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.modelos-rail figure {
  margin: 0;
  min-width: 0;
}

.modelos-rail figure:nth-child(even) {
  transform: translateY(2.4rem);
}

.modelos-rail img {
  aspect-ratio: 0.74;
  border: 1px solid rgba(224, 72, 132, 0.18);
  border-radius: 999px 999px 32px 32px;
  box-shadow: 0 24px 60px rgba(81, 48, 64, 0.12);
  height: 100%;
  object-fit: cover;
  object-position: center top;
  width: 100%;
}

.modelos-rail figcaption {
  color: var(--violet);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  margin-top: 0.75rem;
  text-transform: uppercase;
}

.puntadas-atelier-page .benefit-strip {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(224, 72, 132, 0.15);
  box-shadow: 0 24px 70px rgba(61, 39, 49, 0.08);
  transform: translateY(-1.2rem);
}

.puntadas-atelier-page .shop-section {
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(224, 72, 132, 0.12);
  border-radius: 46px;
  box-shadow: 0 28px 80px rgba(67, 42, 52, 0.08);
  margin-top: clamp(4rem, 8vw, 8rem);
  padding-block: clamp(2rem, 5vw, 4.5rem);
}

.puntadas-atelier-page .section-heading h2,
.puntadas-atelier-page .wholesale-copy h2,
.puntadas-atelier-page .story-copy h2,
.puntadas-atelier-page .final-cta h2 {
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.puntadas-atelier-page .product-grid {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.puntadas-atelier-page .product-card {
  background: transparent;
  border: 0;
  box-shadow: none;
}

.puntadas-atelier-page .product-media {
  background: #fff;
  border: 1px solid rgba(224, 72, 132, 0.16);
  border-radius: 34px;
  box-shadow: 0 22px 50px rgba(75, 49, 59, 0.1);
}

.puntadas-atelier-page .product-media img {
  object-fit: cover;
}

.puntadas-atelier-page .product-info {
  padding-inline: 0.35rem;
}

.puntadas-atelier-page .wholesale-section {
  background:
    linear-gradient(135deg, rgba(224, 72, 132, 0.92), rgba(85, 58, 102, 0.94)),
    var(--ink);
  border-radius: 52px;
}

.puntadas-atelier-page .story-section {
  align-items: center;
}

.puntadas-atelier-page .story-image-wrap img {
  aspect-ratio: 0.82;
  border-radius: 999px 999px 42px 42px;
  object-fit: cover;
  object-position: center top;
}

.puntadas-atelier-page .final-cta {
  background:
    linear-gradient(rgba(255, 241, 247, 0.74) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 241, 247, 0.74) 1px, transparent 1px),
    linear-gradient(135deg, #fff5f0, #ffe8f1);
  background-size: 74px 74px, 74px 74px, auto;
  color: var(--ink);
}

.puntadas-atelier-page .final-cta h2 {
  color: var(--ink);
}

.puntadas-atelier-page .final-cta::before {
  color: rgba(224, 72, 132, 0.25);
  content: "♡  ✿  ♡";
  font-family: var(--display);
  font-size: clamp(3rem, 9vw, 8rem);
  left: 6vw;
  letter-spacing: 0.35em;
  position: absolute;
  top: 1.5rem;
}

@media (max-width: 980px) {
  .puntadas-atelier-page .hero,
  .modelos-section {
    grid-template-columns: 1fr;
  }

  .puntadas-atelier-page .hero-carousel {
    grid-column: auto;
    grid-row: auto;
    justify-self: center;
    order: -1;
    width: min(78vw, 520px);
  }

  .puntadas-atelier-page .hero-content {
    grid-column: auto;
    grid-row: auto;
  }

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

@media (max-width: 760px) {
  .puntadas-atelier-page .hero {
    padding: 1rem 1rem 3.5rem;
  }

  .puntadas-atelier-page .hero-carousel {
    height: 58svh;
    max-height: 560px;
    width: 100%;
  }

  .puntadas-atelier-page .hero-content {
    padding-top: 1.5rem;
  }

  .puntadas-atelier-page .hero h1 {
    font-size: clamp(3.65rem, 18vw, 5.7rem);
  }

  .puntadas-atelier-page .hero-note {
    bottom: 1rem;
    left: 1rem;
    right: auto;
  }

  .modelos-section {
    margin-block: 4rem;
    padding-inline: 1rem;
  }

  .modelos-rail {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 1rem;
    scroll-snap-type: x mandatory;
  }

  .modelos-rail figure {
    flex: 0 0 68vw;
    scroll-snap-align: center;
  }

  .modelos-rail figure:nth-child(even) {
    transform: none;
  }

  .puntadas-atelier-page .shop-section {
    border-radius: 30px;
    margin-inline: 1rem;
  }
}
