@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&display=swap');

:root {
  --header-height: 68px;
  --plum: #5b2d73;
  --plum-deep: #442257;
  --cream: #f3ebf8;
  --sand: #ede1d6;
  --ink: #241828;
  --muted: #6d5c71;
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(36, 24, 40, 0.12);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  color: var(--ink);
  background: #e8d5f5;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(91, 45, 115, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91, 45, 115, 0.025) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: 0.7;
}

.site-shell {
  position: relative;
  z-index: 1;
}

.social-rail {
  position: fixed;
  right: 14px;
  top: 50%;
  z-index: 9;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform: translateY(-50%);
}

.social-link {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #000000;
  color: var(--white);
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
  transition:
    transform 160ms ease,
    background-color 160ms ease;
}

.social-rail-home {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-42%) scale(0.92);
  transition:
    opacity 220ms ease,
    transform 220ms ease,
    visibility 0s linear 220ms;
}

.social-rail-home.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(-50%) scale(1);
  transition:
    opacity 220ms ease,
    transform 220ms ease,
    visibility 0s linear 0s;
}

.social-link:hover,
.social-link:focus-visible {
  transform: translateX(-3px);
  background: var(--plum-deep);
}

.social-link svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 1.7;
}

.social-link svg rect,
.social-link svg circle {
  fill: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: #eee4f4;
  border-bottom: 1px solid rgba(91, 45, 115, 0.18);
  transition: transform 240ms ease, opacity 240ms ease;
  will-change: transform;
}

.site-header.is-hidden {
  transform: translateY(calc(-100% - 10px));
  opacity: 0;
}

.header-inner {
  width: min(100%, 1880px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  padding: 10px max(28px, 3vw);
  min-height: var(--header-height);
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  min-width: 0;
  justify-self: start;
}

.brand-copy {
  min-width: 0;
}

.brand-name {
  margin: 0;
  font-family: "Didot", "Bodoni MT", "Book Antiqua", Georgia, serif;
  font-size: clamp(2rem, 3.3vw, 2.7rem);
  font-weight: 400;
  letter-spacing: 0.22em;
  color: var(--plum-deep);
  text-transform: uppercase;
  line-height: 0.92;
  text-rendering: geometricPrecision;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  flex-wrap: wrap;
  justify-content: center;
  justify-self: center;
  grid-column: 2;
}

.header-tools {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 0;
  white-space: nowrap;
  grid-column: 3;
}

.account-link,
.cart-total,
.tool-icon {
  text-decoration: none;
  color: var(--ink);
  transition:
    color 160ms ease,
    transform 160ms ease;
}

.account-link,
.cart-total {
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cart-total {
  text-transform: none;
}

.account-link:hover,
.cart-total:hover,
.tool-icon:hover,
.account-link:focus-visible,
.cart-total:focus-visible,
.tool-icon:focus-visible {
  color: var(--plum-deep);
  transform: translateY(-1px);
}

.tool-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.tool-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.tool-icon svg path {
  fill: none;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  display: grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  padding: 0 5px;
  border-radius: 999px;
  background: #b7a16a;
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(36, 24, 40, 0.16);
}

.cart-icon {
  width: 52px;
  height: 52px;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  box-shadow: none;
}

.cart-icon svg {
  width: 25px;
  height: 25px;
  stroke-width: 1.9;
}

.cart-icon:hover,
.cart-icon:focus-visible {
  color: var(--plum-deep);
  transform: translateY(-1px);
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0;
  text-decoration: none;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    transform 160ms ease,
    color 160ms ease,
    background-color 160ms ease,
    box-shadow 160ms ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 2px;
  border-radius: 999px;
  background: var(--plum);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 160ms ease;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--plum-deep);
  transform: translateY(-1px);
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-link.active {
  color: var(--plum-deep);
}

.page-hero,
.page-panel {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.showcase-shell {
  width: 100%;
  margin: 0;
}

.showcase-track {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  overflow: hidden;
  background: #000000;
}

.showcase-stage {
  width: 100%;
  height: calc(100vh - var(--header-height));
  background: #000000;
}

.showcase-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  border: 0;
  background: transparent;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.showcase-arrow span {
  display: block;
  font-size: 4.4rem;
  font-weight: 300;
  line-height: 1;
  margin-top: -4px;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.3);
}

.showcase-arrow:hover,
.showcase-arrow:focus-visible {
  opacity: 0.78;
  transform: translateY(-50%) scale(1.03);
}

.showcase-arrow-left {
  left: 28px;
}

.showcase-arrow-right {
  right: 28px;
}

.tagline-strip {
  width: 100%;
  margin: 0;
  padding: 20px 24px 22px;
  background: #eee4f4;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tagline-strip-text {
  margin: 0;
  width: 100%;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: clamp(1.2rem, 2.6vw, 1.9rem);
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--plum-deep);
  text-align: center;
}

.collection-section {
  padding: 28px 42px 64px;
  background: linear-gradient(180deg, #efe5f4 0%, #f7f2fa 100%);
}

.collection-heading {
  margin: 0 0 24px;
  text-align: center;
}

.collection-kicker {
  margin: 0 0 8px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--plum-deep);
}

.collection-title {
  margin: 0;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.9rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
}

.collection-grid {
  width: min(1320px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
  gap: 42px 28px;
}

.collection-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: stretch;
  animation: fade-up 700ms ease both;
}

.collection-card:nth-child(2) {
  animation-delay: 70ms;
}

.collection-card:nth-child(3) {
  animation-delay: 140ms;
}

.collection-card:nth-child(4) {
  animation-delay: 210ms;
}

.collection-card-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 0.82 / 1.02;
  overflow: hidden;
  padding: 14px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 244, 250, 0.96) 100%);
  border: 1px solid rgba(91, 45, 115, 0.12);
  box-shadow:
    0 18px 36px rgba(68, 34, 87, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.7) inset;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.collection-card-compact .collection-card-visual {
  aspect-ratio: 0.82 / 1.02;
}

.collection-card-visual::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 22px;
  border: 1px solid rgba(91, 45, 115, 0.08);
  pointer-events: none;
  z-index: 1;
}

.collection-card:hover .collection-card-visual,
.collection-card:focus-within .collection-card-visual {
  transform: translateY(-4px);
  border-color: rgba(91, 45, 115, 0.18);
  box-shadow:
    0 28px 46px rgba(68, 34, 87, 0.12),
    0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.collection-glow {
  display: none;
}

.collection-card-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 18px;
}

.collection-card-image-model {
  object-position: center 12%;
}

.collection-card:hover .collection-card-image-model,
.collection-card:focus-within .collection-card-image-model {
  transform: scale(1.04);
  transition: transform 280ms ease;
}

.collection-card-overlay {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 28px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: #111111;
  text-transform: uppercase;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  font-weight: 700;
  box-shadow: 0 14px 28px rgba(22, 14, 28, 0.14);
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    background-color 180ms ease;
}

.collection-card-visual:hover .collection-card-overlay,
.collection-card-visual:focus-within .collection-card-overlay,
.shop-product-visual:hover .collection-card-overlay,
.shop-product-visual:focus-within .collection-card-overlay {
  opacity: 1;
  transform: translateY(0);
}

.collection-card-overlay:hover,
.collection-card-overlay:focus-visible {
  background: var(--plum-deep);
  color: var(--white);
}

.collection-card-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  width: 100%;
  padding: 0 6px;
}

.collection-line {
  display: block;
  width: 62%;
  height: 9px;
  border-radius: 999px;
  background: #111111;
}

.collection-line-short {
  width: 36%;
  height: 8px;
  opacity: 0.9;
}

.collection-item-name {
  margin: 0;
  text-align: left;
  font-size: 1rem;
  font-weight: 500;
  color: #17111a;
}

.collection-item-price {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0;
  color: #2a1f30;
}

.collection-action {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.view-all-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 108px;
  min-height: 38px;
  padding: 0 16px;
  border: 1.5px solid var(--plum-deep);
  background: var(--plum-deep);
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  transition:
    transform 160ms ease,
    background-color 160ms ease,
    color 160ms ease,
    border-color 160ms ease;
}

.view-all-button:hover,
.view-all-button:focus-visible {
  background: #2f173d;
  color: var(--white);
  border-color: #2f173d;
  transform: translateY(-1px);
}

.offer-section {
  margin-top: 72px;
}

.offer-heading {
  margin: 0 0 28px;
  text-align: center;
}

.offer-kicker {
  margin: 0 0 8px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--plum-deep);
}

.offer-title {
  margin: 0;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.9rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
}

.offer-grid {
  width: min(1320px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
  gap: 42px 28px;
}

.offer-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: stretch;
  animation: fade-up 700ms ease both;
}

.offer-card:nth-child(2) {
  animation-delay: 70ms;
}

.offer-card:nth-child(3) {
  animation-delay: 140ms;
}

.offer-card:nth-child(4) {
  animation-delay: 210ms;
}

.offer-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 0.82 / 1.02;
  padding: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 244, 250, 0.96) 100%);
  border: 1px solid rgba(91, 45, 115, 0.12);
  border-radius: 28px;
  box-shadow:
    0 18px 36px rgba(68, 34, 87, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.7) inset;
  overflow: hidden;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.offer-visual::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 22px;
  border: 1px solid rgba(91, 45, 115, 0.08);
  pointer-events: none;
  z-index: 1;
}

.offer-card:hover .offer-visual,
.offer-card:focus-within .offer-visual {
  transform: translateY(-4px);
  border-color: rgba(91, 45, 115, 0.18);
  box-shadow:
    0 28px 46px rgba(68, 34, 87, 0.12),
    0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.offer-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  width: 100%;
  padding: 0 6px;
}

.offer-name {
  margin: 0;
  text-align: left;
  font-size: 1rem;
  font-weight: 500;
  color: #17111a;
}

.offer-price-new {
  margin: 0;
  color: #2a1f30;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0;
}

.offer-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 18px;
}

.offer-image-model {
  object-position: center 12%;
}

.offer-card:hover .offer-image-model,
.offer-card:focus-within .offer-image-model {
  transform: scale(1.04);
  transition: transform 280ms ease;
}

.page-hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  align-items: center;
  padding: 72px 0 44px;
}

.hero-copy {
  animation: fade-up 650ms ease both;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(91, 45, 115, 0.1);
  color: var(--plum-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-title,
.panel-title {
  margin: 0;
  font-family: "Times New Roman", Georgia, serif;
  font-weight: 400;
  line-height: 0.95;
  color: var(--plum-deep);
}

.hero-title {
  font-size: clamp(3.5rem, 10vw, 6.5rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-text,
.panel-text {
  max-width: 48rem;
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--muted);
}

.hero-card {
  position: relative;
  min-height: 380px;
  padding: 30px;
  border-radius: 32px;
  overflow: hidden;
  background: linear-gradient(145deg, var(--plum) 0%, #7d4a96 100%);
  box-shadow: var(--shadow);
  animation: fade-up 760ms 80ms ease both;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 24px;
}

.hero-logo {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: contain;
  filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.16));
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page-panel {
  margin-bottom: 56px;
  padding: 34px;
  border: 1px solid rgba(91, 45, 115, 0.12);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 34px rgba(36, 24, 40, 0.08);
  animation: fade-up 760ms 120ms ease both;
}

.panel-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.panel-text {
  margin: 0;
}

.about-panel .panel-text {
  margin-bottom: 1.4em;
}

.about-panel .panel-text:last-child {
  margin-bottom: 0;
}

.about-panel {
  width: min(100% - 72px, 1560px);
  margin: 0 auto 56px;
  padding: 52px 12px 28px;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.about-story-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.35fr);
  align-items: start;
  column-gap: clamp(44px, 7vw, 120px);
}

.about-story-heading {
  align-self: start;
}

.about-story-content {
  max-width: 900px;
}

.about-story-heading .panel-title {
  margin: 0;
  font-size: clamp(3.8rem, 8vw, 6.6rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
  color: #111111;
}

.about-story-content .panel-text {
  font-size: clamp(1.15rem, 1.35vw, 1.38rem);
  line-height: 1.9;
  color: rgba(36, 24, 40, 0.92);
}

.about-story-content .panel-text:last-child {
  font-size: clamp(1.25rem, 1.5vw, 1.55rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-showcase {
  width: min(100% - 72px, 1600px);
  margin: 0 auto 72px;
  padding: 58px 0 18px;
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(380px, 1fr);
  align-items: start;
  column-gap: clamp(48px, 7vw, 130px);
}

.contact-showcase-copy {
  max-width: 700px;
}

.contact-kicker {
  margin: 0 0 34px;
  display: inline-block;
  font-size: 0.98rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #181818;
}

.contact-kicker-centered {
  display: block;
  width: 100%;
  text-align: center;
}

.contact-showcase-title {
  margin: 0 0 34px;
  max-width: 560px;
  font-size: clamp(3.2rem, 6vw, 5.6rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  font-weight: 500;
  color: #1b1b1b;
}

.contact-showcase-text {
  max-width: 730px;
  margin: 0 0 34px;
  font-size: clamp(1.02rem, 1.25vw, 1.22rem);
  line-height: 1.6;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #201523;
}

.contact-showcase-socials {
  display: flex;
  align-items: center;
  gap: 26px;
}

.contact-showcase-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #1f1f1f;
  text-decoration: none;
  transition: transform 160ms ease, color 160ms ease;
}

.contact-showcase-social:hover,
.contact-showcase-social:focus-visible {
  color: var(--plum-deep);
  transform: translateY(-1px);
}

.contact-showcase-social svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 1.5;
}

.contact-showcase-social svg rect,
.contact-showcase-social svg circle {
  fill: none;
}

.contact-showcase-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.contact-field {
  display: block;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  border: 1px solid rgba(36, 24, 40, 0.14);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.82);
  padding: 18px 20px;
  font: inherit;
  font-size: 1rem;
  color: #201523;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.contact-field textarea {
  min-height: 180px;
  resize: vertical;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: #5b4b62;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-color: rgba(68, 34, 87, 0.55);
  box-shadow: 0 0 0 4px rgba(91, 45, 115, 0.08);
  background: #ffffff;
}

.contact-submit {
  align-self: flex-start;
  min-width: 226px;
  min-height: 58px;
  border: none;
  background: #1d1a1d;
  color: var(--white);
  font: inherit;
  font-size: 1.02rem;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 160ms ease, background-color 160ms ease;
}

.contact-submit:hover,
.contact-submit:focus-visible {
  transform: translateY(-1px);
  background: var(--plum-deep);
}

.contact-information {
  width: min(100% - 72px, 1180px);
  margin: 0 auto 72px;
  padding: 12px 0 0;
}

.contact-information-header {
  text-align: center;
  margin-bottom: 42px;
}

.contact-information-title {
  margin: 0 0 20px;
  font-size: clamp(2.8rem, 5vw, 4.7rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  font-weight: 500;
  color: #1b1b1b;
  text-transform: uppercase;
}

.contact-information-text {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.7;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #201523;
}

.contact-information-board {
  border: 1.5px solid #1c1c1c;
  background: rgba(255, 255, 255, 0.82);
}

.contact-information-row {
  display: grid;
  grid-template-columns: minmax(180px, 0.85fr) minmax(0, 1.45fr);
  align-items: center;
  gap: 24px;
  padding: 28px 30px;
}

.contact-information-row + .contact-information-row {
  border-top: 1px solid rgba(28, 28, 28, 0.16);
}

.contact-information-label {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #171717;
}

.contact-information-value {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 1.08rem;
  line-height: 1.5;
  color: #1f1f1f;
}

.contact-information-value a {
  color: inherit;
  text-decoration: none;
}

.contact-information-value svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: none;
  stroke: #171717;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.shop-toolbar-shell {
  margin-bottom: 34px;
}

.shop-toolbar-content {
  width: min(100% - 36px, 1740px);
  margin: 0 auto;
  padding: 36px 0 0;
}

.shop-toolbar-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.8fr);
  gap: 28px;
  align-items: stretch;
  padding: 34px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(91, 45, 115, 0.14), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(238, 228, 244, 0.94));
  box-shadow: 0 22px 46px rgba(68, 34, 87, 0.12);
}

.shop-toolbar-copy {
  max-width: 880px;
}

.shop-breadcrumb,
.shop-results-copy,
.shop-summary-label,
.shop-summary-note,
.shop-toolbar-eyebrow,
.shop-toolbar-text {
  margin: 0;
}

.shop-breadcrumb {
  font-size: 0.96rem;
  color: #65576d;
}

.shop-breadcrumb a {
  color: #78677f;
  text-decoration: none;
}

.shop-breadcrumb span {
  font-weight: 700;
  color: var(--plum-deep);
}

.shop-toolbar-eyebrow {
  margin-top: 18px;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--plum-deep);
}

.shop-toolbar-title {
  margin: 14px 0 18px;
  max-width: 760px;
  font-family: "Didot", "Bodoni MT", "Book Antiqua", Georgia, serif;
  font-size: clamp(2.8rem, 5.4vw, 4.9rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
  color: #241828;
}

.shop-toolbar-text {
  max-width: 720px;
  font-size: clamp(1rem, 1.15vw, 1.16rem);
  line-height: 1.75;
  color: rgba(36, 24, 40, 0.82);
}

.shop-toolbar-summary {
  align-self: start;
  padding: 24px 22px;
  border: 1px solid rgba(91, 45, 115, 0.14);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.72);
}

.shop-summary-label {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #7f6f87;
}

.shop-results-copy {
  margin-top: 16px;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.35;
  color: #241828;
}

.shop-summary-note {
  margin-top: 18px;
  font-size: 0.98rem;
  line-height: 1.7;
  color: rgba(36, 24, 40, 0.72);
}

.shop-category-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
  padding: 8px 4px 0;
}

.shop-category-bar a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(91, 45, 115, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--plum-deep);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    transform 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease;
}

.shop-category-bar a:hover,
.shop-category-bar a:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(91, 45, 115, 0.3);
  background: rgba(255, 255, 255, 0.96);
}

.shop-toolbar-controls {
  margin-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 20px 24px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 16px 32px rgba(68, 34, 87, 0.08);
}

.shop-filter-backdrop {
  position: fixed;
  inset: 0;
  z-index: 34;
  background: rgba(36, 24, 40, 0.28);
}

.shop-filter-sidebar[hidden],
.shop-filter-backdrop[hidden] {
  display: none;
}

.shop-filter-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 35;
  width: min(420px, 100vw);
  background: #ffffff;
  box-shadow: 16px 0 40px rgba(36, 24, 40, 0.16);
  overflow: hidden;
}

.shop-filter-sidebar-top {
  display: flex;
  justify-content: flex-end;
  padding: 22px 24px;
  border-bottom: 1px solid rgba(36, 24, 40, 0.12);
}

.shop-filter-close {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: none;
  background: transparent;
  padding: 0;
  color: #241828;
  font: inherit;
  font-size: 1rem;
  cursor: pointer;
}

.shop-filter-close-icon {
  position: relative;
  width: 18px;
  height: 18px;
}

.shop-filter-close-icon::before,
.shop-filter-close-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 1.5px;
  background: #241828;
}

.shop-filter-close-icon::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.shop-filter-close-icon::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.shop-filter-sidebar-scroll {
  height: calc(100vh - 78px);
  overflow-y: auto;
}

.shop-filter-section {
  padding: 34px 36px;
  border-bottom: 1px solid rgba(36, 24, 40, 0.12);
}

.shop-filter-title {
  margin: 0 0 30px;
  font-size: 1.02rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #2b202f;
}

.shop-filter-range-track {
  position: relative;
  height: 36px;
  margin-bottom: 24px;
}

.shop-filter-range-track::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 3px;
  background: rgba(36, 24, 40, 0.2);
  transform: translateY(-50%);
}

.shop-filter-range-fill {
  position: absolute;
  top: 50%;
  height: 3px;
  background: #111111;
  transform: translateY(-50%);
}

.shop-filter-range-handle {
  position: absolute;
  top: 50%;
  width: 4px;
  height: 22px;
  background: #111111;
  transform: translateY(-50%);
  pointer-events: none;
}

.shop-filter-range-handle-left {
  left: 0;
}

.shop-filter-range-handle-right {
  right: 0;
}

.shop-filter-range-input {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 36px;
  margin: 0;
  background: transparent;
  appearance: none;
  pointer-events: none;
}

.shop-filter-range-input::-webkit-slider-runnable-track {
  height: 36px;
  background: transparent;
}

.shop-filter-range-input::-moz-range-track {
  height: 36px;
  background: transparent;
}

.shop-filter-range-input::-webkit-slider-thumb {
  width: 18px;
  height: 18px;
  margin-top: 9px;
  border: none;
  border-radius: 50%;
  background: transparent;
  appearance: none;
  pointer-events: auto;
  cursor: pointer;
}

.shop-filter-range-input::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border: none;
  border-radius: 50%;
  background: transparent;
  pointer-events: auto;
  cursor: pointer;
}

.shop-filter-range-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.shop-filter-range-copy {
  margin: 0;
  font-size: 0.98rem;
  color: #6e6672;
}

.shop-filter-action {
  min-width: 84px;
  min-height: 46px;
  border: none;
  background: #f3f0f4;
  color: #1f1f1f;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
}

.shop-filter-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.shop-filter-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  border: none;
  background: transparent;
  padding: 0;
  color: #6e6672;
  text-align: left;
  font-size: 0.98rem;
  cursor: pointer;
  transition: color 160ms ease, transform 160ms ease;
}

.shop-filter-item:hover,
.shop-filter-item:focus-visible {
  color: var(--plum-deep);
  transform: translateX(2px);
}

.shop-filter-item.is-active {
  color: #241828;
  font-weight: 600;
}

.shop-filter-count {
  min-width: 38px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(36, 24, 40, 0.14);
  border-radius: 999px;
  color: #9a919f;
  font-size: 0.92rem;
}

.shop-filter-item.is-active .shop-filter-count {
  border-color: rgba(91, 45, 115, 0.24);
  background: rgba(91, 45, 115, 0.08);
  color: var(--plum-deep);
}

.shop-sidebar-toggle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 46px;
  border: 1px solid rgba(91, 45, 115, 0.14);
  border-radius: 999px;
  background: rgba(91, 45, 115, 0.06);
  padding: 0 18px;
  color: var(--plum-deep);
  font: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 160ms ease, background-color 160ms ease;
}

.shop-sidebar-toggle-label {
  white-space: nowrap;
}

.shop-sidebar-toggle:hover,
.shop-sidebar-toggle:focus-visible {
  transform: translateY(-1px);
  background: rgba(91, 45, 115, 0.12);
}

.shop-sidebar-icon {
  width: 18px;
  display: inline-flex;
  flex-direction: column;
  gap: 3px;
}

.shop-sidebar-icon span {
  width: 100%;
  height: 2px;
  background: currentColor;
}

.shop-controls-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  flex-wrap: wrap;
}

.shop-grid-modes {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(91, 45, 115, 0.06);
}

.shop-grid-button {
  min-width: 36px;
  height: 36px;
  display: grid;
  align-items: center;
  justify-items: center;
  gap: 3px;
  border: 1px solid transparent;
  border-radius: 12px;
  background: transparent;
  padding: 6px 8px;
  cursor: pointer;
  transition:
    transform 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease;
}

.shop-grid-button-3 {
  width: 44px;
  grid-template-columns: repeat(3, 1fr);
}

.shop-grid-button-4 {
  width: 48px;
  grid-template-columns: repeat(4, 1fr);
}

.shop-grid-button-5 {
  width: 54px;
  grid-template-columns: repeat(5, 1fr);
}

.shop-grid-button:hover,
.shop-grid-button:focus-visible {
  transform: translateY(-1px);
  background: rgba(91, 45, 115, 0.08);
}

.shop-grid-button span {
  width: 100%;
  aspect-ratio: 1;
  background: rgba(91, 45, 115, 0.28);
}

.shop-grid-button.is-active {
  border-color: rgba(91, 45, 115, 0.16);
  background: rgba(255, 255, 255, 0.84);
}

.shop-grid-button.is-active span {
  background: var(--plum-deep);
}

.shop-sort-wrap {
  position: relative;
  min-width: 236px;
}

.shop-sort-wrap::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid #86768f;
  border-bottom: 1.5px solid #86768f;
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
}

.shop-sort-select {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(91, 45, 115, 0.14);
  border-radius: 999px;
  background: rgba(91, 45, 115, 0.06);
  color: #241828;
  font: inherit;
  font-size: 0.94rem;
  font-weight: 700;
  padding: 0 42px 0 18px;
  appearance: none;
  outline: none;
}

.shop-layout-panel {
  transition: width 220ms ease, transform 220ms ease;
  padding: 14px 0 8px;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  margin: 0 auto 72px;
}

.shop-layout-panel.shop-layout-compact {
  width: min(100% - 36px, 1200px);
}

.shop-layout-panel.shop-layout-standard {
  width: min(100% - 36px, 1480px);
}

.shop-layout-panel.shop-layout-wide {
  width: min(100% - 36px, 1740px);
}

.shop-product-grid {
  display: grid;
  gap: 30px 22px;
  align-items: start;
}

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

.shop-layout-standard .shop-product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.shop-layout-wide .shop-product-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.shop-product-card {
  min-width: 0;
  padding: 14px 14px 18px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 34px rgba(68, 34, 87, 0.08);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.shop-product-card:hover,
.shop-product-card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 24px 42px rgba(68, 34, 87, 0.12);
}

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

.shop-product-visual {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(232, 226, 235, 0.85));
  min-height: 420px;
}

.shop-product-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.shop-product-visual .collection-card-overlay {
  left: 18px;
  right: 18px;
  bottom: 18px;
  background: rgba(26, 16, 24, 0.9);
  color: #fff;
}

.shop-product-visual .collection-card-overlay:hover,
.shop-product-visual .collection-card-overlay:focus-visible {
  background: var(--plum-deep);
  color: #fff;
}

.shop-product-copy {
  padding: 16px 6px 0;
  text-align: left;
}

.shop-product-name {
  margin: 0 0 8px;
  font-size: 1.08rem;
  font-weight: 600;
  color: #211724;
}

.shop-product-price {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--plum-deep);
}

.site-footer {
  margin-top: 0;
  padding: 68px max(64px, 6vw) 74px;
  background: var(--plum-deep);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-grid {
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(360px, 2fr) repeat(3, minmax(140px, 1fr));
  align-items: start;
  column-gap: clamp(40px, 4vw, 76px);
  row-gap: 28px;
}

.footer-brand-block {
  max-width: none;
  min-width: 360px;
  align-self: start;
}

.footer-brand {
  margin: 0 0 20px;
  font-family: "Didot", "Bodoni MT", "Book Antiqua", Georgia, serif;
  font-size: clamp(3.5rem, 5vw, 5.3rem);
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 0.9;
}

.footer-tag {
  margin: 0 0 22px;
  font-size: 1.16rem;
  font-weight: 600;
  color: var(--white);
}

.footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 1.05rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-contact-item a {
  color: inherit;
  text-decoration: none;
}

.footer-contact-item svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--white);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-self: start;
}

.footer-heading {
  margin: 0 0 12px;
  font-size: 1.14rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.03em;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
  font-size: 0.98rem;
  line-height: 1.45;
  transition: color 160ms ease;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: #e8d6f1;
}

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

.footer-socials {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-social {
  width: 64px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  text-decoration: none;
  transition:
    transform 160ms ease,
    background-color 160ms ease;
}

.footer-social:hover,
.footer-social:focus-visible {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.2);
}

.footer-social svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 1.7;
}

.footer-social svg rect,
.footer-social svg circle {
  fill: none;
}

.auth-modal-open {
  overflow: hidden;
}

.auth-modal[hidden] {
  display: none;
}

.auth-modal {
  position: fixed;
  inset: 0;
  z-index: 35;
}

.auth-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(22, 15, 26, 0.5);
  backdrop-filter: blur(4px);
}

.auth-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(1280px, calc(100% - 36px));
  max-height: calc(100vh - 40px);
  margin: 20px auto;
  overflow: auto;
  background: #ffffff;
  border-top: 1px solid rgba(200, 173, 111, 0.72);
  box-shadow: 0 24px 54px rgba(28, 18, 35, 0.24);
}

.auth-modal-close {
  position: absolute;
  top: 18px;
  right: 22px;
  z-index: 2;
  border: 0;
  background: transparent;
  color: #1f1724;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.auth-modal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
}

.auth-modal-panel {
  padding: 72px 64px 50px;
}

.auth-modal-panel-register {
  border-left: 1px solid rgba(36, 24, 40, 0.14);
  text-align: center;
}

.auth-modal-title {
  margin: 0 0 28px;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #1d1522;
}

.auth-google-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 50px;
  padding: 0 16px;
  border: 1px solid rgba(36, 24, 40, 0.14);
  border-radius: 6px;
  background: #ffffff;
  color: #1d1522;
  font: inherit;
  font-size: 0.98rem;
  cursor: pointer;
}

.auth-panel-note {
  margin: 14px 0 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: #706579;
}

.auth-google-mark {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, #4285f4 0%, #34a853 50%, #fbbc05 75%, #ea4335 100%);
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 700;
}

.auth-login-form {
  margin-top: 20px;
}

.auth-register-form {
  margin-top: 24px;
  text-align: left;
}

.auth-forgot-form {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(36, 24, 40, 0.12);
}

.auth-forgot-copy {
  margin: 0 0 18px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #706579;
}

.auth-field {
  display: block;
  margin-bottom: 28px;
}

.auth-field span {
  display: block;
  margin-bottom: 10px;
  font-size: 1rem;
  color: #1d1522;
}

.auth-field strong {
  color: #d94c62;
}

.auth-input {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(36, 24, 40, 0.14);
  background: #ffffff;
  padding: 0 18px;
  font: inherit;
  font-size: 1rem;
  color: #1f1724;
}

.auth-password-wrap {
  position: relative;
  margin-bottom: 0;
}

.auth-password-wrap .auth-input {
  padding-right: 68px;
}

.auth-password-toggle {
  position: absolute;
  top: 1px;
  right: 1px;
  bottom: 1px;
  width: 56px;
  border: 0;
  background: #f4f4f4;
  color: #6d6874;
  cursor: pointer;
}

.auth-password-toggle svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.auth-primary-button,
.auth-register-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  border: 0;
  font: inherit;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease;
}

.auth-primary-button {
  width: 100%;
  background: var(--plum-deep);
  color: #ffffff;
}

.auth-primary-button-secondary {
  margin-top: 6px;
}

.auth-register-button {
  min-width: 154px;
  padding: 0 26px;
  background: #f5f5f5;
  color: #18202a;
}

.auth-primary-button:hover,
.auth-primary-button:focus-visible,
.auth-register-button:hover,
.auth-register-button:focus-visible,
.auth-google-button:hover,
.auth-google-button:focus-visible {
  transform: translateY(-1px);
}

.auth-form-footer {
  margin-top: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.auth-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #1d1522;
}

.auth-checkbox input {
  width: 18px;
  height: 18px;
}

.auth-secondary-link {
  color: #101010;
  text-decoration: none;
}

.auth-secondary-button {
  border: 0;
  padding: 0;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.auth-register-copy {
  max-width: 420px;
  margin: 0 auto 34px;
  font-size: 1rem;
  line-height: 1.9;
  color: #5e6670;
}

.auth-feedback {
  margin: 0 0 18px;
  padding: 14px 16px;
  border-radius: 14px;
  font-size: 0.95rem;
  line-height: 1.55;
}

.auth-feedback-error {
  background: rgba(217, 76, 98, 0.1);
  color: #8a1f35;
}

.auth-feedback-success {
  background: rgba(55, 138, 77, 0.1);
  color: #1f6b35;
}

.auth-feedback-info {
  background: rgba(68, 34, 87, 0.09);
  color: #4c2c5f;
}

.google-chooser[hidden] {
  display: none;
}

.google-chooser {
  position: fixed;
  inset: 0;
  z-index: 40;
}

.google-chooser-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 12, 18, 0.42);
  backdrop-filter: blur(3px);
}

.google-chooser-dialog {
  position: relative;
  z-index: 1;
  width: min(660px, calc(100% - 24px));
  margin: 28px auto;
  overflow: hidden;
  border-radius: 18px;
  background: #171717;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 32px 72px rgba(0, 0, 0, 0.42);
}

.google-chooser-close {
  position: absolute;
  top: 46px;
  right: 18px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.google-browser-chrome {
  background: #111111;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.google-browser-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 34px;
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.92);
}

.google-browser-tab-title {
  font-size: 0.9rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.google-browser-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.google-browser-actions span {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
}

.google-browser-addressbar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px 14px;
}

.google-browser-lock {
  width: 10px;
  height: 10px;
  border: 1.6px solid rgba(255, 255, 255, 0.68);
  border-radius: 2px;
  position: relative;
}

.google-browser-lock::before {
  content: "";
  position: absolute;
  left: 1px;
  right: 1px;
  top: -6px;
  height: 6px;
  border: 1.6px solid rgba(255, 255, 255, 0.68);
  border-bottom: 0;
  border-radius: 6px 6px 0 0;
}

.google-browser-url {
  min-height: 34px;
  flex: 1;
  display: flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  background: #202124;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.94rem;
}

.google-chooser-panel {
  padding: 22px 0 12px;
}

.google-chooser-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 28px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.google-chooser-logo {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, #4285f4 0%, #34a853 50%, #fbbc05 75%, #ea4335 100%);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
}

.google-chooser-brand-text {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
}

.google-chooser-hero {
  padding: 48px 28px 18px;
}

.google-chooser-title {
  margin: 0;
  font-size: clamp(2.1rem, 5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.08;
  color: #ffffff;
}

.google-chooser-copy {
  margin: 18px 0 0;
  font-size: 1.06rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.google-chooser-copy span {
  color: #8ab4f8;
}

.google-chooser-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 12px;
}

.google-account-option {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 14px 28px;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: background-color 160ms ease, transform 160ms ease;
}

.google-account-option:hover,
.google-account-option:focus-visible {
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-1px);
}

.google-account-avatar {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  flex: 0 0 auto;
}

.google-account-avatar-plum {
  background: var(--plum-deep);
}

.google-account-avatar-sand {
  background: #c7aa65;
}

.google-account-avatar-neutral {
  background: #2d2f31;
  color: rgba(255, 255, 255, 0.76);
}

.google-account-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.google-account-text strong {
  font-size: 0.98rem;
  font-weight: 600;
  color: #ffffff;
}

.google-account-text small {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.68);
}

.google-account-option-alt .google-account-text strong {
  font-weight: 500;
}

.google-chooser-note {
  margin: 18px 28px 0;
  font-size: 0.82rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.56);
}

.account-page {
  width: min(100% - 40px, 1880px);
  margin: 0 auto 72px;
  padding-top: 34px;
}

.account-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.28fr) minmax(0, 0.72fr);
  gap: 36px;
  align-items: start;
}

.account-sidebar {
  border-right: 1px solid rgba(36, 24, 40, 0.14);
  padding-right: 36px;
}

.account-sidebar-title {
  margin: 0 0 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(36, 24, 40, 0.14);
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #1d1522;
}

.account-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.account-nav-button {
  width: 100%;
  min-height: 50px;
  border: 0;
  padding: 0 18px;
  background: transparent;
  color: #1d1522;
  text-align: left;
  font: inherit;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.account-nav-button.is-active,
.account-nav-button:hover,
.account-nav-button:focus-visible {
  background: #f1f1f1;
  transform: translateY(-1px);
}

.account-content {
  min-width: 0;
}

.account-alert {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 28px;
  padding: 18px 22px;
  background: #dfb64e;
  color: #ffffff;
}

.account-alert-icon {
  width: 24px;
  height: 24px;
  border: 2px solid currentColor;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  font-size: 0.98rem;
  font-weight: 700;
  flex: 0 0 auto;
}

.account-alert p,
.account-intro,
.account-description {
  margin: 0;
}

.account-intro {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #43414a;
}

.account-intro strong {
  color: #1d1522;
}

.account-inline-logout {
  border: 0;
  padding: 0;
  background: transparent;
  color: #1d1522;
  font: inherit;
  cursor: pointer;
}

.account-description {
  margin-top: 22px;
  font-size: 1rem;
  line-height: 1.8;
  color: #6a6471;
}

.account-panels {
  margin-top: 28px;
}

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

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

.account-dashboard-card {
  min-height: 152px;
  border: 1px solid rgba(36, 24, 40, 0.1);
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.account-dashboard-card:hover,
.account-dashboard-card:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(36, 24, 40, 0.08);
}

.account-card-icon {
  width: 64px;
  height: 64px;
  color: #b9b9b9;
}

.account-card-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.account-dashboard-card span {
  font-size: 1rem;
  font-weight: 500;
  color: #2f3136;
}

.account-section-card {
  border: 1px solid rgba(36, 24, 40, 0.1);
  background: #ffffff;
  padding: 28px;
}

.account-section-title {
  margin: 0 0 12px;
  font-size: 1.45rem;
  color: #1d1522;
}

.account-section-text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.8;
  color: #6a6471;
}

.account-account-form {
  margin-top: 26px;
  display: grid;
  gap: 18px;
}

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

.account-field {
  display: block;
}

.account-field span {
  display: block;
  margin-bottom: 10px;
  font-size: 0.96rem;
  font-weight: 600;
  color: #1d1522;
}

.account-field input {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(36, 24, 40, 0.14);
  background: #ffffff;
  padding: 0 16px;
  font: inherit;
  color: #1d1522;
}

.account-field input[readonly] {
  background: #f5f5f5;
  color: #6f6676;
}

.account-form-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.account-action-button,
.account-logout-button {
  min-height: 50px;
  border: 0;
  padding: 0 24px;
  background: var(--plum-deep);
  color: #ffffff;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
}

.account-logout-button {
  background: #1d1522;
}

.account-inline-feedback {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.55;
}

.account-inline-feedback.is-error {
  color: #8a1f35;
}

.account-inline-feedback.is-success {
  color: #1f6b35;
}

.account-guest-card {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 40px;
  border: 1px solid rgba(36, 24, 40, 0.1);
  background: #ffffff;
  text-align: center;
}

.account-guest-card h1 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 5vw, 3rem);
  color: #1d1522;
}

.account-guest-card p {
  margin: 0 auto 24px;
  max-width: 42rem;
  font-size: 1rem;
  line-height: 1.8;
  color: #6a6471;
}

.account-guest-button {
  min-height: 52px;
  border: 0;
  padding: 0 26px;
  background: var(--plum-deep);
  color: #ffffff;
  font: inherit;
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
}

.cart-page {
  width: min(100% - 40px, 1480px);
  margin: 0 auto 72px;
  padding-top: 34px;
}

.cart-hero {
  margin-bottom: 28px;
}

.cart-kicker {
  margin: 0 0 12px;
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--plum-deep);
}

.cart-title {
  margin: 0 0 14px;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.02;
  color: #1d1522;
}

.cart-copy {
  max-width: 780px;
  margin: 0;
  font-size: 1rem;
  line-height: 1.75;
  color: #645b6a;
}

.cart-empty-state {
  padding: 48px 40px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 36px rgba(68, 34, 87, 0.08);
  text-align: center;
  max-width: 600px;
  margin: 60px auto;
}

.cart-empty-state h2 {
  margin: 0 0 14px;
  font-size: 2rem;
  color: #1d1522;
}

.cart-empty-state p {
  max-width: 620px;
  margin: 0 auto 22px;
  font-size: 1rem;
  line-height: 1.75;
  color: #645b6a;
}

.cart-empty-button,
.cart-checkout-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border: 0;
  padding: 0 28px;
  background: var(--plum-deep);
  color: #ffffff;
  text-decoration: none;
  font: inherit;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
}

.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.7fr);
  gap: 28px;
  align-items: start;
}

.cart-items-panel,
.cart-summary-card {
  padding: 28px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 36px rgba(68, 34, 87, 0.08);
}

.cart-section-head,
.cart-summary-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cart-section-head {
  margin-bottom: 20px;
}

.cart-section-head h2,
.cart-summary-card h2 {
  margin: 0;
  font-size: 1.7rem;
  color: #1d1522;
}

.cart-section-head p,
.cart-summary-text,
.cart-line-meta {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.7;
  color: #645b6a;
}

.cart-items-list {
  display: grid;
  gap: 18px;
}

.cart-line-item {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 16px;
  border-radius: 24px;
  background: rgba(246, 241, 248, 0.82);
}

.cart-line-image {
  width: 130px;
  height: 158px;
  border-radius: 20px;
  object-fit: cover;
}

.cart-line-title {
  margin: 0 0 8px;
  font-size: 1.15rem;
  color: #1d1522;
}

.cart-line-price,
.cart-line-total {
  margin: 12px 0 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--plum-deep);
}

.cart-line-controls {
  display: grid;
  justify-items: end;
  gap: 14px;
}

.cart-line-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(36, 24, 40, 0.14);
  border-radius: 999px;
  overflow: hidden;
  background: #ffffff;
}

.cart-line-qty button {
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  font: inherit;
  font-size: 1.2rem;
  cursor: pointer;
}

.cart-line-qty span {
  min-width: 38px;
  text-align: center;
  font-weight: 700;
  color: #1d1522;
}

.cart-line-remove {
  border: 0;
  padding: 0;
  background: transparent;
  font: inherit;
  font-size: 0.95rem;
  color: #7c3046;
  cursor: pointer;
}

.cart-summary-text {
  margin-top: 12px;
}

.cart-summary-total {
  margin: 24px 0 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(36, 24, 40, 0.12);
}

.cart-summary-total strong {
  font-size: 1.2rem;
  color: #1d1522;
}

.cart-checkout-form {
  display: grid;
  gap: 16px;
}

.cart-field {
  display: block;
}

.cart-field span {
  display: block;
  margin-bottom: 8px;
  font-size: 0.94rem;
  font-weight: 600;
  color: #1d1522;
}

.cart-field input,
.cart-field textarea {
  width: 100%;
  border: 1px solid rgba(36, 24, 40, 0.14);
  background: #ffffff;
  padding: 14px 16px;
  font: inherit;
  color: #1d1522;
}

.cart-feedback {
  margin: 0;
  min-height: 24px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.cart-feedback.is-error {
  color: #8a1f35;
}

.cart-feedback.is-success {
  color: #1f6b35;
}

.cart-drawer-open {
  overflow: hidden;
}

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

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 42;
}

.cart-drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 10, 26, 0.28);
  backdrop-filter: blur(6px);
}

.cart-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(560px, 100%);
  height: 100%;
  padding: 34px 32px 28px;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 24px;
  background: rgba(255, 255, 255, 0.94);
  border-left: 1px solid rgba(91, 45, 115, 0.12);
  box-shadow: -28px 0 56px rgba(23, 18, 27, 0.16);
  backdrop-filter: blur(14px);
}

.cart-drawer-head,
.cart-drawer-title-wrap,
.cart-drawer-subtotal,
.cart-drawer-actions {
  display: flex;
  align-items: center;
}

.cart-drawer-head,
.cart-drawer-subtotal,
.cart-drawer-actions {
  justify-content: space-between;
}

.cart-drawer-title-wrap {
  gap: 14px;
}

.cart-drawer-title {
  margin: 0;
  font-size: 2rem;
  color: #1d1522;
}

.cart-drawer-count {
  min-width: 40px;
  height: 40px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #b5a47d;
  color: #ffffff;
  font-weight: 700;
}

.cart-drawer-close {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(91, 45, 115, 0.12);
  border-radius: 999px;
  background: rgba(248, 242, 251, 0.8);
  color: #4d4854;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition:
    transform 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease;
}

.cart-drawer-close:hover,
.cart-drawer-close:focus-visible {
  transform: translateY(-1px);
  background: rgba(91, 45, 115, 0.1);
  border-color: rgba(91, 45, 115, 0.18);
}

.cart-drawer-body {
  overflow: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(91, 45, 115, 0.12);
}

.cart-drawer-items {
  display: grid;
  gap: 24px;
}

.cart-drawer-empty {
  color: #645b6a;
  line-height: 1.7;
}

.cart-drawer-item {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  padding: 16px;
  border: 1px solid rgba(91, 45, 115, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.7);
}

.cart-drawer-image {
  width: 112px;
  height: 138px;
  object-fit: cover;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f6f0fa 100%);
  box-shadow: inset 0 0 0 1px rgba(91, 45, 115, 0.08);
}

.cart-drawer-item-title {
  margin: 0 0 8px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  text-transform: uppercase;
  color: #111111;
}

.cart-drawer-item-price {
  margin: 0 0 16px;
  font-size: 1rem;
  color: #1d1522;
}

.cart-drawer-qty,
.cart-table-qty {
  display: inline-flex;
  align-items: center;
  padding: 4px;
  border: 1px solid rgba(91, 45, 115, 0.12);
  border-radius: 999px;
  background: rgba(248, 242, 251, 0.78);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.75);
}

.cart-drawer-qty button,
.cart-table-qty button {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  font: inherit;
  font-size: 1.1rem;
  color: #4d4854;
  cursor: pointer;
  transition:
    background-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.cart-drawer-qty button:hover,
.cart-drawer-qty button:focus-visible,
.cart-table-qty button:hover,
.cart-table-qty button:focus-visible {
  transform: translateY(-1px);
  background: rgba(91, 45, 115, 0.1);
  color: var(--plum-deep);
}

.cart-drawer-qty span,
.cart-table-qty span {
  min-width: 38px;
  text-align: center;
  color: #3f3346;
  font-weight: 600;
}

.cart-drawer-foot {
  border-top: 1px solid rgba(91, 45, 115, 0.12);
  padding-top: 22px;
}

.cart-drawer-subtotal {
  margin-bottom: 24px;
  font-size: 1.1rem;
  color: #111111;
}

.cart-drawer-subtotal strong {
  font-size: 1.2rem;
}

.cart-drawer-actions {
  gap: 16px;
}

.cart-drawer-link,
.cart-drawer-checkout {
  flex: 1 1 0;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(36, 24, 40, 0.12);
  text-decoration: none;
  font-weight: 600;
}

.cart-drawer-link {
  background: #ffffff;
  color: #111111;
}

.cart-drawer-checkout {
  background: #111111;
  color: #ffffff;
}

.cart-page-breadcrumb {
  margin: 0 0 24px;
  font-size: 0.95rem;
  color: #57515c;
}

.cart-page-breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.cart-page-breadcrumb span {
  margin: 0 8px;
}

.cart-page-heading,
.checkout-heading {
  margin: 0 0 34px;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 1;
  color: #101010;
}

.cart-page-full {
  padding-top: 50px;
}

.cart-full-layout,
.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(320px, 0.85fr);
  gap: 42px;
  align-items: start;
}

.cart-table-panel,
.cart-totals-panel,
.checkout-summary-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(91, 45, 115, 0.12);
  border-radius: 30px;
  box-shadow: 0 24px 60px rgba(68, 34, 87, 0.08);
  backdrop-filter: blur(12px);
}

.cart-table-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  gap: 12px;
  padding: 26px 30px 22px;
  border-bottom: 1px solid rgba(91, 45, 115, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(246, 240, 250, 0.72) 100%);
  color: #221728;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cart-table-head span:last-child {
  text-align: right;
}

.cart-table-body {
  background: transparent;
}

.cart-table-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  gap: 12px;
  padding: 30px;
  border-top: 1px solid rgba(91, 45, 115, 0.1);
  background: rgba(255, 255, 255, 0.56);
}

.cart-table-row:first-child {
  border-top: 0;
}

.cart-table-product {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr) auto;
  gap: 22px;
  align-items: start;
}

.cart-table-image {
  width: 112px;
  height: 136px;
  object-fit: cover;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #f6f0fa 100%);
  box-shadow: inset 0 0 0 1px rgba(91, 45, 115, 0.08);
}

.cart-table-title {
  margin: 0 0 10px;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #1f1623;
}

.cart-table-price,
.cart-table-total {
  margin: 0;
  font-size: 1rem;
  color: #6a5d69;
}

.cart-table-meta {
  margin: 8px 0 0;
  font-size: 0.94rem;
  line-height: 1.55;
  color: #645b6a;
}

.cart-table-qty {
  margin-top: 18px;
}

.cart-table-remove {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(91, 45, 115, 0.12);
  border-radius: 999px;
  background: rgba(248, 242, 251, 0.84);
  color: #645b6a;
  cursor: pointer;
  transition:
    transform 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
}

.cart-table-remove:hover,
.cart-table-remove:focus-visible {
  transform: translateY(-1px);
  background: rgba(91, 45, 115, 0.1);
  border-color: rgba(91, 45, 115, 0.18);
  color: var(--plum-deep);
}

.cart-table-remove svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cart-table-total {
  text-align: right;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--plum-deep);
}

.cart-totals-title,
.checkout-summary-card h2 {
  margin: 0 0 22px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #241828;
}

.cart-coupon-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border: 1px solid rgba(91, 45, 115, 0.12);
  border-radius: 20px;
  background: rgba(249, 244, 252, 0.88);
  font: inherit;
  font-size: 1rem;
  color: #4d4854;
  cursor: pointer;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background-color 160ms ease;
}

.cart-coupon-toggle:hover,
.cart-coupon-toggle:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(91, 45, 115, 0.18);
  background: rgba(245, 236, 250, 0.95);
}

.cart-coupon-arrow {
  transition: transform 160ms ease;
}

.cart-coupon-toggle.is-open .cart-coupon-arrow {
  transform: rotate(180deg);
}

.cart-coupon-panel {
  margin-top: 12px;
  padding: 16px 18px 18px;
  border: 1px solid rgba(91, 45, 115, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  color: #645b6a;
  line-height: 1.7;
}

.cart-totals-row,
.checkout-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0 0;
  color: #4d4854;
}

.cart-totals-note {
  padding: 16px 0 24px;
  border-bottom: 1px solid rgba(91, 45, 115, 0.1);
  color: #4d4854;
}

.cart-estimated-total,
.checkout-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 26px 0 0;
  margin-top: 22px;
  border-top: 1px solid rgba(91, 45, 115, 0.1);
}

.cart-estimated-total span,
.checkout-total-row span {
  font-size: 1.15rem;
  color: #4d4854;
}

.cart-estimated-total strong,
.checkout-total-row strong {
  font-size: 2rem;
  font-weight: 700;
  color: var(--plum-deep);
}

.cart-proceed-button,
.checkout-place-order {
  width: 100%;
  min-height: 62px;
  border: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--plum) 0%, var(--plum-deep) 100%);
  color: #ffffff;
  font: inherit;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 18px 34px rgba(68, 34, 87, 0.2);
  cursor: pointer;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    filter 160ms ease;
}

.cart-proceed-button:hover,
.cart-proceed-button:focus-visible,
.checkout-place-order:hover,
.checkout-place-order:focus-visible {
  transform: translateY(-1px);
  filter: saturate(1.05);
  box-shadow: 0 22px 40px rgba(68, 34, 87, 0.24);
}

.cart-proceed-button[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}

.checkout-page {
  width: min(100% - 40px, 1800px);
  margin: 0 auto 72px;
  padding-top: 50px;
}

.checkout-main {
  min-width: 0;
}

.checkout-form {
  display: grid;
  gap: 34px;
}

.checkout-section h2 {
  margin: 0 0 16px;
  font-size: 1.1rem;
  color: #111111;
}

.checkout-help,
.checkout-inline-copy,
.checkout-legal,
.checkout-payment-card p {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.7;
  color: #645b6a;
}

.checkout-field {
  display: block;
}

.checkout-field input,
.checkout-field select,
.checkout-field textarea {
  width: 100%;
  min-height: 60px;
  border: 1px solid rgba(91, 45, 115, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  padding: 0 18px;
  font: inherit;
  font-size: 1rem;
  color: #1d1522;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease;
}

.checkout-field input:focus,
.checkout-field select:focus,
.checkout-field textarea:focus {
  outline: none;
  border-color: rgba(91, 45, 115, 0.34);
  box-shadow: 0 0 0 4px rgba(91, 45, 115, 0.08);
  background: #ffffff;
}

.checkout-field textarea {
  padding-top: 16px;
  padding-bottom: 16px;
}

.checkout-two-col,
.checkout-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.checkout-choice-card,
.checkout-radio-card,
.checkout-payment-card {
  display: block;
  border: 1px solid rgba(91, 45, 115, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 34px rgba(68, 34, 87, 0.05);
  cursor: pointer;
}

.checkout-payment-card:has(input:checked) {
  border-color: rgba(91, 45, 115, 0.22);
  box-shadow:
    inset 0 0 0 1px rgba(91, 45, 115, 0.2),
    0 18px 36px rgba(68, 34, 87, 0.08);
}

.checkout-choice-card input,
.checkout-radio-card input,
.checkout-payment-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.checkout-choice-content {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  background: rgba(246, 240, 250, 0.82);
  color: #4d4854;
  font-weight: 600;
}

.checkout-choice-card input:checked + .checkout-choice-content {
  background: #ffffff;
  box-shadow:
    inset 0 0 0 2px rgba(91, 45, 115, 0.24),
    0 16px 34px rgba(68, 34, 87, 0.08);
  color: var(--plum-deep);
}

.checkout-radio-card,
.checkout-payment-card {
  padding: 20px 22px;
}

.checkout-radio-card span,
.checkout-payment-card strong {
  color: #4d4854;
}

.checkout-payment-card p {
  margin-top: 10px;
}

.checkout-payment-card.is-emphasis {
  border-color: rgba(91, 45, 115, 0.22);
  box-shadow:
    inset 0 0 0 1px rgba(91, 45, 115, 0.2),
    0 18px 36px rgba(68, 34, 87, 0.08);
}

.checkout-note-toggle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #111111;
}

.checkout-note-toggle input {
  width: 24px;
  height: 24px;
}

.checkout-note-field {
  margin-top: 18px;
}

.checkout-actions {
  padding-top: 22px;
  border-top: 1px solid rgba(91, 45, 115, 0.12);
}

.checkout-action-row {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.checkout-return {
  color: var(--plum-deep);
  text-decoration: none;
  font-size: 1rem;
}

.checkout-place-order {
  max-width: 168px;
}

.checkout-feedback {
  margin: 18px 0 0;
  min-height: 24px;
  font-size: 0.95rem;
}

.checkout-feedback.is-error {
  color: #8a1f35;
}

.checkout-feedback.is-success {
  color: #1f6b35;
}

.checkout-summary-panel {
  min-width: 0;
}

.checkout-summary-card {
  position: sticky;
  top: calc(var(--header-height) + 30px);
  padding: 28px 24px;
}

.checkout-summary-items {
  display: grid;
  gap: 0;
}

.checkout-summary-item {
  display: grid;
  grid-template-columns: 98px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid rgba(91, 45, 115, 0.1);
}

.checkout-summary-media {
  position: relative;
  width: 98px;
}

.checkout-summary-image {
  width: 98px;
  height: 122px;
  object-fit: cover;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f6f0fa 100%);
  box-shadow: inset 0 0 0 1px rgba(91, 45, 115, 0.08);
}

.checkout-summary-badge {
  position: absolute;
  top: -12px;
  right: -10px;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--plum-deep);
  color: #ffffff;
  font-weight: 700;
}

.checkout-summary-title {
  margin: 0 0 8px;
  font-size: 1rem;
  font-weight: 700;
  color: #302336;
}

.checkout-summary-price,
.checkout-summary-meta,
.checkout-summary-line-total {
  margin: 0;
  font-size: 0.98rem;
  color: #6a5d69;
}

.cart-table-panel {
  overflow: hidden;
}

.cart-totals-panel {
  position: sticky;
  top: calc(var(--header-height) + 30px);
  padding: 26px 24px 24px;
}

.cart-table-row:last-child,
.checkout-summary-item:last-child {
  border-bottom: 0;
}

.cart-table-row:last-child {
  border-radius: 0 0 30px 30px;
}

.cart-copy {
  margin: 0 0 8px;
  font-size: 1.05rem;
  color: #6a5d69;
}

body.order-ui {
  background: #ffffff;
}

body.order-ui::before {
  display: none;
}

.order-ui .site-header {
  background: #ffffff;
  border-bottom: 1px solid #ece7ef;
}

.order-ui .brand-name {
  color: #181118;
}

.order-ui .cart-page,
.order-ui .checkout-page {
  width: min(100% - 80px, 1800px);
  padding-top: 34px;
  min-height: calc(100vh - var(--header-height));
}

.order-ui .cart-page-breadcrumb {
  margin-bottom: 28px;
  color: #67616a;
}

.order-ui .cart-page-heading,
.order-ui .checkout-heading {
  margin-bottom: 28px;
  font-size: clamp(3rem, 5vw, 4.8rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #080808;
}

.order-ui .cart-copy {
  margin-bottom: 0;
  font-size: 1rem;
  color: #66606b;
}

.order-ui .cart-full-layout,
.order-ui .checkout-layout {
  gap: 52px;
  align-items: start;
}

.order-ui .cart-page {
  padding-bottom: 56px;
}

.order-ui .cart-table-panel,
.order-ui .cart-totals-panel,
.order-ui .checkout-summary-card {
  background: #ffffff;
  border: 1px solid #e8e2ea;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.order-ui .cart-table-head {
  padding: 24px 24px 26px;
  border-bottom: 1px solid #e8e2ea;
  background: #ffffff;
  color: #080808;
  font-size: 0.98rem;
  font-weight: 500;
  letter-spacing: 0;
}

.order-ui .cart-table-body {
  background: #ffffff;
}

.order-ui .cart-table-row {
  padding: 26px 24px;
  border-top: 1px solid #eee8ef;
  background: #ffffff;
}

.order-ui .cart-table-row:last-child {
  border-radius: 0;
}

.order-ui .cart-table-product {
  grid-template-columns: 130px minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
}

.order-ui .cart-table-image {
  width: 130px;
  height: 162px;
  object-fit: contain;
  border-radius: 0;
  background: #f7f5f8;
  box-shadow: none;
}

.order-ui .cart-table-title {
  margin-bottom: 8px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0;
  color: #080808;
}

.order-ui .cart-table-price,
.order-ui .cart-table-meta,
.order-ui .cart-table-total,
.order-ui .checkout-summary-price,
.order-ui .checkout-summary-meta,
.order-ui .checkout-summary-line-total {
  color: #6b6470;
}

.order-ui .cart-table-meta {
  margin-top: 4px;
  line-height: 1.45;
}

.order-ui .cart-table-total {
  font-size: 1rem;
  font-weight: 400;
  color: #6b6470;
}

.order-ui .cart-table-qty,
.order-ui .cart-drawer-qty {
  padding: 0;
  border: 1px solid #ddd6df;
  border-radius: 6px;
  background: #ffffff;
  box-shadow: none;
}

.order-ui .cart-table-qty button,
.order-ui .cart-drawer-qty button {
  width: 44px;
  height: 44px;
  border-radius: 0;
  color: #8a8390;
  transform: none;
}

.order-ui .cart-table-qty button:hover,
.order-ui .cart-table-qty button:focus-visible,
.order-ui .cart-drawer-qty button:hover,
.order-ui .cart-drawer-qty button:focus-visible {
  background: #f7f5f8;
  color: #3b3640;
  transform: none;
}

.order-ui .cart-table-qty span,
.order-ui .cart-drawer-qty span {
  min-width: 48px;
  color: #4b4450;
  font-weight: 400;
}

.order-ui .cart-table-remove {
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #74707a;
}

.order-ui .cart-table-remove:hover,
.order-ui .cart-table-remove:focus-visible {
  background: transparent;
  border-color: transparent;
  color: #1a1a1a;
  transform: none;
}

.order-ui .cart-table-remove svg {
  width: 28px;
  height: 28px;
}

.order-ui .cart-totals-panel {
  position: static;
  padding: 24px 18px 18px;
}

.order-ui .checkout-summary-card {
  position: static;
  padding: 24px 18px 18px;
}

.order-ui .cart-totals-title,
.order-ui .checkout-summary-card h2 {
  margin-bottom: 22px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0;
  color: #111111;
}

.order-ui .cart-coupon-toggle {
  padding: 18px 0;
  border: 0;
  border-top: 1px solid #e8e2ea;
  border-bottom: 1px solid #e8e2ea;
  border-radius: 0;
  background: transparent;
  color: #4e4751;
  transform: none;
}

.order-ui .cart-coupon-toggle:hover,
.order-ui .cart-coupon-toggle:focus-visible {
  border-color: #e8e2ea;
  background: transparent;
  transform: none;
}

.order-ui .cart-coupon-panel {
  margin-top: 0;
  padding: 14px 0 18px;
  border: 0;
  border-bottom: 1px solid #e8e2ea;
  border-radius: 0;
  background: transparent;
}

.order-ui .cart-totals-row,
.order-ui .checkout-total-row {
  padding-top: 18px;
  color: #4e4751;
}

.order-ui .cart-totals-row strong,
.order-ui .checkout-total-row strong {
  font-weight: 400;
}

.order-ui .cart-totals-note {
  padding: 18px 0 24px;
  border-bottom: 1px solid #e8e2ea;
}

.order-ui .cart-estimated-total,
.order-ui .checkout-total-row {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid #e8e2ea;
}

.order-ui .cart-estimated-total span,
.order-ui .checkout-total-row span {
  font-size: 1.05rem;
  color: #4e4751;
}

.order-ui .cart-estimated-total strong,
.order-ui .checkout-total-row strong {
  font-size: 1.55rem;
  font-weight: 400;
  color: #4e4751;
}

.order-ui .cart-proceed-button,
.order-ui .checkout-place-order {
  min-height: 64px;
  border-radius: 0;
  background: #3f434a;
  box-shadow: none;
  font-size: 0.98rem;
  font-weight: 500;
  transition: background-color 160ms ease;
}

.order-ui .cart-proceed-button:hover,
.order-ui .cart-proceed-button:focus-visible,
.order-ui .checkout-place-order:hover,
.order-ui .checkout-place-order:focus-visible {
  background: #30343a;
  box-shadow: none;
  filter: none;
  transform: none;
}

.order-ui .checkout-section h2 {
  font-size: 1.1rem;
  font-weight: 700;
}

.order-ui .checkout-field input,
.order-ui .checkout-field select,
.order-ui .checkout-field textarea {
  border: 1px solid #d9d3dc;
  border-radius: 0;
  background: #ffffff;
  box-shadow: none;
}

.order-ui .checkout-field input:focus,
.order-ui .checkout-field select:focus,
.order-ui .checkout-field textarea:focus {
  border-color: #8c8591;
  box-shadow: none;
}

.order-ui .checkout-choice-card,
.order-ui .checkout-radio-card,
.order-ui .checkout-payment-card {
  border: 1px solid #d9d3dc;
  border-radius: 0;
  background: #ffffff;
  box-shadow: none;
}

.order-ui .checkout-choice-content {
  border-radius: 0;
  background: #f5f4f6;
  font-weight: 500;
}

.order-ui .checkout-choice-card input:checked + .checkout-choice-content {
  background: #ffffff;
  box-shadow: inset 0 0 0 1px #6f6975;
  color: #2c2830;
}

.order-ui .checkout-payment-card:has(input:checked) {
  border-color: #6f6975;
  box-shadow: inset 0 0 0 1px #6f6975;
}

.order-ui .checkout-summary-item {
  grid-template-columns: 90px minmax(0, 1fr) auto;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid #e8e2ea;
}

.order-ui .checkout-summary-image {
  width: 90px;
  height: 118px;
  object-fit: contain;
  border-radius: 0;
  background: #f7f5f8;
  box-shadow: none;
}

.order-ui .checkout-summary-badge {
  top: 6px;
  right: 6px;
  width: 26px;
  height: 26px;
  background: #6b6a70;
  font-size: 0.82rem;
}

.order-ui .checkout-summary-title {
  font-weight: 500;
  color: #2d2831;
}

.order-ui .checkout-return {
  color: #1a1a1a;
}

/* Typography refinement: reduce the "AI mockup" feel by calming scale and spacing. */
body {
  font-family: "Aptos", "Trebuchet MS", "Segoe UI", sans-serif;
  line-height: 1.55;
}

.brand-name {
  font-size: clamp(1.75rem, 2.6vw, 2.3rem);
  letter-spacing: 0.12em;
  line-height: 0.96;
}

.nav-link {
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.tagline-strip-text {
  font-family: "Aptos", "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: clamp(1rem, 2vw, 1.45rem);
  letter-spacing: 0.08em;
}

.collection-kicker,
.offer-kicker,
.shop-toolbar-eyebrow,
.contact-kicker,
.eyebrow,
.footer-heading,
.contact-information-label,
.shop-summary-label {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
}

.collection-title,
.offer-title {
  font-family: "Didot", "Bodoni MT", "Book Antiqua", Georgia, serif;
  font-size: clamp(1.65rem, 2.8vw, 2.35rem);
  font-weight: 400;
  letter-spacing: 0.02em;
}

.collection-item-name,
.offer-name,
.shop-product-name {
  font-size: 0.96rem;
  font-weight: 500;
}

.collection-item-price,
.offer-price-new,
.shop-product-price {
  font-size: 0.95rem;
  letter-spacing: 0;
}

.collection-card-overlay,
.view-all-button,
.contact-submit,
.cart-proceed-button,
.checkout-place-order {
  font-size: 0.88rem;
  letter-spacing: 0.05em;
}

.hero-title {
  font-size: clamp(2.8rem, 7vw, 4.9rem);
  letter-spacing: 0.03em;
  line-height: 0.98;
}

.panel-title {
  font-size: clamp(1.9rem, 3.5vw, 2.7rem);
  line-height: 1;
}

.hero-text,
.panel-text,
.shop-toolbar-text,
.contact-showcase-text,
.contact-information-text,
.about-story-content .panel-text {
  font-size: 1rem;
  line-height: 1.7;
  letter-spacing: 0;
  text-transform: none;
}

.about-story-heading .panel-title {
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 0.98;
}

.about-story-content .panel-text:last-child {
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: none;
}

.contact-showcase-title {
  font-size: clamp(2.7rem, 5vw, 4.6rem);
  line-height: 0.98;
}

.contact-information-title {
  font-size: clamp(2.4rem, 4.4vw, 4rem);
  line-height: 1;
  text-transform: none;
}

.shop-toolbar-title {
  font-size: clamp(2.5rem, 4.8vw, 4.2rem);
  line-height: 0.98;
}

.shop-results-copy {
  font-size: 1.2rem;
  line-height: 1.4;
}

.shop-category-bar a,
.shop-sort-select,
.shop-sidebar-toggle {
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  text-transform: none;
}

.cart-page-heading,
.checkout-heading,
.order-ui .cart-page-heading,
.order-ui .checkout-heading {
  font-size: clamp(2.5rem, 4.6vw, 4rem);
  letter-spacing: -0.02em;
}

.cart-table-title,
.order-ui .cart-table-title,
.checkout-summary-title,
.order-ui .checkout-summary-title {
  font-size: 0.96rem;
  letter-spacing: 0;
}

@media (max-width: 640px) {
  .brand-name {
    font-size: 1.2rem;
    letter-spacing: 0.1em;
  }

  .hero-title {
    font-size: clamp(2.35rem, 12vw, 3.8rem);
  }

  .collection-title,
  .offer-title,
  .shop-toolbar-title,
  .contact-showcase-title,
  .contact-information-title,
  .cart-page-heading,
  .checkout-heading {
    letter-spacing: 0;
  }
}

@media (max-width: 640px) {
  .order-ui .cart-page,
  .order-ui .checkout-page {
    width: min(100% - 24px, 1800px);
    padding-top: 20px;
  }
}

.collection-modal-open {
  overflow: hidden;
}

.collection-modal[hidden] {
  display: none;
}

.collection-modal {
  position: fixed;
  inset: 0;
  z-index: 30;
}

.collection-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 10, 26, 0.62);
}

.collection-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 32px));
  max-height: calc(100vh - 48px);
  margin: 24px auto;
  overflow: auto;
  background: #ffffff;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.24);
}

.collection-modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  z-index: 3;
  border: 0;
  background: transparent;
  color: #111111;
  font-size: 2rem;
  cursor: pointer;
}

.collection-modal-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(360px, 1.05fr);
  min-height: 100%;
}

.collection-modal-media {
  background: #f8f5f2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 26px;
}

.collection-modal-media img {
  width: 100%;
  max-height: 760px;
  object-fit: cover;
  object-position: center top;
}

.collection-modal-content {
  padding: 42px 38px 34px;
}

.collection-modal-brand {
  margin: 0 0 8px;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8f8895;
}

.collection-modal-title {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  text-transform: uppercase;
  color: #1d1522;
}

.collection-modal-price {
  margin: 0 0 10px;
  font-size: 1.8rem;
  font-weight: 400;
  color: #1d1522;
}

.collection-modal-price-label {
  margin: 0 0 2px;
  font-size: 0.9rem;
  color: #6f6676;
}

.collection-modal-finance {
  margin: 0 0 16px;
  font-size: 0.98rem;
  font-weight: 700;
  color: #8a868a;
}

.collection-modal-copy p {
  margin: 0 0 18px;
  font-size: 0.98rem;
  line-height: 1.65;
  color: #2a222f;
}

.collection-modal-copy strong {
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.collection-modal-divider {
  height: 1px;
  margin: 26px 0 22px;
  background: #e8e2eb;
}

.collection-modal-option-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
  font-size: 0.95rem;
  text-transform: uppercase;
  color: #2a222f;
}

.collection-modal-option-head a {
  color: #2a222f;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.collection-modal-sizes {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 20px;
}

.collection-size-option {
  min-height: 46px;
  border: 1px solid #d9d3dd;
  background: #ffffff;
  color: #66606c;
  font-size: 0.95rem;
  cursor: pointer;
}

.collection-size-option.is-active {
  border-color: #111111;
  box-shadow: inset 0 0 0 1px #111111;
  color: #111111;
}

.collection-modal-color {
  margin: 0 0 24px;
  font-size: 1rem;
  text-transform: uppercase;
  color: #2a222f;
}

.collection-modal-color span {
  color: #7b7480;
}

.collection-modal-color-wrap {
  margin-bottom: 24px;
}

.collection-color-option {
  min-height: 42px;
  min-width: 138px;
  padding: 0 16px;
  border: 1px solid #111111;
  background: #ffffff;
  color: #111111;
  text-transform: uppercase;
  font-size: 0.92rem;
}

.collection-modal-actions {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.collection-quantity {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  border: 1px solid #111111;
  min-height: 56px;
}

.collection-quantity button,
.collection-quantity span {
  display: grid;
  place-items: center;
  height: 100%;
}

.collection-quantity button {
  border: 0;
  background: transparent;
  font-size: 1.4rem;
  cursor: pointer;
}

.collection-cart-button,
.collection-buy-button {
  min-height: 56px;
  border: 1px solid #111111;
  text-transform: uppercase;
  font-size: 0.96rem;
  letter-spacing: 0.04em;
  cursor: pointer;
}

.collection-cart-button {
  background: #ffffff;
  color: #111111;
}

.collection-buy-button {
  width: 100%;
  background: #1c1b1c;
  color: var(--white);
}

.collection-modal-view {
  width: 100%;
  min-height: 48px;
  margin-top: 14px;
  border: 1px solid #111111;
  background: #ffffff;
  color: #111111;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  cursor: pointer;
}

.collection-modal-details {
  margin-top: 26px;
}

.collection-modal-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
}

.collection-modal-links button {
  border: 0;
  padding: 0;
  background: transparent;
  color: #2a222f;
  text-align: left;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 920px) {
  :root {
    --header-height: 148px;
  }

  .social-rail {
    right: 12px;
    gap: 8px;
  }

  .social-link {
    width: 42px;
    height: 42px;
  }

  .social-link svg {
    width: 16px;
    height: 16px;
  }

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

  .contact-showcase {
    width: min(100% - 40px, 1600px);
    grid-template-columns: 1fr;
    row-gap: 36px;
    padding-top: 40px;
  }

  .shop-toolbar-hero {
    grid-template-columns: 1fr;
    padding: 28px;
  }

  .shop-category-bar {
    gap: 10px;
    padding: 10px 4px 0;
  }

  .shop-toolbar-controls {
    flex-direction: column;
    align-items: flex-start;
  }

  .shop-toolbar-summary {
    max-width: 520px;
  }

  .shop-controls-right {
    width: 100%;
    justify-content: flex-start;
  }

  .contact-showcase-copy {
    max-width: none;
  }

  .contact-showcase-title {
    max-width: 680px;
  }

  .contact-information {
    width: min(100% - 40px, 1180px);
    margin-bottom: 60px;
  }

  .auth-modal-layout {
    grid-template-columns: 1fr;
  }

  .auth-modal-panel {
    padding: 42px 32px 34px;
  }

  .auth-modal-panel-register {
    border-left: 0;
    border-top: 1px solid rgba(36, 24, 40, 0.14);
  }

  .account-page {
    width: min(100% - 40px, 1880px);
    margin-bottom: 60px;
  }

  .account-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .account-sidebar {
    border-right: 0;
    border-bottom: 1px solid rgba(36, 24, 40, 0.14);
    padding-right: 0;
    padding-bottom: 20px;
  }

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

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

  .cart-layout {
    grid-template-columns: 1fr;
  }

  .cart-line-item {
    grid-template-columns: 120px minmax(0, 1fr);
  }

  .cart-line-controls {
    grid-column: 1 / -1;
    justify-items: start;
  }

  .cart-full-layout,
  .checkout-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .cart-table-row,
  .cart-table-head {
    grid-template-columns: 1fr;
  }

  .cart-table-head span:last-child,
  .cart-table-total {
    text-align: left;
  }

  .cart-table-product {
    grid-template-columns: 104px minmax(0, 1fr);
  }

  .contact-information-row {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 12px;
  }

  .about-story-layout {
    grid-template-columns: 1fr;
    row-gap: 22px;
  }

  .about-panel {
    width: min(100% - 40px, 1560px);
    padding: 32px 0 18px;
  }

  .footer-grid {
    grid-template-columns: minmax(280px, 1.4fr) repeat(3, minmax(180px, 1fr));
    column-gap: 34px;
    row-gap: 30px;
  }

  .footer-brand-block {
    min-width: 0;
    grid-column: 1 / -1;
  }

  .header-inner {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 18px;
  }

  .site-nav {
    justify-content: flex-start;
    justify-self: start;
    grid-column: auto;
  }

  .header-tools {
    justify-self: start;
    flex-wrap: wrap;
    gap: 14px;
    grid-column: auto;
  }

  .collection-section {
    padding: 24px 58px 44px 24px;
  }

  .collection-grid {
    width: min(760px, 100%);
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .offer-grid {
    width: min(760px, 100%);
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .collection-action {
    margin-top: 28px;
  }

  .page-hero {
    padding-top: 46px;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 176px;
  }

  .social-rail {
    right: 10px;
    gap: 8px;
  }

  .social-link {
    width: 34px;
    height: 34px;
  }

  .social-link svg {
    width: 14px;
    height: 14px;
  }

  .header-inner,
  .page-hero,
  .page-panel {
    width: min(100% - 24px, 1180px);
  }

  .brand {
    align-items: center;
  }

  .brand-name {
    font-size: 1.35rem;
    letter-spacing: 0.16em;
  }

  .site-nav {
    gap: 18px;
  }

  .nav-link {
    min-height: 40px;
    font-size: 0.78rem;
  }

  .header-tools {
    gap: 12px;
  }

  .account-link,
  .cart-total {
    font-size: 0.78rem;
  }

  .cart-page {
    width: min(100% - 24px, 1480px);
    margin-bottom: 56px;
    padding-top: 22px;
  }

  .cart-empty-state,
  .cart-items-panel,
  .cart-summary-card {
    padding: 24px 18px;
    border-radius: 24px;
  }

  .cart-title {
    font-size: clamp(2rem, 11vw, 3.2rem);
  }

  .cart-line-item {
    grid-template-columns: 1fr;
  }

  .cart-line-image {
    width: 100%;
    max-width: 220px;
    height: auto;
    aspect-ratio: 5 / 6;
  }

  .cart-drawer-panel {
    padding: 26px 20px 20px;
  }

  .cart-drawer-title {
    font-size: 1.6rem;
  }

  .cart-drawer-actions,
  .checkout-action-row,
  .checkout-two-col,
  .checkout-choice-grid {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: stretch;
  }

  .checkout-place-order {
    max-width: none;
  }

  .checkout-summary-item {
    grid-template-columns: 82px minmax(0, 1fr);
  }

  .checkout-summary-line-total {
    grid-column: 2;
  }

  .hero-card {
    min-height: 280px;
    padding: 20px;
  }

  .showcase-track {
    min-height: calc(100vh - var(--header-height));
  }

  .showcase-arrow-left {
    left: 14px;
  }

  .showcase-arrow-right {
    right: 14px;
  }

  .tagline-strip {
    padding: 16px 20px 18px;
  }

  .tagline-strip-text {
    font-size: 1rem;
    letter-spacing: 0.12em;
  }

  .collection-section {
    padding: 24px 16px 42px;
  }

  .collection-heading {
    margin-bottom: 20px;
  }

  .collection-grid {
    width: 100%;
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }

  .offer-grid {
    width: 100%;
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
  }

  .collection-card-overlay {
    left: 12px;
    right: 12px;
    bottom: 12px;
    min-height: 38px;
    font-size: 0.76rem;
  }

  .collection-modal-dialog {
    width: min(100% - 20px, 1120px);
    max-height: calc(100vh - 20px);
    margin: 10px auto;
  }

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

  .collection-modal-media {
    padding: 18px 18px 0;
  }

  .collection-modal-content {
    padding: 26px 18px 22px;
  }

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

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

  .view-all-button {
    min-width: 102px;
    min-height: 36px;
    font-size: 0.76rem;
  }

  .hero-logo {
    min-height: 240px;
  }

  .page-panel {
    padding: 24px;
  }

  .contact-showcase {
    width: min(100% - 24px, 1600px);
    row-gap: 30px;
    padding-top: 24px;
    margin-bottom: 54px;
  }

  .shop-category-bar {
    justify-content: flex-start;
    gap: 14px 18px;
    padding: 8px 0 0;
  }

  .shop-category-bar a {
    font-size: 0.86rem;
    min-height: 36px;
    padding: 0 14px;
  }

  .shop-toolbar-content {
    width: min(100% - 24px, 1880px);
    padding-top: 18px;
  }

  .shop-toolbar-hero {
    padding: 22px 18px;
    gap: 18px;
    border-radius: 24px;
  }

  .shop-toolbar-controls {
    margin-top: 16px;
    padding: 16px;
    gap: 16px;
    border-radius: 22px;
  }

  .shop-toolbar-title {
    font-size: clamp(2.3rem, 12vw, 3.7rem);
  }

  .shop-toolbar-text,
  .shop-summary-note {
    font-size: 0.94rem;
    line-height: 1.65;
  }

  .shop-breadcrumb,
  .shop-results-copy,
  .shop-sidebar-toggle,
  .shop-sort-select {
    font-size: 0.92rem;
  }

  .shop-controls-right {
    gap: 16px;
  }

  .shop-sort-wrap {
    min-width: 0;
    width: 100%;
    max-width: 260px;
  }

  .shop-sort-select,
  .shop-sidebar-toggle {
    min-height: 42px;
  }

  .shop-grid-button {
    width: 34px;
    height: 34px;
  }

  .shop-filter-sidebar {
    width: min(100vw, 390px);
  }

  .shop-filter-section {
    padding: 28px 24px;
  }

  .shop-layout-panel.shop-layout-compact,
  .shop-layout-panel.shop-layout-standard,
  .shop-layout-panel.shop-layout-wide {
    width: min(100% - 24px, 1460px);
  }

  .shop-layout-panel {
    margin-bottom: 56px;
  }

  .shop-layout-compact .shop-product-grid,
  .shop-layout-standard .shop-product-grid,
  .shop-layout-wide .shop-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 16px;
  }

  .shop-product-visual,
  .shop-product-image {
    min-height: 360px;
  }

  .shop-product-visual .collection-card-overlay {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .shop-product-card {
    padding: 10px 10px 14px;
    border-radius: 22px;
  }

  .contact-kicker {
    margin-bottom: 24px;
  }

  .contact-showcase-title {
    margin-bottom: 24px;
    font-size: clamp(2.45rem, 14vw, 4rem);
    line-height: 0.98;
  }

  .contact-showcase-text {
    margin-bottom: 24px;
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .auth-modal-dialog {
    width: min(100% - 20px, 1280px);
    max-height: calc(100vh - 20px);
    margin: 10px auto;
  }

  .auth-modal-panel {
    padding: 38px 18px 28px;
  }

  .auth-modal-title {
    margin-bottom: 22px;
    font-size: clamp(1.8rem, 10vw, 2.5rem);
  }

  .auth-google-button {
    width: 100%;
    justify-content: center;
  }

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

  .auth-register-button {
    width: 100%;
  }

  .auth-register-form {
    margin-top: 18px;
  }

  .account-page {
    width: min(100% - 24px, 1880px);
    margin-bottom: 52px;
    padding-top: 24px;
  }

  .account-guest-card {
    padding: 32px 22px;
  }

  .account-alert {
    padding: 16px 18px;
  }

  .account-dashboard-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .account-section-card {
    padding: 22px 18px;
  }

  .account-nav-button {
    min-height: 46px;
    padding: 0 14px;
  }

  .google-chooser-dialog {
    margin: 12px auto;
    border-radius: 16px;
  }

  .google-chooser-title {
    font-size: clamp(1.85rem, 9vw, 2.8rem);
  }

  .google-chooser-brand,
  .google-chooser-hero,
  .google-account-option,
  .google-chooser-note {
    padding-left: 18px;
    padding-right: 18px;
  }

  .google-browser-addressbar {
    padding: 10px 12px 12px;
  }

  .contact-showcase-socials {
    gap: 20px;
  }

  .contact-showcase-social svg {
    width: 28px;
    height: 28px;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .contact-field input,
  .contact-field textarea {
    padding: 16px 16px;
    font-size: 0.96rem;
  }

  .contact-field textarea {
    min-height: 160px;
  }

  .contact-submit {
    width: 100%;
    min-width: 0;
    min-height: 54px;
  }

  .contact-information {
    width: min(100% - 24px, 1180px);
    margin-bottom: 52px;
  }

  .contact-information-header {
    margin-bottom: 28px;
  }

  .contact-information-title {
    margin-bottom: 16px;
    font-size: clamp(2.2rem, 13vw, 3.4rem);
  }

  .contact-information-text {
    font-size: 0.92rem;
    line-height: 1.65;
  }

  .contact-information-row {
    padding: 20px 18px;
    gap: 10px;
  }

  .contact-information-label {
    font-size: 0.92rem;
  }

  .contact-information-value {
    gap: 12px;
    font-size: 0.98rem;
  }

  .contact-information-value svg {
    width: 18px;
    height: 18px;
  }

  .shop-layout-compact .shop-product-grid,
  .shop-layout-standard .shop-product-grid,
  .shop-layout-wide .shop-product-grid {
    grid-template-columns: 1fr;
  }

  .shop-product-visual,
  .shop-product-image {
    min-height: 320px;
  }

  .shop-filter-sidebar {
    width: 100vw;
  }

  .shop-filter-sidebar-top {
    padding: 18px 18px;
  }

  .shop-filter-section {
    padding: 24px 18px;
  }

  .shop-filter-range-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .shop-filter-action {
    min-width: 92px;
  }

  .about-panel {
    width: min(100% - 24px, 1560px);
    padding: 20px 0 12px;
  }

  .site-footer {
    padding: 44px 28px 48px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-brand-block,
  .footer-column,
  .footer-social-column {
    min-width: 0;
    width: 100%;
  }

  .footer-brand-block {
    max-width: 520px;
  }

  .footer-heading {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.06em;
  }

  .footer-brand {
    font-size: clamp(2.4rem, 12vw, 3.25rem);
    letter-spacing: 0.2em;
  }

  .about-story-heading .panel-title {
    font-size: clamp(2.8rem, 15vw, 4rem);
    line-height: 0.98;
  }

  .about-story-content .panel-text {
    font-size: 1.02rem;
    line-height: 1.8;
  }

  .about-story-content .panel-text:last-child {
    font-size: 1.08rem;
    letter-spacing: 0.05em;
  }

  .footer-tag {
    margin-bottom: 18px;
  }

  .footer-contact {
    font-size: 1rem;
  }

  .footer-social {
    width: 76px;
    height: 64px;
  }

  .footer-social svg {
    width: 28px;
    height: 28px;
  }
}

/* ================================================================
   HOMEPAGE REDESIGN
   ================================================================ */

/* ── Global overrides ── */
body {
  font-family: 'DM Sans', 'Segoe UI', sans-serif;
  background: #f9f6f2;
  display: flex;
  flex-direction: column;
}

body::before {
  display: none;
}

/* Sticky footer — site-shell fills viewport, main grows to push footer down */
.site-shell {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  flex: 1;
}

.site-shell > main {
  flex: 1;
}

.site-header {
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  backdrop-filter: blur(16px);
}

.brand-name {
  font-family: 'Cormorant Garamond', 'Book Antiqua', Georgia, serif;
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  letter-spacing: 0.3em;
  color: #1a1018;
}

.nav-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: #333;
}

.nav-link.active,
.nav-link:hover {
  color: var(--plum-deep);
}

/* ── HERO — full-bleed banner ── */
.hp-hero {
  position: relative;
  width: 100%;
  height: calc(100vh - var(--header-height));
  min-height: 640px;
  overflow: hidden;
  background: #2a1f30;
}

.hp-hero-bg-wrap {
  position: absolute;
  inset: 0;
}

.hp-hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.hp-hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 40px 80px;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.08) 0%,
    rgba(0, 0, 0, 0.48) 45%,
    rgba(0, 0, 0, 0.32) 100%
  );
}

.hp-hero-season {
  margin: 0 0 32px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.hp-hero-title {
  margin: 0 0 56px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(5.5rem, 14vw, 14rem);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: 0.01em;
  color: #fff;
}

.hp-hero-title em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.82);
}

.hp-hero-title-line {
  display: block;
  margin-bottom: 0.18em;
}

.hp-hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hp-hero-btn-fill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 58px;
  padding: 0 48px;
  background: #fff;
  color: #111;
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background 200ms ease, color 200ms ease, transform 200ms ease;
}

.hp-hero-btn-fill:hover,
.hp-hero-btn-fill:focus-visible {
  background: var(--plum-deep);
  color: #fff;
  transform: translateY(-1px);
}

.hp-hero-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 58px;
  padding: 0 36px;
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  color: #fff;
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background 200ms ease, border-color 200ms ease, transform 200ms ease;
}

.hp-hero-btn-ghost:hover,
.hp-hero-btn-ghost:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  transform: translateY(-1px);
}

/* Shared CTAs used in other sections */
.hp-cta-fill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 58px;
  padding: 0 42px;
  background: #1a1018;
  color: #fff;
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: background 200ms ease, transform 200ms ease;
}

.hp-cta-fill:hover,
.hp-cta-fill:focus-visible {
  background: var(--plum-deep);
  transform: translateY(-1px);
}

.hp-cta-on-dark {
  background: #fff;
  color: #1a1018;
}

.hp-cta-on-dark:hover,
.hp-cta-on-dark:focus-visible {
  background: #f0eaf6;
  color: var(--plum-deep);
}

.hp-hero-scroll {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.hp-hero-scroll-line {
  width: 1px;
  height: 52px;
  background: rgba(255, 255, 255, 0.45);
  animation: hp-scroll-pulse 2.2s ease-in-out infinite;
}

.hp-hero-scroll-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

@keyframes hp-scroll-pulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.5); transform-origin: top; }
  50%       { opacity: 1;   transform: scaleY(1);   transform-origin: top; }
}

/* ── MARQUEE ── */
.hp-marquee {
  background: #1a1018;
  overflow: hidden;
  padding: 18px 0;
}

.hp-marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: hp-marquee 36s linear infinite;
}

.hp-marquee-item {
  color: rgba(255, 255, 255, 0.85);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  white-space: nowrap;
  padding-right: 64px;
}

.hp-marquee-dot {
  color: var(--plum);
  font-size: 0.6rem;
  flex-shrink: 0;
  padding-right: 64px;
}

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

/* ── SHARED SECTION UTILITIES ── */
.hp-section-inner {
  width: min(1440px, 100%);
  margin: 0 auto;
}

.hp-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 64px;
}

.hp-label {
  margin: 0 0 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--plum);
}

.hp-label-muted {
  color: rgba(255, 255, 255, 0.5);
}

.hp-heading {
  margin: 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(3.6rem, 6vw, 6.5rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.01em;
  color: #111;
}

.hp-link-underline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #111;
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(0, 0, 0, 0.35);
  padding-bottom: 3px;
  transition: color 160ms ease, border-color 160ms ease;
  margin-bottom: 10px;
}

.hp-link-underline:hover,
.hp-link-underline:focus-visible {
  color: var(--plum);
  border-color: var(--plum);
}

/* ── NEW ARRIVALS SECTION ── */
.hp-collection {
  background: #fff;
  padding: 100px max(52px, 6vw) 96px;
}

.hp-collection .collection-section {
  background: transparent;
  padding: 0;
}

.hp-collection .collection-grid {
  gap: 52px 28px;
  width: 100%;
}

/* Override card visuals within homepage — clean, editorial */
.hp-collection .collection-card-visual {
  background: #f2ece6;
  border: none;
  box-shadow: none;
  border-radius: 6px;
  padding: 0;
  aspect-ratio: 3 / 4;
  transition: transform 280ms ease, box-shadow 280ms ease;
}

.hp-collection .collection-card-visual::before {
  display: none;
}

.hp-collection .collection-card:hover .collection-card-visual,
.hp-collection .collection-card:focus-within .collection-card-visual {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: transparent;
}

.hp-collection .collection-card-image {
  border-radius: 4px;
}

.hp-collection .collection-card-image-model {
  object-position: center 8%;
}

.hp-collection .collection-card:hover .collection-card-image-model,
.hp-collection .collection-card:focus-within .collection-card-image-model {
  transform: scale(1.05);
  transition: transform 400ms ease;
}

.hp-collection .collection-card-overlay {
  background: rgba(26, 16, 24, 0.9);
  color: #fff;
  left: 18px;
  right: 18px;
  bottom: 18px;
}

.hp-collection .collection-card-overlay:hover,
.hp-collection .collection-card-overlay:focus-visible {
  background: var(--plum-deep);
  color: #fff;
}

.hp-collection .collection-item-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.08rem;
  font-weight: 400;
  color: #1a1a1a;
  letter-spacing: 0.01em;
}

.hp-collection .collection-item-price {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--plum-deep);
}

/* ── EDITORIAL SECTION ── */
.hp-editorial {
  background: var(--plum-deep);
  overflow: hidden;
}

.hp-editorial-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.hp-editorial-visual {
  position: relative;
  overflow: hidden;
}

.hp-editorial-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.hp-editorial-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px max(48px, 6vw) 80px max(48px, 6vw);
}

.hp-editorial-heading {
  margin: 0 0 32px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(3.4rem, 5vw, 5.5rem);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.01em;
  color: #fff;
}

.hp-editorial-heading em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.72);
}

.hp-editorial-body {
  margin: 0 0 52px;
  font-family: 'DM Sans', sans-serif;
  font-size: 1.08rem;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.68);
}

/* ── OFFER COLLECTION ── */
.hp-offers {
  background: #f9f6f2;
  padding: 144px max(60px, 7vw) 140px;
}

.hp-offers-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 64px 32px;
}

.hp-offer-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hp-offer-visual {
  position: relative;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border-radius: 6px;
  background: #ede7e0;
}

.hp-offer-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 400ms ease;
}

.hp-offer-card:hover .hp-offer-visual img,
.hp-offer-card:focus-within .hp-offer-visual img {
  transform: scale(1.05);
}

.hp-offer-visual:hover .collection-card-overlay,
.hp-offer-visual:focus-within .collection-card-overlay {
  opacity: 1;
  transform: translateY(0);
}

.hp-offer-visual .collection-card-overlay {
  background: rgba(26, 16, 24, 0.9);
  color: #fff;
  left: 18px;
  right: 18px;
  bottom: 18px;
  backdrop-filter: blur(4px);
}

.hp-offer-visual .collection-card-overlay:hover,
.hp-offer-visual .collection-card-overlay:focus-visible {
  background: var(--plum-deep);
}

.hp-offer-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: var(--plum);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  pointer-events: none;
}

.hp-offer-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 0 2px;
}

.hp-offer-name {
  margin: 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 1.08rem;
  font-weight: 400;
  color: #1a1a1a;
}

.hp-offer-price {
  margin: 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--plum-deep);
  white-space: nowrap;
}

.hp-offer-price-original {
  margin: 2px 0 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  color: #aaa;
  text-decoration: line-through;
}

.shop-product-price-original {
  margin: 2px 0 0;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  color: #aaa;
  text-decoration: line-through;
}

.collection-modal-price-original {
  margin: -4px 0 12px;
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #aaa;
  text-decoration: line-through;
}

.pdp-price-original {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: #aaa;
  text-decoration: line-through;
  margin: 0 0 4px;
}

/* ── RESPONSIVE — Homepage ── */
@media (max-width: 1024px) {
  .hp-hero {
    min-height: 80vw;
  }

  .hp-hero-title {
    font-size: clamp(4.5rem, 13vw, 10rem);
    margin-bottom: 44px;
  }

  .hp-editorial-inner {
    grid-template-columns: 1fr;
  }

  .hp-editorial-visual {
    min-height: 55vw;
  }

  .hp-editorial-copy {
    padding: 64px 48px;
  }

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

@media (max-width: 768px) {
  .hp-hero {
    min-height: 88vh;
  }

  .hp-hero-title {
    font-size: clamp(3.8rem, 16vw, 7rem);
    margin-bottom: 40px;
  }

  .hp-hero-overlay {
    padding: 48px 24px 72px;
    justify-content: flex-end;
    align-items: flex-start;
    text-align: left;
    background: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.72) 0%,
      rgba(0, 0, 0, 0.38) 50%,
      rgba(0, 0, 0, 0.06) 100%
    );
  }

  .hp-hero-actions {
    justify-content: flex-start;
  }

  .hp-section-inner {
    width: 100%;
  }

  .hp-section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 44px;
  }

  .hp-heading {
    font-size: clamp(3rem, 12vw, 4.5rem);
  }

  .hp-editorial-copy {
    padding: 52px 24px;
    align-items: center;
    text-align: center;
  }

  .hp-editorial-heading {
    font-size: clamp(2.8rem, 11vw, 4rem);
  }

  .hp-collection {
    padding: 80px 24px 64px;
  }

  .hp-offers {
    padding: 100px 24px 96px;
  }

  .hp-offers-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 48px 16px;
  }

  .hp-collection .collection-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px 16px;
  }

  .hp-offer-badge {
    top: auto;
    bottom: 12px;
    left: 12px;
  }
}

/* ================================================================
   COLLECTION MODAL — Open Sans typography
   ================================================================ */

/* Apply Open Sans as the base for everything inside the modal */
.collection-modal-dialog,
.collection-modal-dialog * {
  font-family: 'Open Sans', sans-serif;
}

.collection-modal-dialog {
  border-radius: 4px;
  border-top: 3px solid var(--plum-deep);
}

.collection-modal-media {
  background: #f5f0eb;
}

.collection-modal-content {
  padding: 48px 44px 40px;
}

.collection-modal-brand {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--plum);
  margin: 0 0 14px;
}

.collection-modal-title {
  font-size: clamp(1.3rem, 2.2vw, 1.75rem);
  font-weight: 600;
  line-height: 1.25;
  text-transform: none;
  letter-spacing: 0;
  color: #111;
  margin: 0 0 20px;
}

.collection-modal-price-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #999;
  margin: 0 0 4px;
}

.collection-modal-price {
  font-size: 1.7rem;
  font-weight: 300;
  letter-spacing: 0;
  color: #111;
  margin: 0 0 8px;
}

.collection-modal-divider {
  background: #ece6ef;
  margin: 24px 0 20px;
}

.collection-modal-option-head {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #333;
  margin-bottom: 14px;
}

.collection-modal-option-head a,
.collection-modal-option-head button[data-open-size-chart] {
  font-size: 0.74rem;
  font-weight: 400;
  font-family: 'Open Sans', sans-serif;
  color: var(--plum);
  text-decoration: underline;
  text-underline-offset: 3px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  letter-spacing: 0;
  text-transform: none;
}

.collection-size-option {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  border: 1px solid #ddd;
  color: #555;
  min-height: 48px;
  transition: border-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.collection-size-option:hover {
  border-color: #888;
  color: #111;
}

.collection-size-option.is-active {
  border-color: var(--plum-deep);
  box-shadow: inset 0 0 0 1px var(--plum-deep);
  color: var(--plum-deep);
  font-weight: 600;
}

.collection-modal-color {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #333;
}

.collection-modal-color span {
  color: #999;
  font-weight: 400;
}

.collection-color-option {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid #111;
  transition: background 160ms ease, color 160ms ease;
}

.collection-color-option.is-active,
.collection-color-option:hover {
  background: var(--plum-deep);
  border-color: var(--plum-deep);
  color: #fff;
}

.collection-quantity button,
.collection-quantity span {
  font-size: 1.05rem;
  font-weight: 400;
}

.collection-cart-button {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid #111;
  background: #fff;
  color: #111;
  transition: background 180ms ease, color 180ms ease;
}

.collection-cart-button:hover {
  background: #111;
  color: #fff;
}

.collection-buy-button {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--plum-deep);
  border-color: var(--plum-deep);
  transition: background 180ms ease;
}

.collection-buy-button:hover {
  background: #1a0d22;
  border-color: #1a0d22;
}

.collection-modal-view {
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid #ddd;
  color: #666;
  background: transparent;
  transition: border-color 160ms ease, color 160ms ease;
}

.collection-modal-view:hover {
  border-color: #999;
  color: #333;
}

.collection-modal-copy p {
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.75;
  color: #555;
}

.collection-modal-copy strong {
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #222;
}

.collection-modal-links button {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #666;
  text-underline-offset: 4px;
  transition: color 160ms ease;
}

.collection-modal-links button:hover {
  color: var(--plum);
}

/* ── Delivery info accordion ── */
.collection-info-item {
  display: flex;
  flex-direction: column;
}

.collection-info-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 12px;
}

.collection-info-chevron {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1;
  color: #aaa;
  flex-shrink: 0;
  transition: transform 220ms ease, color 160ms ease;
  font-style: normal;
}

.collection-info-toggle.is-open .collection-info-chevron {
  transform: rotate(45deg);
  color: var(--plum);
}

.collection-info-toggle.is-open {
  color: var(--plum);
}

.collection-info-panel {
  padding: 14px 0 6px;
  border-top: 1px solid #f2edf6;
  margin-top: 6px;
}

.collection-info-panel p {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 1.8;
  color: #666;
}

.collection-modal-copy p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.75;
  color: #555;
}

.collection-modal-copy strong {
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #222;
}

.collection-modal-links button {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.84rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #666;
  text-underline-offset: 4px;
  transition: color 160ms ease;
}

.collection-modal-links button:hover {
  color: var(--plum);
}

/* ================================================================
   ABOUT PAGE
   ================================================================ */

/* Update serif headings site-wide to use Cormorant Garamond */
.hero-title,
.panel-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
}

.about-panel {
  width: min(100% - 80px, 1500px);
  margin: 0 auto;
  padding: 100px 0 100px;
}

.about-story-layout {
  column-gap: clamp(60px, 9vw, 140px);
}

.about-story-heading .panel-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(5rem, 11vw, 11rem);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: #111;
  position: sticky;
  top: 120px;
  text-align: center;
}

.about-story-content .panel-text {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(1.15rem, 1.5vw, 1.45rem);
  font-weight: 300;
  line-height: 1.95;
  color: #444;
  margin-top: 0;
  margin-bottom: 1.8em;
}

.about-story-content .panel-text:last-child {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: none;
  color: var(--plum-deep);
  line-height: 1.3;
  margin-bottom: 0;
  text-align: center;
}

@media (max-width: 900px) {
  .about-panel {
    width: calc(100% - 48px);
    padding: 72px 0 80px;
  }

  .about-story-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .about-story-heading .panel-title {
    position: static;
    font-size: clamp(4rem, 16vw, 7rem);
  }

  .about-story-content .panel-text {
    font-size: clamp(1.1rem, 4vw, 1.3rem);
    text-align: center;
  }

  .about-story-content .panel-text:last-child {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }
}

/* ================================================================
   SIZE CHART MODAL
   ================================================================ */

.size-chart-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
}

.size-chart-modal[hidden] {
  display: none;
}

.size-chart-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(36, 24, 40, 0.55);
  backdrop-filter: blur(2px);
  cursor: pointer;
}

.size-chart-dialog {
  position: relative;
  background: #fff;
  border-top: 3px solid var(--plum-deep);
  border-radius: 4px;
  width: min(660px, calc(100vw - 40px));
  padding: 52px 56px 52px;
  font-family: 'Open Sans', sans-serif;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

.size-chart-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 8px;
}

.size-chart-title {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #111;
  margin: 0;
}

.size-chart-close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
  color: #999;
  padding: 0;
  margin-left: 16px;
  transition: color 140ms ease;
}

.size-chart-close:hover {
  color: #111;
}

.size-chart-unit {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: #aaa;
  margin: 0 0 28px;
}

.size-chart-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.size-chart-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.96rem;
}

.size-chart-table thead tr {
  border-bottom: 2px solid #e8e0ee;
}

.size-chart-table th {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--plum);
  text-align: center;
  padding: 0 18px 16px;
}

.size-chart-table th:first-child {
  text-align: left;
  padding-left: 0;
}

.size-chart-table td {
  text-align: center;
  padding: 17px 18px;
  color: #444;
  font-weight: 400;
  border-bottom: 1px solid #f0eaf4;
}

.size-chart-table td:first-child {
  text-align: left;
  padding-left: 0;
  font-weight: 600;
  color: #111;
  letter-spacing: 0.05em;
}

.size-chart-table tbody tr:last-child td {
  border-bottom: none;
}

.size-chart-table tbody tr:hover td {
  background: #faf7fc;
}

.size-chart-disclaimer {
  margin: 24px 0 0;
  padding-top: 20px;
  border-top: 1px solid #f0eaf4;
  font-size: 0.78rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.7;
  color: #aaa;
}

/* Prevent body scroll when size chart is open */
body.size-chart-open {
  overflow: hidden;
}

/* ── Make <a> overlay render identically to <button> overlay ── */
a.collection-card-overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

/* ================================================================
   PRODUCT DETAIL PAGE
   ================================================================ */

.pdp-page {
  padding: 0 max(24px, 5vw);
  max-width: 1440px;
  margin: 0 auto;
}

.pdp-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 28px 0 40px;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.76rem;
  color: #aaa;
}

.pdp-breadcrumb a {
  color: #aaa;
  text-decoration: none;
  transition: color 140ms ease;
}

.pdp-breadcrumb a:hover { color: var(--plum); }

.pdp-breadcrumb-sep { color: #ddd; }

.pdp-breadcrumb-current { color: #555; font-weight: 500; }

/* ── Two-column layout ── */
.pdp-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 72px;
  align-items: start;
  margin-bottom: 100px;
}

/* ── Gallery ── */
.pdp-gallery {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pdp-main-img-wrap {
  aspect-ratio: 3 / 4;
  background: #f2ece6;
  border-radius: 8px;
  overflow: hidden;
}

.pdp-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: opacity 160ms ease;
}

.pdp-thumbs {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}

.pdp-thumbs::-webkit-scrollbar { display: none; }

.pdp-thumb {
  flex: 0 0 72px;
  height: 92px;
  border: 2px solid transparent;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  background: #f2ece6;
  padding: 0;
  transition: border-color 160ms ease;
}

.pdp-thumb.is-active { border-color: var(--plum-deep); }

.pdp-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ── Info column ── */
.pdp-info {
  font-family: 'Open Sans', sans-serif;
  padding-top: 4px;
}

.pdp-brand {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--plum);
  margin: 0 0 12px;
}

.pdp-badge {
  display: inline-block;
  background: var(--plum);
  color: #fff;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  margin-bottom: 14px;
}

.pdp-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: #111;
  margin: 0 0 18px;
}

.pdp-price-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #bbb;
  margin: 0 0 6px;
}

.pdp-price {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.2rem;
  font-weight: 400;
  color: #111;
  margin: 0;
}

.pdp-divider {
  height: 1px;
  background: #ece6ef;
  margin: 28px 0;
}

/* ── Product details block ── */
.pdp-details-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 0;
  padding: 0;
}

.pdp-detail-row {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.pdp-detail-row dt {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #111;
  text-transform: none;
}

.pdp-detail-row dd {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.75;
  color: #444;
  margin: 0;
}

.pdp-option-group { margin-bottom: 26px; }

.pdp-option-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.pdp-option-label {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #333;
}

.pdp-option-head button[data-open-size-chart] {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--plum);
  text-decoration: underline;
  text-underline-offset: 3px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  letter-spacing: 0;
  text-transform: none;
}

.pdp-sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pdp-size-btn {
  min-width: 56px;
  height: 36px;
  padding: 0 16px;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  border: 1px solid #ddd;
  background: #fff;
  color: #555;
  cursor: pointer;
  border-radius: 8px;
  transition: border-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.pdp-size-btn:hover { border-color: #888; color: #111; }

.pdp-size-btn.is-active {
  border-color: var(--plum-deep);
  box-shadow: inset 0 0 0 1px var(--plum-deep);
  color: var(--plum-deep);
  font-weight: 600;
}

.pdp-colors {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pdp-color-btn {
  height: 36px;
  padding: 0 22px;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid #ddd;
  background: #fff;
  color: #555;
  cursor: pointer;
  border-radius: 8px;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.pdp-color-btn.is-active,
.pdp-color-btn:hover {
  background: var(--plum-deep);
  border-color: var(--plum-deep);
  color: #fff;
}

.pdp-customize-group {
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 14px 16px;
}

.pdp-customize-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #333;
  text-align: left;
  gap: 12px;
  transition: color 160ms ease;
}

.pdp-customize-toggle:hover,
.pdp-customize-toggle.is-open { color: var(--plum); }

.pdp-customize-chevron {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1;
  color: #aaa;
  flex-shrink: 0;
  transition: transform 220ms ease, color 160ms ease;
  font-style: normal;
}

.pdp-customize-toggle.is-open .pdp-customize-chevron {
  transform: rotate(45deg);
  color: var(--plum);
}

.pdp-customize-panel {
  margin-top: 16px;
}

.pdp-customize-hint {
  margin: 0 0 14px;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.8rem;
  line-height: 1.6;
  color: #777;
}

.pdp-customize-fee-note {
  margin: -6px 0 14px;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.74rem;
  font-style: italic;
  line-height: 1.5;
  color: #948a99;
}

.pdp-customize-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 14px;
}

.pdp-customize-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pdp-customize-field span {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #555;
}

.pdp-customize-field input,
.pdp-customize-field textarea {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.88rem;
  color: #111;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 10px 12px;
  background: #fff;
  transition: border-color 160ms ease;
}

.pdp-customize-field input:focus,
.pdp-customize-field textarea:focus {
  outline: none;
  border-color: var(--plum-deep);
}

.pdp-customize-notes-field textarea {
  resize: vertical;
  min-height: 64px;
}

.pdp-qty-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
}

.pdp-qty {
  display: flex;
  align-items: stretch;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
}

.pdp-qty button {
  width: 36px;
  height: 36px;
  font-size: 1.2rem;
  font-weight: 300;
  background: none;
  border: none;
  cursor: pointer;
  color: #666;
  font-family: 'Open Sans', sans-serif;
  transition: background 140ms ease, color 140ms ease;
}

.pdp-qty button:hover { background: #f9f6f2; color: var(--plum); }

.pdp-qty span {
  min-width: 36px;
  text-align: center;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  color: #111;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
}

.pdp-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 4px;
}

.pdp-add-btn {
  width: 100%;
  height: 56px;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1.5px solid #111;
  background: #fff;
  color: #111;
  cursor: pointer;
  border-radius: 2px;
  transition: background 180ms ease, color 180ms ease;
}

.pdp-add-btn:hover { background: #111; color: #fff; }

.pdp-buy-btn {
  width: 100%;
  height: 56px;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1.5px solid var(--plum-deep);
  background: var(--plum-deep);
  color: #fff;
  cursor: pointer;
  border-radius: 2px;
  transition: background 180ms ease, border-color 180ms ease;
}

.pdp-buy-btn:hover { background: #1a0d22; border-color: #1a0d22; }

/* ── Accordion links on PDP ── */
.pdp-info-links {
  display: flex;
  flex-direction: column;
}

.pdp-info-item {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #f0eaf4;
  padding: 16px 0;
}

.pdp-info-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #555;
  text-align: left;
  gap: 12px;
  transition: color 160ms ease;
}

.pdp-info-toggle:hover,
.pdp-info-toggle.is-open { color: var(--plum); }

.pdp-info-panel {
  max-height: 0;
  overflow: hidden;
  padding-top: 0;
  opacity: 0;
  transition: max-height 480ms cubic-bezier(0.4, 0, 0.2, 1),
              padding-top 480ms cubic-bezier(0.4, 0, 0.2, 1),
              opacity 360ms ease;
}

.pdp-info-panel p {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 1.8;
  color: #666;
}

.pdp-info-panel strong {
  font-weight: 600;
  color: #333;
}

/* ── Related products ── */
.pdp-related {
  background: #f9f6f2;
  padding: 80px max(24px, 5vw) 96px;
}

.pdp-related-inner {
  max-width: 1440px;
  margin: 0 auto;
}

.pdp-related-heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 400;
  color: #111;
  margin: 0 0 40px;
  letter-spacing: -0.01em;
}

.pdp-related-grid {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 12px;
  scrollbar-width: thin;
  scrollbar-color: var(--plum) #f0eaf6;
}

.pdp-related-grid::-webkit-scrollbar { height: 3px; }
.pdp-related-grid::-webkit-scrollbar-track { background: #f0eaf6; }
.pdp-related-grid::-webkit-scrollbar-thumb { background: var(--plum); border-radius: 2px; }

.pdp-related-card {
  flex: 0 0 calc(25% - 21px);
  min-width: 210px;
  scroll-snap-align: start;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pdp-related-img-wrap {
  position: relative;
  aspect-ratio: 3 / 4;
  background: #ede7e0;
  border-radius: 6px;
  overflow: hidden;
}

.pdp-related-overlay {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: #111;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 14px 28px rgba(22, 14, 28, 0.14);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease, background-color 180ms ease;
  pointer-events: none;
}

.pdp-related-card:hover .pdp-related-overlay {
  opacity: 1;
  transform: translateY(0);
}

.pdp-related-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.pdp-related-card:hover .pdp-related-img-wrap img {
  transform: scale(1.04);
  transition: transform 320ms ease;
}

.pdp-related-name {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 400;
  color: #1a1a1a;
  margin: 0;
}

.pdp-related-price {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--plum-deep);
  margin: 0;
}

/* ── PDP responsive ── */
@media (max-width: 900px) {
  .pdp-layout {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-bottom: 72px;
  }

  .pdp-gallery {
    position: static;
  }

  .pdp-related-card {
    flex: 0 0 48%;
    min-width: 180px;
  }
}

@media (max-width: 560px) {
  .pdp-page {
    padding: 0 20px;
  }

  .pdp-name {
    font-size: clamp(1.7rem, 7vw, 2.4rem);
  }

  .pdp-price {
    font-size: 1.8rem;
  }

  .pdp-related-card {
    flex: 0 0 70%;
    min-width: 160px;
  }
}

/* ================================================================
   MOBILE LAYOUT FIXES
   ================================================================ */

/* ── Header: brand + cart on one row, nav centered below ── */
@media (max-width: 920px) {
  :root {
    --header-height: 90px;
  }

  .header-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px 8px;
    min-height: unset;
    gap: 0;
  }

  .brand {
    flex: 0 0 auto;
    order: 1;
  }

  .header-tools {
    flex: 0 0 auto;
    order: 2;
    justify-self: unset;
    gap: 12px;
  }

  .site-nav {
    flex: 0 0 100%;
    order: 3;
    justify-content: center;
    justify-self: unset;
    gap: 22px;
    padding: 10px 0 4px;
    margin-top: 10px;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
  }

  .nav-link {
    font-size: 0.84rem;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 82px;
  }

  .header-inner {
    padding: 10px 16px 6px;
  }

  .site-nav {
    gap: 14px;
  }

  .nav-link {
    font-size: 0.76rem;
    letter-spacing: 0.09em;
    min-height: unset;
  }

  .brand-name {
    font-size: clamp(1.4rem, 4.5vw, 1.8rem);
    letter-spacing: 0.22em;
  }
}

/* ── Hero: centered text on mobile (not bottom-left) ── */
@media (max-width: 768px) {
  .hp-hero-overlay {
    padding: 48px 28px 60px;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.08) 0%,
      rgba(0, 0, 0, 0.5) 45%,
      rgba(0, 0, 0, 0.3) 100%
    );
  }

  .hp-hero-actions {
    justify-content: center;
  }

  .hp-hero-title {
    font-size: clamp(3rem, 13vw, 5.5rem);
    margin-bottom: 40px;
  }
}

/* ── Extra-small screens: prevent hero title overflow ── */
@media (max-width: 480px) {
  .hp-hero-title {
    font-size: clamp(2.6rem, 11.5vw, 4rem);
    margin-bottom: 28px;
  }

  .hp-hero-season {
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    margin-bottom: 20px;
  }

  .hp-hero-btn-fill,
  .hp-hero-btn-ghost {
    height: 50px;
    padding: 0 28px;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
  }
}

/* ================================================================
   SHOP TOOLBAR — LEFT-ALIGNED FLAT STRIP
   ================================================================ */

.shop-toolbar-shell {
  margin-bottom: 48px;
}

.shop-toolbar-content {
  padding: 40px 0 0;
}

/* Hero: title left, result count bottom-right */
.shop-toolbar-hero {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  padding: 0 0 26px;
  background: none;
  box-shadow: none;
  border-radius: 0;
  border-bottom: none;
}

.shop-toolbar-copy {
  max-width: 680px;
}

/* Breadcrumb */
.shop-breadcrumb {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.71rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(91, 45, 115, 0.44);
  font-weight: 500;
}

.shop-breadcrumb a {
  color: rgba(91, 45, 115, 0.44);
  text-decoration: none;
  transition: color 150ms;
}

.shop-breadcrumb a:hover { color: var(--plum-deep); }

.shop-breadcrumb span {
  color: var(--plum-deep);
  font-weight: 600;
}

/* Big editorial title */
.shop-toolbar-title {
  margin: 12px 0 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.8rem, 5.2vw, 4.8rem);
  font-weight: 400;
  font-style: normal;
  line-height: 0.96;
  letter-spacing: -0.02em;
  color: var(--ink);
}

/* Hide the description — keeps layout clean */
.shop-toolbar-text {
  display: none;
}

/* Result count — bottom-right of hero */
.shop-toolbar-summary {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
  box-shadow: none;
  margin-top: 0;
  padding-bottom: 4px;
}

.shop-summary-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(91, 45, 115, 0.38);
}

.shop-summary-label::after {
  content: none;
}

.shop-results-copy {
  margin-top: 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  font-weight: 400;
  font-style: normal;
  line-height: 1;
  color: var(--ink);
}

/* Category pills — sandwiched between two hairlines */
.shop-category-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 0;
  padding: 16px 0;
  border-top: 1px solid rgba(91, 45, 115, 0.1);
  border-bottom: 1px solid rgba(91, 45, 115, 0.1);
}

.shop-category-bar a {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 14px;
  border: 1px solid rgba(91, 45, 115, 0.2);
  border-radius: 999px;
  background: transparent;
  color: var(--plum-deep);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 160ms, border-color 160ms, color 160ms;
}

.shop-category-bar a:hover,
.shop-category-bar a:focus-visible,
.shop-category-bar a.is-active {
  background: var(--plum-deep);
  border-color: var(--plum-deep);
  color: #fff;
  transform: none;
}

/* Controls — flat, no card */
.shop-toolbar-controls {
  margin-top: 0;
  padding: 12px 0;
  border-top: none;
  border-bottom: 1px solid rgba(91, 45, 115, 0.09);
  border-radius: 0;
  background: none;
  box-shadow: none;
}

@media (max-width: 640px) {
  .shop-toolbar-hero {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .shop-toolbar-summary {
    flex-shrink: 1;
    align-items: flex-start;
    width: 100%;
  }

  .shop-summary-label {
    white-space: normal;
    word-break: break-word;
  }

  .shop-results-copy {
    font-size: clamp(1rem, 5vw, 1.3rem);
    white-space: normal;
    word-break: break-word;
  }
}

/* ================================================================
   FAQ SECTION — CONTACT PAGE
   ================================================================ */

.faq-section {
  padding: 72px 20px 100px;
}

.faq-inner {
  width: min(720px, 100%);
  margin: 0 auto;
  text-align: left;
}

.faq-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  font-weight: 400;
  color: var(--ink);
  margin: 8px 0 44px;
  letter-spacing: -0.01em;
  text-align: left;
}

.faq-list {
  text-align: left;
  border-top: 1px solid rgba(91, 45, 115, 0.12);
}

.faq-item {
  border-bottom: 1px solid rgba(91, 45, 115, 0.12);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 22px 2px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.96rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--ink);
  text-align: left;
  transition: color 200ms ease;
}

.faq-icon {
  flex-shrink: 0;
  position: relative;
  width: 20px;
  height: 20px;
  color: var(--plum-deep);
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--plum-deep);
  border-radius: 2px;
  transition: transform 280ms cubic-bezier(0.4, 0, 0.2, 1), opacity 280ms ease;
}

.faq-icon::before {
  width: 14px;
  height: 1.5px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  width: 1.5px;
  height: 14px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-item.is-open .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-item.is-open .faq-question {
  color: var(--plum-deep);
}

/* Grid trick — GPU-accelerated, no layout thrash */
.faq-answer-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.is-open .faq-answer-wrap {
  grid-template-rows: 1fr;
}

.faq-answer {
  overflow: hidden;
  padding-bottom: 0;
  transition: padding-bottom 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.is-open .faq-answer {
  padding-bottom: 22px;
}

.faq-answer p {
  margin: 0;
  padding: 0 2px;
  font-size: 0.93rem;
  line-height: 1.8;
  color: rgba(36, 24, 40, 0.65);
}

/* ================================================================
   CONTACT BOTTOM — TWO-COLUMN GRID
   ================================================================ */

.contact-bottom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  /* Same width as .contact-showcase so left/right edges line up */
  width: min(100% - 72px, 1600px);
  margin: 0 auto 72px;
  padding: 64px 0 0;
  align-items: start;
}

/* FAQ section — strip all standalone padding so column edge is flush */
.contact-bottom-grid .faq-section {
  padding: 0;
  margin: 0;
  width: 100%;
}

.contact-bottom-grid .faq-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  font-weight: 400;
  color: var(--ink);
  margin: 8px 0 44px;
  letter-spacing: -0.01em;
  text-align: left;
}

/* Contact information — fill its column, no inherited offsets */
.contact-bottom-grid .contact-information {
  width: 100%;
  margin: 0;
  padding: 0;
}

/* Responsive — stack on mobile */
@media (max-width: 768px) {
  .contact-bottom-grid {
    grid-template-columns: 1fr;
    gap: 52px;
    padding: 48px 0 0;
  }
}

/* ================================================================
   PRIVACY POLICY PAGE
   ================================================================ */

.policy-page {
  width: min(100% - 48px, 1100px);
  margin: 0 auto;
  padding: 60px 0 96px;
}

.policy-header {
  border-bottom: 1px solid rgba(91, 45, 115, 0.12);
  margin-bottom: 56px;
  padding-bottom: 40px;
}

.policy-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.8rem, 6vw, 4.2rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #111;
  margin: 0 0 20px;
}

.policy-intro {
  font-size: 1.08rem;
  line-height: 1.8;
  color: #666;
  margin: 0;
  max-width: 560px;
}

.policy-section {
  padding: 36px 0;
  border-bottom: 1px solid rgba(91, 45, 115, 0.08);
}

.policy-section:last-child {
  border-bottom: none;
}

.policy-section-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #111;
  letter-spacing: 0.01em;
  margin: 0 0 12px;
}

.policy-section-text {
  font-size: 1rem;
  line-height: 1.85;
  color: #555;
  margin: 0;
}

.policy-link {
  color: var(--plum-deep, #5b2d73);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.policy-link:hover {
  color: #111;
}

.policy-contact-section .policy-section-title {
  margin-bottom: 20px;
}

.policy-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.policy-contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  line-height: 1.5;
  color: #555;
}

.policy-contact-list svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  stroke: var(--plum-deep, #5b2d73);
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.policy-effective-date {
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  color: #aaa;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.policy-info-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.policy-info-list li {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

.policy-info-list li span {
  font-weight: 600;
  color: #222;
  margin-right: 6px;
}

.policy-footer-note {
  border-top: 1px solid rgba(91, 45, 115, 0.12);
  border-bottom: none;
  padding-bottom: 0;
}

@media (max-width: 600px) {
  .policy-page {
    padding: 40px 0 72px;
  }

  .policy-header {
    margin-bottom: 40px;
    padding-bottom: 28px;
  }

  .policy-section {
    padding: 28px 0;
  }
}

/* ── Mobile navigation ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 6px;
  border: none;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
}

.nav-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  transition: transform 220ms ease, opacity 220ms ease;
}

body.nav-open .nav-hamburger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.nav-open .nav-hamburger span:nth-child(2) {
  opacity: 0;
}

body.nav-open .nav-hamburger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 768px) {
  .nav-hamburger {
    display: flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 20;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0 16px;
    background: #eee4f4;
    border-bottom: 1px solid rgba(91, 45, 115, 0.18);
    box-shadow: 0 8px 24px rgba(36, 24, 40, 0.1);
  }

  body.nav-open .site-nav {
    display: flex;
  }

  .site-header {
    position: sticky;
  }

  .nav-link {
    padding: 14px 24px;
    font-size: 0.95rem;
    justify-content: flex-start;
  }

  .nav-link::after {
    display: none;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
    position: relative;
  }

  .site-nav {
    grid-column: 1 / -1;
  }

  .brand-name {
    font-size: clamp(1.6rem, 5vw, 2.2rem);
  }
}

/* ── Account icon ── */
.account-icon {
  width: 42px;
  height: 42px;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  box-shadow: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.account-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.account-icon:hover,
.account-icon:focus-visible {
  color: var(--plum-deep);
  transform: translateY(-1px);
}

/* ── WhatsApp floating button ── */
.whatsapp-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 50;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: #25D366;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.22);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.whatsapp-fab:hover,
.whatsapp-fab:focus-visible {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.3);
}

.whatsapp-fab svg {
  width: 30px;
  height: 30px;
  fill: #ffffff;
}

@media (max-width: 768px) {
  .whatsapp-fab {
    bottom: 20px;
    right: 16px;
    width: 50px;
    height: 50px;
  }

  .whatsapp-fab svg {
    width: 26px;
    height: 26px;
  }
}

/* ── Checkout rebuild ── */

.checkout-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.checkout-section > h2 {
  margin: 0 0 4px;
}

.checkout-tab-group {
  display: grid;
  grid-template-columns: 1fr;
  border: 1px solid rgba(91, 45, 115, 0.18);
  border-radius: 10px;
  overflow: hidden;
}

.checkout-tab {
  position: relative;
  cursor: pointer;
}

.checkout-tab input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.checkout-tab > span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: #6b5f75;
  background: transparent;
  transition: background 160ms ease, color 160ms ease;
}

.checkout-tab:not(:last-child) > span {
  border-right: 1px solid rgba(91, 45, 115, 0.18);
}

.checkout-tab input:checked + span {
  background: var(--plum-deep);
  color: #ffffff;
}

.checkout-checkbox-label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.94rem;
  color: #4d4854;
  user-select: none;
}

.checkout-checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin: 0;
  accent-color: var(--plum-deep);
  cursor: pointer;
}

.checkout-shipping-option {
  display: block;
  position: relative;
  border: 1px solid rgba(91, 45, 115, 0.15);
  border-radius: 10px;
  padding: 18px 20px;
  cursor: pointer;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.checkout-shipping-option input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.checkout-shipping-option:has(input:checked) {
  border-color: var(--plum-deep);
  box-shadow: 0 0 0 1px var(--plum-deep);
}

.checkout-shipping-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.checkout-shipping-details {
  display: flex;
  align-items: center;
  gap: 12px;
}

.checkout-shipping-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  stroke: #6b5f75;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.checkout-shipping-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: #4d4854;
}

.checkout-shipping-price {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #2a1f30;
  white-space: nowrap;
}

.checkout-legal a {
  color: var(--plum-deep);
  text-decoration: underline;
}

