/* ReLoved Elegance — Brand palette from homepage.jpg */
:root {
  --color-cream: #F6F1EA;
  --color-ivory: #f0ebe3;
  --color-blush: #e8ddd4;
  --color-rose: #B88C7A;
  --color-rose-dark: #9a7262;
  --color-sage: #8A8F78;
  --color-sage-dark: #6f7460;
  --color-gold: #C8A46E;
  --color-gold-light: #d4b896;
  --color-charcoal: #333333;
  --color-white: #ffffff;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Montserrat', -apple-system, sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 5rem;

  --transition: 0.3s ease;
  --shadow-soft: 0 4px 24px rgba(51, 51, 51, 0.08);
  --shadow-card: 0 8px 32px rgba(51, 51, 51, 0.12);
  --radius: 2px;
  --max-width: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--color-charcoal);
  background-color: var(--color-cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

ul {
  list-style: none;
}

.container {
  width: min(var(--max-width), 92vw);
  margin-inline: auto;
}

.section {
  padding-block: var(--space-2xl);
}

.section-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-sm);
}

.section-header {
  margin-bottom: var(--space-xl);
}

.section-header.centered {
  text-align: center;
}

.section-header h2,
.page-hero h1,
.content-block h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--color-charcoal);
  margin-bottom: var(--space-md);
}

.section-desc {
  max-width: 540px;
  color: var(--color-sage);
  font-size: 1.05rem;
}

.section-desc-centered {
  margin-inline: auto;
}

.script-accent {
  font-style: italic;
  color: var(--color-rose);
}

/* Top bar */
.top-bar {
  background-color: var(--color-ivory);
  border-bottom: 1px solid var(--color-blush);
  text-align: center;
  padding: 0.5rem var(--space-sm);
  font-size: 0.65rem;
  font-weight: 500;
  lettr-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-sage);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}

.btn-primary {
  background-color: var(--color-rose);
  color: var(--color-white);
  border-color: var(--color-rose);
}

.btn-primary:hover {
  background-color: var(--color-rose-dark);
  border-color: var(--color-rose-dark);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-charcoal);
  border-color: var(--color-charcoal);
}

.btn-outline:hover {
  background-color: var(--color-charcoal);
  color: var(--color-white);
}

.btn-outline-light {
  background-color: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.7);
}

.btn-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.12);
  border-color: var(--color-white);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-rose);
  border-color: var(--color-rose);
}

.btn-secondary:hover {
  background-color: var(--color-rose);
  color: var(--color-white);
}

.btn-sage {
  background-color: var(--color-sage);
  color: var(--color-white);
  border-color: var(--color-sage);
}

.btn-sage:hover {
  background-color: var(--color-sage-dark);
  border-color: var(--color-sage-dark);
}

.btn-full {
  width: 100%;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(246, 241, 234, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-blush);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: var(--space-sm);
  gap: var(--space-sm);
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.logo span {
  font-style: italic;
  color: var(--color-rose);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.75rem);
}

.nav-links a {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-charcoal);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-rose);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background-color: var(--color-charcoal);
  transition: var(--transition);
}

/* Hero — homepage mockup imagery with readable text overlay */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(246, 241, 234, 0.93) 0%, rgba(246, 241, 234, 0.78) 42%, rgba(246, 241, 234, 0.35) 100%),
    url('../images/IMG_8929.png') center top/cover no-repeat;
}

.hero .hero-content {
  position: relative;
  max-width: 560px;
  padding-block: var(--space-2xl);
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-sm);
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: var(--space-md);
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--color-charcoal);
  margin-bottom: var(--space-lg);
  opacity: 0.9;
}

.hero-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

/* Landing page — matches home2.jpg */
.landing-page {
  --color-landing-rose: #D2A69B;
  --color-landing-rose-dark: #b8897e;
  --color-landing-cream: #FDF9F6;
  --color-landing-champagne: #E8DDD4;
  --color-landing-bronze: #8B6B5C;
  --color-landing-text: #4A4A4A;
  background-color: var(--color-landing-cream);
  color: var(--color-landing-text);
  max-width: 696px;
  margin-inline: auto;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.04);
}

.landing-page .nav-toggle {
  display: none;
}

.landing-page .nav-links {
  position: static;
  display: flex;
  flex-direction: row;
  width: auto;
  height: auto;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.top-bar-rose {
  background-color: var(--color-landing-champagne);
  color: var(--color-landing-text);
  border-bottom: none;
  letter-spacing: 0.18em;
  font-size: 0.6rem;
  font-family: var(--font-sans);
  text-transform: uppercase;
  padding-block: 0.55rem;
}

.landing-page .header-light {
  background-color: var(--color-white);
  border-bottom: none;
  position: relative;
}

.landing-page .nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--space-md);
  padding-block: 0.65rem;
}

.landing-page .logo-full,
.landing-page .logo-img {
  justify-self: start;
}

.landing-page .nav-links {
  justify-self: center;
}

.landing-page .nav-icons {
  justify-self: end;
}

.landing-page .nav-toggle {
  justify-self: end;
  grid-column: 3;
}

.logo-img {
  display: block;
  line-height: 0;
}

.logo-img img {
  height: 52px;
  width: auto;
}

.story-top-bar {
  padding: 7px 16px;
  border-bottom: 0;
  background: #e3c7be;
  color: #6d5a52;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.15em;
  line-height: 1.3;
}

.story-site-header {
  position: relative;
  top: auto;
  background: var(--color-white);
  border-bottom: 0;
  backdrop-filter: none;
}

.story-site-header .nav {
  width: min(1200px, 88vw);
  min-height: 88px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(20px, 3vw, 42px);
  padding-block: 10px;
}

.story-site-header .logo-img {
  justify-self: start;
}

.story-site-header .logo-img img {
  width: clamp(150px, 13vw, 188px);
  height: auto;
  object-fit: contain;
}

.story-site-header .nav-links {
  justify-self: center;
}

.story-site-header .nav-links a {
  font-size: 0.62rem;
  white-space: nowrap;
}

.story-header-icons {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 18px;
  color: #4f403b;
}

.story-header-icons a {
  position: relative;
  display: inline-flex;
}

.story-header-icons svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.story-header-icons span {
  position: absolute;
  top: -7px;
  right: -8px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #d2a69b;
  color: #fff;
  font-size: 7px;
  font-weight: 600;
}

.landing-page .logo-img img {
  height: 50px;
}

.landing-page .nav-links {
  justify-self: center;
  gap: clamp(0.5rem, 1.5vw, 1.25rem);
}

.landing-page .nav-links a {
  font-family: var(--font-sans);
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-landing-text);
  padding-bottom: 0.3rem;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}

.landing-page .nav-links a.active {
  color: var(--color-landing-text);
  border-bottom-color: var(--color-landing-champagne);
}

.landing-page .nav-links a:hover {
  color: var(--color-landing-rose-dark);
  border-bottom-color: rgba(210, 166, 155, 0.5);
}

.nav-icons {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-icon {
  color: var(--color-landing-text);
  display: flex;
  align-items: center;
  position: relative;
}

.nav-bag .bag-count {
  position: absolute;
  top: -6px;
  right: -8px;
  background: var(--color-landing-rose);
  color: var(--color-white);
  font-size: 0.55rem;
  font-weight: 600;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.landing-page main {
  background-color: var(--color-landing-cream);
}

.landing-hero {
  background-color: var(--color-landing-cream);
}

.landing-page .header-light .container {
  width: 100%;
  max-width: none;
  padding-inline: 0.65rem;
}

.landing-hero-split {
  display: grid;
  grid-template-columns: 150px 252px 1fr;
  min-height: 300px;
  align-items: stretch;
}

.landing-hero-flowers img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 0% 50%;
  display: block;
}

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

.landing-hero-flowers {
  background-color: var(--color-landing-cream);
  overflow: hidden;
}

.landing-hero-text {
  display: flex;
  align-items: center;
  padding: 1.5rem 1.25rem;
  background-color: var(--color-landing-cream);
}

.landing-hero-photo {
  overflow: hidden;
  background-color: var(--color-landing-cream);
}

.landing-hero-photo img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  object-position: left top;
  display: block;
}

.landing-hero-content {
  max-width: 100%;
}

.landing-hero-content .hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-landing-text);
  margin-bottom: 0.85rem;
}

.landing-hero-content h1 {
  margin-bottom: 0.5rem;
  line-height: 1.05;
}

.hero-title-line {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3.2vw, 2.35rem);
  font-weight: 500;
  color: var(--color-landing-bronze);
}

.hero-title-script {
  display: block;
  font-family: 'Great Vibes', cursive;
  font-size: clamp(2rem, 3.8vw, 2.85rem);
  font-weight: 400;
  color: var(--color-landing-bronze);
  line-height: 1.1;
  margin-top: 0.1rem;
}

.hero-heart {
  font-size: 0.65rem;
  color: var(--color-landing-champagne);
  margin-bottom: 0.65rem;
}

.landing-hero-content .hero-desc {
  font-family: var(--font-serif);
  font-size: 0.82rem;
  color: var(--color-landing-text);
  margin-bottom: 0.15rem;
  line-height: 1.5;
}

.landing-hero-content .hero-actions {
  margin-top: 1.1rem;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 0.65rem;
}

.landing-hero-content .btn {
  font-family: var(--font-sans);
  font-size: 0.52rem;
  padding: 0.65rem 0.75rem;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.btn-rose {
  background-color: var(--color-landing-rose);
  color: var(--color-white);
  border-color: var(--color-landing-rose);
  padding: 0.9rem 2.1rem;
}

.btn-rose:hover {
  background-color: var(--color-landing-rose-dark);
  border-color: var(--color-landing-rose-dark);
}

.btn-rose-outline {
  background-color: var(--color-white);
  color: var(--color-landing-rose);
  border-color: var(--color-landing-rose);
}

.landing-values {
  background-color: var(--color-white);
  padding-block: 1.25rem 1.5rem;
  border-top: none;
}

.values-grid-landing {
  gap: 0;
  max-width: none;
}

.value-card-landing {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0.85rem 1rem;
  text-align: center;
  border-right: 1px solid rgba(180, 170, 160, 0.45);
}

.value-card-landing:last-child {
  border-right: none;
}

.value-icon-svg {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-sm);
  color: #9A7268;
}

.value-icon-svg svg {
  width: 34px;
  height: 34px;
}

.value-card-landing h3 {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9A7268;
  margin-bottom: 0.35rem;
}

.value-card-landing p {
  font-family: var(--font-serif);
  font-size: 0.72rem;
  color: var(--color-landing-text);
  line-height: 1.45;
  max-width: 180px;
  margin-inline: auto;
}

.landing-values .container {
  width: 100%;
  max-width: none;
  padding-inline: 0;
}

@media (max-width: 900px) {
  .nav-icons {
    display: none;
  }
}

@media (max-width: 900px) {
  .landing-page .nav-icons {
    display: flex;
  }
}

@media (max-width: 768px) {
  .values-grid-landing {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .values-grid-landing {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }
}

/* Page hero (inner pages) */
.page-hero {
  position: relative;
  padding-block: var(--space-2xl);
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.18;
}

.page-hero-bg--shop {
  background-image: url('../images/IMG_8929.png');
  background-position: center 35%;
}

.page-hero-bg--about {
  background-image: url('../images/IMG_8928.png');
}

.page-hero-bg--sell {
  background-image: url('../images/IMG_8929.png');
  background-position: center 80%;
}

.page-hero-bg--contact {
  background-image: url('../images/IMG_8928.png');
  background-position: center bottom;
}

.page-hero-bg--faqs {
  background-image: url('../images/homepage.jpg');
}

.page-hero-bg--packaging {
  background-image: url('../images/IMG_8931.png');
}

.page-hero .container {
  position: relative;
}

.page-hero p {
  max-width: 560px;
  color: var(--color-sage);
  font-size: 1.05rem;
}

/* Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.value-card {
  text-align: center;
  padding: var(--space-lg) var(--space-md);
  background: var(--color-white);
  border: 1px solid var(--color-blush);
}

.value-icon {
  font-size: 1.5rem;
  color: var(--color-gold);
  margin-bottom: var(--space-sm);
  display: block;
}

.value-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--color-sage);
}

/* Categories */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.category-card {
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  text-align: center;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.category-image {
  aspect-ratio: 3/4;
  background-size: cover;
  background-position: center top;
}

.category-wedding {
  background-image: url('../images/IMG_8929.png');
  background-position: 15% 42%;
}

.category-evening {
  background-image: url('../images/IMG_8929.png');
  background-position: 30% 42%;
}

.category-cocktail {
  background-image: url('../images/IMG_8929.png');
  background-position: 45% 42%;
}

.category-all {
  background-image: url('../images/IMG_8929.png');
  background-position: 75% 42%;
}

.category-card h3 {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: var(--space-sm);
}

.category-link {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-rose);
  padding-bottom: var(--space-md);
}

/* Mission block */
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.mission-visual {
  min-height: 380px;
  background:
    linear-gradient(to bottom, transparent 40%, rgba(51, 51, 51, 0.1)),
    url('../images/IMG_8928.png') right center/cover no-repeat;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.mission-content p {
  margin-bottom: var(--space-md);
}

/* Collection */
.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.dress-card {
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition);
  overflow: hidden;
}

.dress-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.dress-image {
  aspect-ratio: 3/4;
  background-size: cover;
  background-position: center top;
  position: relative;
}

.dress-1 {
  background-image: url('https://images.unsplash.com/photo-1566174053879-31528523f8ae?w=600&q=80');
}

.dress-2 {
  background-image: url('https://images.unsplash.com/photo-1595777457583-95e059d581b8?w=600&q=80');
}

.dress-3 {
  background-image: url('https://images.unsplash.com/photo-1612336818916-2a046ae0b2a2?w=600&q=80');
}

.dress-4 {
  background-image: url('https://images.unsplash.com/photo-1515372039744-b8f02a3ae446?w=600&q=80');
}

.dress-badge {
  position: absolute;
  top: var(--space-sm);
  left: var(--space-sm);
  background-color: var(--color-rose);
  color: var(--color-white);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
}

.badge-sale {
  background-color: var(--color-gold);
}

.dress-info {
  padding: var(--space-md);
}

.dress-designer {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.25rem;
}

.dress-info h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.dress-details {
  font-size: 0.85rem;
  color: var(--color-sage);
  margin-bottom: var(--space-sm);
}

.dress-footer {
  display: flex;
  align-items: baseline;
  gap: var(--space-sm);
}

.dress-price {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--color-rose);
}

.dress-original {
  font-size: 0.8rem;
  color: var(--color-sage);
  text-decoration: line-through;
}

/* Why shop / features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-md);
}

.feature-item {
  text-align: center;
  padding: var(--space-md);
}

.feature-item span {
  display: block;
  font-size: 1.25rem;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
}

.feature-item h3 {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.feature-item p {
  font-size: 0.82rem;
  color: var(--color-sage);
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.testimonial-card {
  background: var(--color-white);
  padding: var(--space-lg);
  border: 1px solid var(--color-blush);
}

.stars {
  color: var(--color-gold);
  letter-spacing: 0.15em;
  font-size: 0.85rem;
  margin-bottom: var(--space-sm);
}

.testimonial-card blockquote {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: var(--space-sm);
}

.testimonial-card cite {
  font-style: normal;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-sage);
}

/* CTA banner */
.cta-banner {
  background-color: var(--color-blush);
  padding-block: var(--space-xl);
}

.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.cta-banner h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
  max-width: 520px;
}

/* About page */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.story-visual {
  min-height: 480px;
  background:
    linear-gradient(to bottom, transparent 55%, rgba(51, 51, 51, 0.12)),
    url('../images/IMG_8928.png') center/cover no-repeat;
  box-shadow: var(--shadow-card);
}

.story-content p {
  margin-bottom: var(--space-md);
}

.story-content em {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--color-rose);
}

.philosophy-box {
  background: rgba(184, 140, 122, 0.15);
  border-left: 3px solid var(--color-rose);
  padding: var(--space-lg);
  margin-block: var(--space-lg);
}

.philosophy-box p {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 0.5rem !important;
}

.philosophy-box .script-accent {
  font-size: 1.5rem;
}

/* Our Story */
.story-page {
  overflow-x: hidden;
  background: var(--color-cream);
}

.story-hero {
  min-height: 600px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  background: #fbf8f4;
}

.story-hero-copy {
  align-self: center;
  max-width: 680px;
  padding: clamp(60px, 7vw, 104px) clamp(40px, 8vw, 128px);
}

.story-eyebrow {
  margin-bottom: 1rem;
  color: var(--color-rose-dark);
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  line-height: 1.4;
  text-transform: uppercase;
}

.story-hero h1 {
  margin-bottom: 1.75rem;
  color: #74594f;
  font-family: var(--font-serif);
  font-size: clamp(3.4rem, 5.8vw, 5.8rem);
  font-weight: 500;
  line-height: 0.92;
}

.story-hero h1 span {
  display: block;
  margin-top: 0.12em;
  color: var(--color-rose-dark);
  font-style: italic;
  font-weight: 400;
}

.story-hero-copy > p:last-child {
  max-width: 550px;
  color: #514640;
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  line-height: 1.55;
}

.story-hero-visual {
  min-height: 600px;
  overflow: hidden;
  background: var(--color-blush);
}

.story-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
}

.story-origin {
  padding-block: clamp(68px, 7vw, 108px);
  background: var(--color-white);
}

.story-origin-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(42px, 7vw, 92px);
  align-items: start;
}

.story-section-heading h2 {
  color: #74594f;
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  font-weight: 500;
  line-height: 1;
}

.story-narrative {
  max-width: 700px;
}

.story-narrative p {
  margin-bottom: 1.5rem;
  color: #4f4540;
  font-size: 1rem;
  line-height: 1.85;
}

.story-narrative .story-lead {
  margin-bottom: 2rem;
  color: #74594f;
  font-family: var(--font-serif);
  font-size: clamp(1.55rem, 2.2vw, 2rem);
  line-height: 1.42;
}

.story-narrative blockquote {
  margin: clamp(34px, 4vw, 52px) 0;
  padding: clamp(24px, 3vw, 36px) 0;
  border-top: 1px solid var(--color-blush);
  border-bottom: 1px solid var(--color-blush);
  color: var(--color-rose-dark);
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.4vw, 3rem);
  font-style: italic;
  line-height: 1.22;
}

.story-narrative .story-signoff {
  margin-top: 2.25rem;
  color: var(--color-rose-dark);
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-style: italic;
}

.story-philosophy {
  padding-block: clamp(68px, 7vw, 108px);
  background: var(--color-ivory);
}

.story-philosophy-heading {
  max-width: 800px;
  margin-inline: auto;
  text-align: center;
}

.story-philosophy-heading h2 {
  margin-bottom: 1.75rem;
  color: #74594f;
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5.2vw, 5rem);
  font-weight: 500;
  line-height: 0.98;
}

.story-philosophy-heading h2 span {
  display: block;
  color: var(--color-rose-dark);
  font-style: italic;
  font-weight: 400;
}

.story-philosophy-heading > p:last-child {
  max-width: 680px;
  margin-inline: auto;
  color: #514640;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  line-height: 1.6;
}

.story-pillars {
  width: 100%;
  max-width: 100%;
  margin-top: clamp(44px, 5vw, 64px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.story-pillar {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 clamp(18px, 3vw, 38px);
  border-right: 1px solid rgba(184, 140, 122, 0.32);
  text-align: center;
}

.story-pillar:last-child {
  border-right: 0;
}

.story-pillar svg {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  fill: none;
  stroke: var(--color-rose);
  stroke-width: 1.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.story-pillar h3 {
  margin-bottom: 0.6rem;
  color: #755a50;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.story-pillar p {
  max-width: 210px;
  margin-inline: auto;
  color: #514640;
  font-family: var(--font-serif);
  font-size: 1rem;
  line-height: 1.45;
}

.story-closing {
  padding: clamp(72px, 8vw, 112px) 24px;
  background: #fbf8f4;
  text-align: center;
}

.story-closing-inner {
  max-width: 720px;
  margin-inline: auto;
}

.story-closing h2 {
  margin-bottom: 1.5rem;
  color: #74594f;
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6vw, 5.6rem);
  font-weight: 500;
  line-height: 0.98;
}

.story-closing h2 span {
  display: block;
  color: var(--color-rose-dark);
  font-style: italic;
  font-weight: 400;
}

.story-closing-inner > p:not(.story-eyebrow) {
  margin: 0 auto 2.25rem;
  color: #514640;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  line-height: 1.6;
}

/* Packaging / bags */
.bags-intro {
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
  margin-bottom: var(--space-xl);
}

.bags-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.bag-card {
  background: var(--color-white);
  border: 1px solid var(--color-blush);
  overflow: hidden;
}

.bag-card-visual {
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
}

.bag-classic { background-image: url('../images/IMG_8931.png'); background-position: 8% 28%; }
.bag-blush { background-image: url('../images/IMG_8931.png'); background-position: 38% 28%; }
.bag-sage { background-image: url('../images/IMG_8931.png'); background-position: 68% 28%; }
.bag-wide { background-image: url('../images/IMG_8931.png'); background-position: 8% 72%; }
.bag-minimal { background-image: url('../images/IMG_8931.png'); background-position: 38% 72%; }
.bag-finishes { background-image: url('../images/IMG_8931.png'); background-position: 82% 72%; }

.bag-card h3 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: var(--space-sm) var(--space-md);
  background: var(--color-charcoal);
  color: var(--color-white);
}

.bag-card p {
  padding: var(--space-sm) var(--space-md) var(--space-md);
  font-size: 0.9rem;
  color: var(--color-sage);
}

.bags-tagline {
  text-align: center;
  margin-top: var(--space-xl);
  padding: var(--space-lg);
  background: rgba(184, 140, 122, 0.12);
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
}

/* Sell page */
.sell-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.sell-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: var(--space-sm);
}

.sell-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--color-gold);
  font-size: 0.65rem;
  top: 0.35rem;
}

.sell-card {
  background: var(--color-white);
  border: 1px solid var(--color-blush);
  padding: var(--space-lg);
  box-shadow: var(--shadow-soft);
}

.sell-card-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-sm);
}

.sell-card-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
}

.sell-card-price {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--color-rose);
}

.sell-page {
  overflow-x: hidden;
  background: var(--color-cream);
}

.sell-hero {
  min-height: 580px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  background: #fbf8f4;
}

.sell-hero-copy {
  align-self: center;
  max-width: 760px;
  padding: clamp(58px, 7vw, 104px) clamp(40px, 8vw, 128px);
}

.sell-hero h1 {
  margin-bottom: 1.65rem;
  color: #74594f;
  font-family: var(--font-serif);
  font-size: clamp(3.3rem, 5.5vw, 5.6rem);
  font-weight: 500;
  line-height: 0.94;
}

.sell-hero h1 span {
  display: block;
  margin-top: 0.1em;
  color: var(--color-rose-dark);
  font-style: italic;
  font-weight: 400;
}

.sell-hero-copy > p:not(.story-eyebrow) {
  max-width: 560px;
  margin-bottom: 2rem;
  color: #514640;
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  line-height: 1.55;
}

.sell-hero-art {
  min-height: 580px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--color-ivory);
}

.sell-hero-art img {
  width: min(70%, 520px);
  height: auto;
  mix-blend-mode: multiply;
}

.sell-intro {
  padding-block: clamp(64px, 7vw, 104px);
  background: var(--color-white);
  text-align: center;
}

.sell-intro-inner {
  max-width: 780px;
}

.sell-intro h2,
.sell-section-heading h2,
.sell-reassurance h2,
.sell-submit h2 {
  color: #74594f;
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.02;
}

.sell-intro h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(2.7rem, 5vw, 4.8rem);
}

.sell-intro-inner > p:not(.story-eyebrow) {
  margin-bottom: 1.75rem;
  color: #514640;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  line-height: 1.65;
}

.sell-text-link {
  display: inline-block;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--color-rose);
  color: var(--color-rose-dark);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.sell-benefits,
.sell-process {
  padding-block: clamp(68px, 7vw, 108px);
  background: var(--color-ivory);
}

.sell-section-heading {
  max-width: 720px;
  margin-bottom: clamp(38px, 4vw, 58px);
}

.sell-section-heading h2 {
  font-size: clamp(2.7rem, 4.8vw, 4.6rem);
}

.sell-section-heading > p:not(.story-eyebrow) {
  margin-top: 1.4rem;
  color: #514640;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  line-height: 1.6;
}

.sell-section-heading-centered {
  margin-inline: auto;
  text-align: center;
}

.sell-benefit-grid,
.sell-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.sell-benefit {
  min-width: 0;
  padding: 0 clamp(18px, 3vw, 38px);
  border-right: 1px solid rgba(184, 140, 122, 0.32);
  text-align: center;
}

.sell-benefit:last-child {
  border-right: 0;
}

.sell-benefit svg {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  fill: none;
  stroke: var(--color-rose);
  stroke-width: 1.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sell-benefit h3,
.sell-process-grid h3,
.sell-criteria-list h3 {
  margin-bottom: 0.6rem;
  color: #755a50;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  line-height: 1.45;
  text-transform: uppercase;
}

.sell-benefit p,
.sell-process-grid p,
.sell-criteria-list p {
  color: #514640;
  font-family: var(--font-serif);
  font-size: 1rem;
  line-height: 1.5;
}

.sell-benefit p {
  max-width: 215px;
  margin-inline: auto;
}

.sell-criteria {
  padding-block: clamp(68px, 7vw, 110px);
  background: var(--color-white);
}

.sell-criteria-grid,
.sell-reassurance-inner,
.sell-submit-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(40px, 7vw, 90px);
  align-items: start;
}

.sell-criteria .sell-section-heading {
  margin-bottom: 0;
}

.sell-criteria-list article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--color-blush);
}

.sell-criteria-list article:first-child {
  padding-top: 0;
}

.sell-criteria-list article:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.sell-criteria-list article > span,
.sell-process-grid > li > span {
  color: var(--color-rose);
  font-family: var(--font-serif);
  font-size: 1.35rem;
  line-height: 1;
}

.sell-process-grid {
  counter-reset: sell-step;
  list-style: none;
}

.sell-process-grid li {
  min-width: 0;
  padding: 0 clamp(18px, 3vw, 38px);
  border-right: 1px solid rgba(184, 140, 122, 0.32);
  text-align: center;
}

.sell-process-grid li:last-child {
  border-right: 0;
}

.sell-process-grid > li > span {
  display: block;
  margin-bottom: 1.25rem;
  font-size: 2rem;
  font-style: italic;
}

.sell-process-grid p {
  max-width: 220px;
  margin-inline: auto;
}

.sell-reassurance {
  padding-block: clamp(64px, 6vw, 96px);
  background: #ead8d0;
}

.sell-reassurance h2 {
  font-size: clamp(2.7rem, 4.8vw, 4.6rem);
}

.sell-reassurance-inner > div:last-child p {
  margin-bottom: 1.25rem;
  color: #514640;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  line-height: 1.7;
}

.sell-reassurance-inner > div:last-child p:last-child {
  margin-bottom: 0;
}

.sell-submit {
  padding-block: clamp(68px, 7vw, 110px);
  background: #fbf8f4;
}

.sell-submit-heading h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(3rem, 5.2vw, 5rem);
}

.sell-submit-heading h2 span {
  display: block;
  color: var(--color-rose-dark);
  font-style: italic;
  font-weight: 400;
}

.sell-submit-heading > p:not(.story-eyebrow) {
  color: #514640;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  line-height: 1.65;
}

.seller-form {
  min-width: 0;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid #e0d2c9;
  background: rgba(255, 255, 255, 0.72);
}

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

.seller-field {
  min-width: 0;
  margin-bottom: 1.35rem;
}

.seller-field label {
  display: block;
  margin-bottom: 0.55rem;
  color: #6c564d;
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.45;
  text-transform: uppercase;
}

.seller-field label span {
  color: #9a8980;
  font-weight: 400;
}

.seller-field input,
.seller-field select,
.seller-field textarea {
  width: 100%;
  min-width: 0;
  padding: 0.85rem 0.95rem;
  border: 1px solid #d8c8bf;
  border-radius: 0;
  background: var(--color-white);
  color: #514640;
  font: inherit;
}

.seller-field textarea {
  resize: vertical;
}

.seller-field input:focus,
.seller-field select:focus,
.seller-field textarea:focus {
  outline: 2px solid rgba(184, 140, 122, 0.25);
  outline-offset: 2px;
  border-color: var(--color-rose);
}

.seller-field input[type="file"] {
  padding: 0.7rem;
  font-size: 0.78rem;
}

.seller-field-note {
  margin-top: 0.45rem;
  color: #86766e;
  font-size: 0.76rem;
  line-height: 1.5;
}

.seller-consent {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  margin-bottom: 1.5rem;
  color: #6c5c54;
  font-size: 0.78rem;
  line-height: 1.55;
}

.seller-consent input {
  margin-top: 0.25rem;
}

.seller-form .btn {
  min-height: 48px;
}

.seller-success {
  padding: clamp(36px, 7vw, 72px) 12px;
  text-align: center;
}

.seller-success h3 {
  margin-bottom: 0.75rem;
  color: var(--color-rose-dark);
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 500;
}

.seller-success p {
  color: #514640;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  line-height: 1.6;
}

/* FAQ */
.faq-document .faq-page {
  width: min(720px, 92vw);
  margin-inline: auto;
  padding: 2.35rem 0 4rem;
}

.faq-document .faq-intro {
  margin-bottom: 1.35rem;
}

.faq-document .faq-intro .section-label {
  margin-bottom: 0.55rem;
}

.faq-document .faq-intro h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.2vw, 2.55rem);
  font-weight: 500;
  line-height: 1.18;
  color: var(--color-charcoal);
  margin-bottom: 0.55rem;
}

.faq-document .faq-intro p {
  max-width: 34rem;
  color: var(--color-sage);
  font-size: 1.02rem;
  line-height: 1.65;
}

.faq-document .faq-list {
  max-width: none;
  margin-inline: 0;
  border-top: 1px solid rgba(184, 140, 122, 0.28);
}

.faq-document .faq-item {
  border-bottom: 1px solid rgba(184, 140, 122, 0.28);
}

.faq-document .faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  list-style: none;
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: 1.18rem;
  font-weight: 500;
  line-height: 1.35;
  color: var(--color-charcoal);
  padding: 0.95rem 0;
  min-height: 2.75rem;
}

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

.faq-document .faq-item summary::after {
  content: '+';
  flex: 0 0 auto;
  color: var(--color-rose);
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1;
}

.faq-document .faq-item[open] summary::after {
  content: '\2013';
}

.faq-document .faq-item summary:focus {
  outline: none;
}

.faq-document .faq-item summary:focus-visible {
  outline: 1px solid var(--color-rose);
  outline-offset: 3px;
}

.faq-document .faq-item .faq-answer {
  padding: 0 1.75rem 1rem 0;
}

.faq-document .faq-item .faq-answer p {
  color: #6f645c;
  font-size: 0.92rem;
  line-height: 1.7;
  max-width: 38rem;
}

.faq-document .faq-item .faq-answer a {
  color: var(--color-rose-dark);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.faq-document .faq-item .faq-answer a:hover {
  color: var(--color-charcoal);
}

.faq-document .faq-contact {
  margin-top: 2rem;
  text-align: center;
}

.faq-document .faq-page {
  padding-bottom: 2.25rem;
}

.faq-document .footer {
  padding-top: 2.5rem;
  border-top: 1px solid rgba(184, 140, 122, 0.22);
  background: #f3ebe4;
  color: #6b5b54;
}

.faq-document .footer-grid {
  gap: clamp(1.5rem, 3vw, 2.5rem);
  padding-bottom: 2.25rem;
}

.faq-document .footer-brand .logo {
  color: inherit;
  margin-bottom: 1rem;
}

.faq-document .footer .logo-img img {
  width: 180px;
  height: auto;
  object-fit: contain;
}

.faq-document .footer-brand p {
  max-width: 260px;
  color: #806b62;
  font-family: var(--font-serif);
  font-size: 1rem;
  line-height: 1.5;
}

.faq-document .footer-links h4 {
  margin-bottom: 1rem;
  color: #8b685d;
  font-size: 1.05rem;
  font-weight: 500;
}

.faq-document .footer-links li {
  margin-bottom: 0.45rem;
}

.faq-document .footer-links a {
  color: #65564f;
}

.faq-document .footer-links a:hover {
  color: var(--color-rose-dark);
}

.faq-document .footer .newsletter-form {
  margin-top: 0.85rem;
}

.faq-document .footer .newsletter-form input {
  border: 1px solid #dacbc1;
  background: rgba(255, 255, 255, 0.72);
  color: #514640;
}

.faq-document .footer .newsletter-form input::placeholder {
  color: #9a8980;
}

.faq-document .footer .newsletter-form button {
  background: var(--color-rose);
  color: var(--color-white);
}

.faq-document .footer-bottom {
  border-top: 1px solid rgba(184, 140, 122, 0.22);
  color: #8b776d;
}

.faq-document .footer-bottom a {
  color: #8b776d;
}

.faq-document .footer-bottom a:hover {
  color: var(--color-rose-dark);
}

@media (max-width: 768px) {
  .faq-document .faq-page {
    padding: 1.65rem 0 1.75rem;
  }

  .faq-document .faq-intro {
    margin-bottom: 1.1rem;
  }

  .faq-document .faq-intro h1 {
    font-size: 1.9rem;
  }

  .faq-document .faq-item summary {
    font-size: 1.08rem;
    padding: 0.9rem 0;
  }

  .faq-document .footer {
    padding-top: 2rem;
  }

  .faq-document .footer-grid {
    gap: 1.5rem;
    padding-bottom: 1.75rem;
  }

  .faq-document .footer .newsletter-form {
    width: 100%;
  }
}

/* Contact page footer (scoped) */
.contact-document .footer {
  padding-top: 2.5rem;
  border-top: 1px solid rgba(184, 140, 122, 0.22);
  background: #f3ebe4;
  color: #6b5b54;
}

.contact-document .footer-grid {
  gap: clamp(1.5rem, 3vw, 2.5rem);
  padding-bottom: 2.25rem;
}

.contact-document .footer-brand .logo {
  color: inherit;
  margin-bottom: 1rem;
}

.contact-document .footer .logo-img img {
  width: 180px;
  height: auto;
  object-fit: contain;
}

.contact-document .footer-brand p {
  max-width: 260px;
  color: #806b62;
  font-family: var(--font-serif);
  font-size: 1rem;
  line-height: 1.5;
}

.contact-document .footer-links h4 {
  margin-bottom: 1rem;
  color: #8b685d;
  font-size: 1.05rem;
  font-weight: 500;
}

.contact-document .footer-links li {
  margin-bottom: 0.45rem;
}

.contact-document .footer-links a {
  color: #65564f;
}

.contact-document .footer-links a:hover {
  color: var(--color-rose-dark);
}

.contact-document .footer .newsletter-form {
  margin-top: 0.85rem;
}

.contact-document .footer .newsletter-form input {
  border: 1px solid #dacbc1;
  background: rgba(255, 255, 255, 0.72);
  color: #514640;
}

.contact-document .footer .newsletter-form input::placeholder {
  color: #9a8980;
}

.contact-document .footer .newsletter-form button {
  background: var(--color-rose);
  color: var(--color-white);
}

.contact-document .footer-bottom {
  border-top: 1px solid rgba(184, 140, 122, 0.22);
  color: #8b776d;
}

.contact-document .footer-bottom a {
  color: #8b776d;
}

.contact-document .footer-bottom a:hover {
  color: var(--color-rose-dark);
}

@media (max-width: 768px) {
  .contact-document .footer {
    padding-top: 2rem;
  }

  .contact-document .footer-grid {
    gap: 1.5rem;
    padding-bottom: 1.75rem;
  }

  .contact-document .footer .newsletter-form {
    width: 100%;
  }
}

/* Contact page intro, details and form (scoped) */
.contact-document .contact-page {
  width: min(920px, 92vw);
  margin-inline: auto;
  padding: 2.35rem 0 2.5rem;
}

.contact-document .contact-intro {
  max-width: 36rem;
  margin-bottom: 2.1rem;
}

.contact-document .contact-intro .section-label {
  margin-bottom: 0.55rem;
}

.contact-document .contact-intro h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.2vw, 2.55rem);
  font-weight: 500;
  line-height: 1.18;
  color: #4a3f3a;
  margin-bottom: 0.65rem;
}

.contact-document .contact-intro p {
  max-width: 34rem;
  color: #6b5b54;
  font-size: 1.02rem;
  line-height: 1.65;
}

.contact-document .contact-body {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: start;
}

.contact-document .contact-item {
  margin-bottom: 1.35rem;
}

.contact-document .contact-label {
  color: #8b685d;
  margin-bottom: 0.35rem;
}

.contact-document .contact-item p,
.contact-document .contact-item a {
  color: #4a3f3a;
  font-size: 0.98rem;
  line-height: 1.55;
}

.contact-document .contact-item a:hover {
  color: var(--color-rose-dark);
}

.contact-document .contact-form {
  background: transparent;
  padding: 0;
  box-shadow: none;
  max-width: 28rem;
}

.contact-document .form-group {
  margin-bottom: 1.15rem;
}

.contact-document .form-group label {
  color: #8b685d;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
}

.contact-document .form-group input,
.contact-document .form-group select,
.contact-document .form-group textarea {
  padding: 0.7rem 0.9rem;
  background: #faf6f1;
  border: 1px solid #dacbc1;
  border-radius: 0;
  color: #4a3f3a;
}

.contact-document .form-group input:focus,
.contact-document .form-group select:focus,
.contact-document .form-group textarea:focus {
  border-color: var(--color-rose);
}

.contact-document .contact-form .btn-primary {
  margin-top: 0.25rem;
  min-width: 11.5rem;
}

@media (max-width: 768px) {
  .contact-document .contact-page {
    padding: 1.65rem 0 2rem;
  }

  .contact-document .contact-intro {
    margin-bottom: 1.5rem;
  }

  .contact-document .contact-intro h1 {
    font-size: 1.9rem;
  }

  .contact-document .contact-body {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .contact-document .contact-form {
    max-width: none;
  }

  .contact-document .contact-form .btn-primary {
    width: 100%;
  }
}

.contact-document .contact-story {
  margin-top: 2.6rem;
  padding-top: 2.35rem;
  border-top: 1px solid #eadfd9;
  scroll-margin-top: 5.75rem;
}

.contact-document .contact-story-intro {
  max-width: 36rem;
  margin-bottom: 1.85rem;
}

.contact-document .contact-story-intro .section-label {
  margin-bottom: 0.55rem;
}

.contact-document .contact-story-intro h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 3vw, 2.25rem);
  font-weight: 500;
  line-height: 1.18;
  color: #4a3f3a;
  margin-bottom: 0.65rem;
}

.contact-document .contact-story-intro p {
  max-width: 34rem;
  color: #6b5b54;
  font-size: 1.02rem;
  line-height: 1.65;
}

.contact-document .contact-story-form {
  max-width: 28rem;
}

.contact-document .contact-story-permission {
  margin-top: 1.15rem;
  padding: 0;
  border: 0;
  max-width: 28rem;
}

.contact-document .contact-story-permission legend {
  margin-bottom: 0.7rem;
  padding: 0;
  color: #8b685d;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.5;
}

.contact-document .contact-story-choice {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin-bottom: 0.55rem;
  color: #4a3f3a;
  font-size: 0.92rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.45;
  text-transform: none;
  cursor: pointer;
}

.contact-document .contact-story-choice input[type="radio"] {
  width: auto;
  min-width: 0;
  margin-top: 0.2rem;
  padding: 0;
  border: 0;
  background: transparent;
  accent-color: #8b685d;
  box-shadow: none;
}

.contact-document .contact-story-status {
  margin: 0.9rem 0 0;
  color: #8b685d;
  font-family: var(--font-serif);
  font-size: 0.98rem;
  line-height: 1.55;
}

.contact-document .contact-story-form .form-success {
  text-align: left;
  padding: 0;
}

@media (max-width: 768px) {
  .contact-document .contact-story {
    margin-top: 2rem;
    padding-top: 1.85rem;
  }

  .contact-document .contact-story-intro h2 {
    font-size: 1.7rem;
  }

  .contact-document .contact-story-form {
    max-width: none;
  }

  .contact-document .contact-story-form .btn-primary {
    width: 100%;
  }
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
}

.contact-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.25rem;
}

.contact-item {
  margin-bottom: var(--space-md);
}

.contact-item a {
  color: var(--color-rose);
}

.contact-form {
  background: var(--color-white);
  padding: var(--space-lg);
  box-shadow: var(--shadow-soft);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--color-charcoal);
  background: var(--color-cream);
  border: 1px solid var(--color-blush);
  border-radius: var(--radius);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-gold);
}

.form-success {
  text-align: center;
  padding: var(--space-xl);
}

.form-success h3 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--color-rose);
  margin-bottom: var(--space-sm);
}

.bg-ivory { background-color: var(--color-ivory); }
.bg-white { background-color: var(--color-white); }
.bg-sage-bar {
  background-color: var(--color-sage);
  color: var(--color-cream);
  text-align: center;
  padding: var(--space-md);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.text-center { text-align: center; }
.mt-lg { margin-top: var(--space-lg); }

/* Footer */
.footer {
  background-color: var(--color-charcoal);
  color: rgba(255, 255, 255, 0.7);
  padding-top: var(--space-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: var(--space-xl);
  padding-bottom: var(--space-xl);
}

.footer-brand .logo {
  color: var(--color-white);
  display: inline-block;
  margin-bottom: var(--space-sm);
}

.footer-links h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a:hover {
  color: var(--color-gold-light);
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  margin-top: var(--space-sm);
}

.newsletter-form input {
  flex: 1;
  padding: 0.6rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-white);
  font-family: var(--font-sans);
  font-size: 0.85rem;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
  padding: 0.6rem 1rem;
  background: var(--color-rose);
  color: var(--color-white);
  border: none;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-block: var(--space-md);
  text-align: center;
  font-size: 0.8rem;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a:hover {
  color: var(--color-gold-light);
}

.story-footer {
  padding-top: clamp(50px, 5vw, 70px);
  border-top: 1px solid rgba(200, 164, 110, 0.28);
  background: #f3ebe4;
  color: #6b5b54;
}

.story-footer .footer-grid {
  gap: clamp(30px, 4vw, 52px);
  padding-bottom: clamp(42px, 4vw, 56px);
}

.story-footer .footer-brand .logo {
  margin-bottom: 1.25rem;
}

.story-footer .footer-brand .logo-img img {
  width: 180px;
  height: auto;
  object-fit: contain;
}

.story-footer .footer-brand p {
  max-width: 260px;
  color: #806b62;
  font-family: var(--font-serif);
  font-size: 1rem;
  line-height: 1.5;
}

.story-footer .footer-links h4 {
  margin-bottom: 1.15rem;
  color: #8b685d;
  font-size: 1.08rem;
  font-weight: 500;
}

.story-footer .footer-links li {
  margin-bottom: 0.6rem;
}

.story-footer .footer-links a {
  color: #65564f;
}

.story-footer .footer-links a:hover {
  color: var(--color-rose-dark);
}

.story-footer .newsletter-form {
  margin-top: 1.1rem;
}

.story-footer .newsletter-form input {
  border: 1px solid #dacbc1;
  background: rgba(255, 255, 255, 0.72);
  color: #514640;
}

.story-footer .newsletter-form input::placeholder {
  color: #9a8980;
}

.story-footer .newsletter-form button {
  background: var(--color-rose);
  color: var(--color-white);
}

.story-footer .footer-bottom {
  border-top: 1px solid rgba(184, 140, 122, 0.24);
  color: #8b776d;
}

/* Responsive */
@media (max-width: 1024px) {
  .mission-grid,
  .story-grid,
  .sell-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .values-grid,
  .categories-grid,
  .collection-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .testimonials-grid,
  .bags-grid {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 85vw);
    height: 100vh;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: var(--space-md);
    padding: var(--space-xl);
    background-color: var(--color-cream);
    box-shadow: var(--shadow-card);
    transition: right var(--transition);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

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

  .cta-banner-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .values-grid,
  .categories-grid,
  .collection-grid,
  .testimonials-grid,
  .bags-grid,
  .features-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .newsletter-form {
    flex-direction: column;
  }
}

@media (max-width: 900px) {
  .story-hero {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .story-hero-copy {
    max-width: 760px;
    padding: 58px clamp(28px, 8vw, 72px) 52px;
  }

  .story-hero-visual {
    min-height: clamp(300px, 54vw, 440px);
  }

  .story-hero-visual img {
    object-position: 70% 34%;
  }

  .story-origin-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .story-section-heading {
    max-width: 520px;
  }

  .story-narrative {
    max-width: 720px;
  }

  .story-pillars {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 0;
  }

  .story-pillar {
    padding-block: 34px;
  }

  .story-pillar:nth-child(2) {
    border-right: 0;
  }

  .story-pillar:nth-child(-n+2) {
    border-bottom: 1px solid rgba(184, 140, 122, 0.32);
  }
}

@media (max-width: 600px) {
  .story-hero-copy {
    padding: 44px 22px 38px;
  }

  .story-hero h1 {
    margin-bottom: 1.4rem;
    font-size: clamp(2.8rem, 15vw, 4.2rem);
  }

  .story-hero-visual {
    min-height: 240px;
  }

  .story-origin,
  .story-philosophy {
    padding-block: 56px;
  }

  .story-origin-grid {
    gap: 28px;
  }

  .story-section-heading h2,
  .story-philosophy-heading h2 {
    font-size: clamp(2.55rem, 13vw, 3.5rem);
  }

  .story-narrative p {
    font-size: 0.96rem;
    line-height: 1.75;
  }

  .story-narrative blockquote {
    margin-block: 30px;
    padding-block: 22px;
    font-size: clamp(1.85rem, 9.5vw, 2.5rem);
  }

  .story-philosophy-heading > p:last-child,
  .story-closing-inner > p:not(.story-eyebrow) {
    font-size: 1.08rem;
  }

  .story-pillars {
    margin-top: 34px;
    grid-template-columns: 1fr;
  }

  .story-pillar {
    max-width: 330px;
    margin-inline: auto;
    padding: 28px 12px;
    border-right: 0;
    border-bottom: 1px solid rgba(184, 140, 122, 0.32);
  }

  .story-pillar:nth-child(-n+2) {
    border-bottom: 1px solid rgba(184, 140, 122, 0.32);
  }

  .story-pillar:last-child {
    border-bottom: 0;
  }

  .story-closing {
    padding: 62px 22px 68px;
  }

  .story-closing h2 {
    font-size: clamp(2.8rem, 14vw, 4rem);
  }

  .story-closing .btn {
    width: min(100%, 310px);
    min-height: 48px;
  }

  .story-footer .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

  .story-footer .footer-brand p {
    margin-inline: auto;
  }

  .story-footer .newsletter-form {
    width: min(100%, 360px);
    margin-inline: auto;
  }
}

@media (max-width: 768px) {
  .story-site-header .nav {
    width: 100%;
    min-height: clamp(68px, 18vw, 76px);
    grid-template-columns: 1fr auto;
    gap: 16px;
    padding: 8px clamp(16px, 5vw, 28px);
  }

  .story-site-header .logo-img img {
    width: clamp(138px, 42vw, 188px);
    height: auto;
  }

  .story-site-header .nav-toggle {
    width: 44px;
    height: 44px;
    display: grid;
    place-content: center;
    gap: 5px;
    padding: 0;
    border: 1px solid #e3d6cf;
    background: #fff;
  }

  .story-site-header .nav-toggle span {
    width: 21px;
  }

  .story-site-header .nav-links {
    justify-self: auto;
  }

  .story-header-icons {
    display: none;
  }
}

@media (min-width: 601px) and (max-width: 767px) {
  .story-pillars {
    grid-template-columns: 1fr;
  }

  .story-pillar {
    width: 100%;
    max-width: 380px;
    margin-inline: auto;
    padding: 30px 16px;
    border-right: 0;
    border-bottom: 1px solid rgba(184, 140, 122, 0.32);
  }

  .story-pillar:nth-child(-n+2) {
    border-bottom: 1px solid rgba(184, 140, 122, 0.32);
  }

  .story-pillar:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 1023px) {
  .story-pillars {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .story-pillar {
    width: auto;
    max-width: none;
    margin: 0;
    padding: 34px clamp(18px, 4vw, 38px);
    border-right: 0;
    border-bottom: 0;
  }

  .story-pillar:nth-child(odd) {
    border-right: 1px solid rgba(184, 140, 122, 0.32);
  }

  .story-pillar:nth-child(-n+2) {
    border-bottom: 1px solid rgba(184, 140, 122, 0.32);
  }
}

@media (max-width: 767px) {
  .story-pillars {
    grid-template-columns: minmax(0, 1fr);
  }

  .story-pillar {
    width: 100%;
    max-width: 380px;
    margin-inline: auto;
    padding: 30px 16px;
    border-right: 0;
    border-bottom: 1px solid rgba(184, 140, 122, 0.32);
  }

  .story-pillar:nth-child(odd) {
    border-right: 0;
  }

  .story-pillar:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 1023px) {
  .sell-benefit-grid,
  .sell-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sell-benefit,
  .sell-process-grid li {
    padding-block: 34px;
    border-bottom: 1px solid rgba(184, 140, 122, 0.32);
  }

  .sell-benefit:nth-child(2),
  .sell-process-grid li:nth-child(2) {
    border-right: 0;
  }

  .sell-benefit:nth-child(n+3),
  .sell-process-grid li:nth-child(n+3) {
    border-bottom: 0;
  }
}

@media (max-width: 900px) {
  .sell-hero {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .sell-hero-copy {
    max-width: 760px;
    padding: 58px clamp(28px, 8vw, 72px) 52px;
  }

  .sell-hero-art {
    min-height: clamp(280px, 52vw, 420px);
  }

  .sell-hero-art img {
    width: min(54%, 390px);
  }

  .sell-criteria-grid,
  .sell-reassurance-inner,
  .sell-submit-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .sell-criteria .sell-section-heading {
    max-width: 620px;
  }

  .sell-submit-heading {
    max-width: 680px;
  }
}

@media (max-width: 600px) {
  .sell-hero-copy {
    padding: 44px 22px 38px;
  }

  .sell-hero h1 {
    font-size: clamp(2.8rem, 14.5vw, 4rem);
  }

  .sell-hero-art {
    min-height: 230px;
  }

  .sell-hero-art img {
    width: min(68%, 300px);
  }

  .sell-intro,
  .sell-benefits,
  .sell-criteria,
  .sell-process,
  .sell-reassurance,
  .sell-submit {
    padding-block: 56px;
  }

  .sell-intro h2,
  .sell-section-heading h2,
  .sell-reassurance h2 {
    font-size: clamp(2.45rem, 12vw, 3.4rem);
  }

  .sell-benefit-grid,
  .sell-process-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .sell-benefit,
  .sell-process-grid li {
    width: 100%;
    max-width: 340px;
    margin-inline: auto;
    padding: 26px 12px;
    border-right: 0;
    border-bottom: 1px solid rgba(184, 140, 122, 0.32);
  }

  .sell-benefit:nth-child(n+3),
  .sell-process-grid li:nth-child(n+3) {
    border-bottom: 1px solid rgba(184, 140, 122, 0.32);
  }

  .sell-benefit:last-child,
  .sell-process-grid li:last-child {
    border-bottom: 0;
  }

  .sell-criteria-list article {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 12px;
  }

  .sell-submit-heading h2 {
    font-size: clamp(2.7rem, 13vw, 3.8rem);
  }

  .seller-form {
    padding: 24px 18px;
  }

  .seller-form-row {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }

  .seller-form .btn {
    width: 100%;
  }
}

/* Collection views — same featured-card language as the homepage grid.
   Homepage keeps its own inline copy so the approved hero/home layout is untouched. */
.collection-page {
  background: #fbf8f4;
  color: #514640;
}

.collection-page .collection-breadcrumb {
  padding-block: 20px;
  border-bottom: 1px solid rgba(184, 140, 122, 0.18);
  background: #fff;
  color: #8b746b;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.collection-page .collection-breadcrumb span {
  margin-inline: 8px;
  color: #c7aaa0;
}

.collection-page .featured-collection {
  width: 100%;
  padding: clamp(60px, 6vw, 88px) clamp(24px, 6vw, 88px) clamp(68px, 7vw, 96px);
  background: #fbf8f4;
}

.collection-page .featured-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.collection-page .featured-header {
  max-width: 680px;
  margin: 0 auto clamp(36px, 4vw, 52px);
  text-align: center;
}

.collection-page .featured-eyebrow {
  margin-bottom: 12px;
  color: #8a6a5f;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  line-height: 1.4;
  text-transform: uppercase;
}

.collection-page .featured-header h2 {
  margin-bottom: 16px;
  color: #856657;
  font-family: var(--font-serif);
  font-size: clamp(38px, 4.2vw, 58px);
  font-weight: 500;
  line-height: 1.05;
}

.collection-page .featured-intro {
  color: #4f403b;
  font-family: var(--font-serif);
  font-size: 19px;
  line-height: 1.55;
}

.collection-page .featured-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 34px);
}

.collection-page .featured-card {
  min-width: 0;
}

.collection-page .featured-image {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #eee7e1;
}

.collection-page .featured-image.featured-image-link {
  display: block;
}

.collection-page .featured-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.35);
  transform-origin: center top;
  transition: transform 0.5s ease;
}

.collection-page .featured-card:hover .featured-image img {
  transform: scale(1.375);
}

.collection-page .featured-image img.featured-special-occasion,
.collection-page .featured-image img.featured-evening-product,
.collection-page .featured-image img.featured-wedding-product,
.collection-page .featured-image img.featured-kaftan-product,
.collection-page .featured-image img.featured-royal-blue-product,
.collection-page .featured-image img.featured-red-lace-product,
.collection-page .featured-image img.featured-purple-velvet-product,
.collection-page .featured-image img.featured-charcoal-bronze-product,
.collection-page .featured-image img.featured-blush-floral-product,
.collection-page .featured-image img.featured-wine-halter-product,
.collection-page .featured-image img.featured-green-floral-product,
.collection-page .featured-image img.featured-ice-blue-product,
.collection-page .featured-image img.featured-champagne-gold-product,
.collection-page .featured-image img.featured-black-sequined-product {
  object-position: center;
  transform: scale(1.02);
}

.collection-page .featured-card:hover .featured-image img.featured-special-occasion,
.collection-page .featured-card:hover .featured-image img.featured-evening-product,
.collection-page .featured-card:hover .featured-image img.featured-wedding-product,
.collection-page .featured-card:hover .featured-image img.featured-kaftan-product,
.collection-page .featured-card:hover .featured-image img.featured-royal-blue-product,
.collection-page .featured-card:hover .featured-image img.featured-red-lace-product,
.collection-page .featured-card:hover .featured-image img.featured-purple-velvet-product,
.collection-page .featured-card:hover .featured-image img.featured-charcoal-bronze-product,
.collection-page .featured-card:hover .featured-image img.featured-blush-floral-product,
.collection-page .featured-card:hover .featured-image img.featured-wine-halter-product,
.collection-page .featured-card:hover .featured-image img.featured-green-floral-product,
.collection-page .featured-card:hover .featured-image img.featured-ice-blue-product,
.collection-page .featured-card:hover .featured-image img.featured-champagne-gold-product,
.collection-page .featured-card:hover .featured-image img.featured-black-sequined-product {
  transform: scale(1.045);
}

.collection-page .featured-image img.featured-black-gold-sequin-product {
  object-position: center 36%;
  transform: scale(1.55);
  transform-origin: center 28%;
}

.collection-page .featured-card:hover .featured-image img.featured-black-gold-sequin-product {
  transform: scale(1.6);
}

.collection-page .featured-image img.featured-kaftan-lifestyle {
  object-position: center top;
  transform: scale(1.02);
}

.collection-page .featured-card:hover .featured-image img.featured-kaftan-lifestyle {
  transform: scale(1.045);
}

.collection-page .featured-info {
  padding: 18px 2px 0;
  text-align: center;
}

.collection-page .featured-category {
  margin-bottom: 7px;
  color: #9a7569;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.collection-page .featured-category a {
  color: inherit;
  text-decoration: none;
}

.collection-page .featured-info h3 {
  margin-bottom: 6px;
  color: #5f4b43;
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.15;
}

.collection-page .featured-price {
  margin-bottom: 12px;
  color: #856657;
  font-family: var(--font-serif);
  font-size: 17px;
  line-height: 1.3;
}

.collection-page .featured-link {
  display: inline-block;
  padding-bottom: 3px;
  border-bottom: 1px solid #c59686;
  color: #7d6157;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-decoration: none;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .collection-page .featured-collection {
    padding: 48px clamp(18px, 6vw, 36px) 56px;
  }

  .collection-page .featured-header {
    margin-bottom: 32px;
  }

  .collection-page .featured-header h2 {
    margin-bottom: 14px;
    font-size: clamp(34px, 10vw, 44px);
  }

  .collection-page .featured-intro {
    max-width: 430px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.5;
  }

  .collection-page .featured-grid {
    max-width: 390px;
    margin: 0 auto;
    grid-template-columns: minmax(0, 1fr);
    gap: 34px;
  }

  .collection-page .featured-info {
    padding-top: 16px;
  }

  .collection-page .featured-info h3 {
    font-size: 24px;
  }

  .collection-page .collection-breadcrumb {
    padding-block: 15px;
    line-height: 1.7;
  }
}

/* Shop page — Phase 1 structure (scoped; does not change other pages) */
.shop-page {
  overflow-x: hidden;
}

.shop-page .header .logo-img {
  padding-block: 6px;
}

.shop-page .header .logo-img img {
  width: clamp(150px, 13vw, 188px);
  height: auto;
  object-fit: contain;
}

.shop-main {
  background: #f7f2ec;
}

.shop-shell {
  width: min(1200px, calc(100% - clamp(40px, 8vw, 112px)));
  margin-inline: auto;
}

.shop-intro {
  padding: clamp(14px, 2vw, 22px) 0 clamp(8px, 1.2vw, 12px);
  text-align: center;
  background: linear-gradient(180deg, #f3e6df 0%, #f7f2ec 88%);
}

.shop-intro h1 {
  margin: 0 auto 6px;
  color: #856657;
  font-family: var(--font-serif);
  font-size: clamp(2.15rem, 4.4vw, 3.15rem);
  font-weight: 500;
  line-height: 1.12;
}

.shop-lede {
  max-width: 34em;
  margin: 0 auto;
  color: #5f4f48;
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  font-weight: 400;
  line-height: 1.45;
}

.shop-browse {
  padding: clamp(6px, 1vw, 10px) 0 clamp(40px, 5vw, 56px);
}

.shop-occasions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.2rem 1.75rem;
  margin-bottom: clamp(8px, 1.4vw, 14px);
}

.shop-occasions button {
  appearance: none;
  position: relative;
  padding: 0.55rem 0.1rem 0.7rem;
  border: 0;
  background: none;
  color: #8a756c;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
  cursor: pointer;
}

.shop-occasions button.is-active {
  color: #6d5349;
}

.shop-occasions button.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.2rem;
  height: 1px;
  background: #d7b8ad;
}

.shop-toolbar {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem 2rem;
  margin-bottom: clamp(18px, 2.4vw, 28px);
  padding: 0.85rem 0 1rem;
  border-top: 1px solid rgba(184, 140, 122, 0.2);
  border-bottom: 1px solid rgba(184, 140, 122, 0.2);
}

.shop-filter-block {
  min-width: 0;
  flex: 1;
}

.shop-filter-label {
  margin: 0 0 8px;
  color: #8a6a5f;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 1;
  text-transform: uppercase;
}

.shop-filter-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  min-width: 0;
}

.shop-filter-row::-webkit-scrollbar {
  display: none;
}

.shop-filter-control {
  position: relative;
  flex: 0 0 auto;
}

.shop-filter-trigger {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  min-width: 124px;
  height: 40px;
  padding: 0 14px 0 16px;
  border: 1px solid rgba(184, 140, 122, 0.36);
  background: #fbf8f4;
  color: #6d5349;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
}

.shop-filter-trigger:hover {
  border-color: rgba(157, 118, 107, 0.48);
  background: #f7f1eb;
}

.shop-filter-trigger::after,
.shop-tool-sort::after {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-left: 0.7rem;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-1px) rotate(45deg);
}

.shop-filter-trigger.is-active,
.shop-tool.is-active {
  color: #5c463e;
  border-color: rgba(139, 104, 93, 0.5);
  background: #f3e9e3;
}

.shop-filter-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 40;
  min-width: 210px;
  max-height: min(320px, 70vh);
  overflow: auto;
  padding: 10px 16px;
  border: 1px solid rgba(184, 140, 122, 0.22);
  background: #fbf8f4;
  box-shadow: 0 18px 40px rgba(74, 64, 59, 0.12);
  text-align: left;
}

.shop-filter-control[data-filter-menu="occasion"] .shop-filter-menu,
.shop-filter-control[data-filter-menu="prices"] .shop-filter-menu {
  min-width: 230px;
}

.shop-filter-menu button {
  display: block;
  width: 100%;
  padding: 8px 0;
  border: 0;
  background: none;
  color: #5f4f48;
  font-family: var(--font-serif);
  font-size: 0.95rem;
  text-align: left;
  cursor: pointer;
}

.shop-filter-menu button.is-active {
  color: #6d5349;
}

.shop-filter-clear {
  appearance: none;
  flex: 0 0 auto;
  height: 40px;
  margin-left: 4px;
  padding: 0 4px;
  border: 0;
  background: none;
  color: #8a756c;
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
}

.shop-sort-wrap {
  position: relative;
  flex: 0 0 auto;
  padding-left: 1.25rem;
  margin-bottom: 0;
  border-left: 1px solid rgba(184, 140, 122, 0.2);
}

.shop-sort-wrap .shop-tool-sort {
  height: 40px;
  padding: 0 2px;
  color: #7a645c;
}

.shop-sort-panel {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  z-index: 40;
  min-width: 220px;
  padding: 10px 0;
  border: 1px solid rgba(184, 140, 122, 0.22);
  background: #fbf8f4;
  box-shadow: 0 18px 40px rgba(74, 64, 59, 0.12);
  text-align: left;
}

.shop-sort-panel button {
  display: block;
  width: 100%;
  padding: 9px 18px;
  border: 0;
  background: none;
  color: #5f4f48;
  font-family: var(--font-serif);
  font-size: 0.95rem;
  text-align: left;
  cursor: pointer;
}

.shop-sort-panel button.is-active {
  color: #6d5349;
}

.shop-sort-panel button:hover {
  background: rgba(184, 140, 122, 0.08);
}

.shop-filter-panel {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  z-index: 40;
  width: min(360px, calc(100vw - 32px));
  padding: 22px 22px 18px;
  border: 1px solid rgba(184, 140, 122, 0.22);
  background: #fbf8f4;
  box-shadow: 0 18px 40px rgba(74, 64, 59, 0.12);
  text-align: left;
}

.shop-filter-group + .shop-filter-group {
  margin-top: 22px;
}

.shop-filter-group h3 {
  margin-bottom: 10px;
  color: #8a6a5f;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.shop-filter-option {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 6px 0;
  color: #5f4f48;
  font-size: 0.92rem;
  font-family: var(--font-serif);
  cursor: pointer;
}

.shop-filter-option input {
  width: 14px;
  height: 14px;
  margin: 0;
  accent-color: #b88c7a;
}

.shop-filter-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid rgba(184, 140, 122, 0.18);
}

.shop-filter-clear {
  appearance: none;
  flex: 0 0 auto;
  margin-left: 0.25rem;
  padding: 0.35rem 0;
  border: 0;
  background: none;
  color: #8a756c;
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
}

.shop-empty {
  margin: 0 0 28px;
  color: #7a645c;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  text-align: center;
}

.shop-tool {
  appearance: none;
  display: inline-flex;
  align-items: center;
  border: 0;
  background: none;
  color: #7a645c;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
}

.shop-page .shop-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(40px, 4.6vw, 64px) clamp(28px, 3.2vw, 48px);
}

.shop-page .featured-card {
  min-width: 0;
  background: transparent;
}

.shop-page .featured-image {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #f3ece6;
}

.shop-page .featured-image.featured-image-link {
  display: block;
}

.shop-page .featured-image img,
.shop-page .featured-image img.featured-special-occasion,
.shop-page .featured-image img.featured-evening-product,
.shop-page .featured-image img.featured-wedding-product,
.shop-page .featured-image img.featured-kaftan-product,
.shop-page .featured-image img.featured-royal-blue-product,
.shop-page .featured-image img.featured-red-lace-product,
.shop-page .featured-image img.featured-purple-velvet-product,
.shop-page .featured-image img.featured-charcoal-bronze-product,
.shop-page .featured-image img.featured-blush-floral-product,
.shop-page .featured-image img.featured-wine-halter-product,
.shop-page .featured-image img.featured-green-floral-product,
.shop-page .featured-image img.featured-ice-blue-product,
.shop-page .featured-image img.featured-champagne-gold-product,
.shop-page .featured-image img.featured-black-sequined-product,
.shop-page .featured-image img.featured-black-gold-sequin-product {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center center;
  transform: scale(1.02);
  transform-origin: center center;
  transition: transform 0.6s ease;
}

@media (hover: hover) and (pointer: fine) {
  .shop-page .featured-card:hover .featured-image img {
    transform: scale(1.035);
  }
}

.shop-page .featured-info {
  padding: 18px 6px 2px;
  text-align: center;
}

.shop-page .featured-category {
  margin-bottom: 7px;
  color: #9a7569;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.shop-page .featured-category a {
  color: inherit;
  text-decoration: none;
}

.shop-page .featured-info h3 {
  margin: 0 0 8px;
  color: #5f4b43;
  font-family: var(--font-serif);
  font-size: clamp(1.02rem, 1.15vw, 1.16rem);
  font-weight: 500;
  line-height: 1.28;
}

.shop-page .featured-price {
  margin: 0 0 10px;
  color: #856657;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.3;
}

.shop-page .featured-size,
.shop-page .featured-condition,
.shop-page .featured-spec {
  margin: 0;
  color: #8a756c;
  font-family: var(--font-sans);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  line-height: 1.45;
}

.shop-page .featured-size {
  margin-bottom: 3px;
}

.shop-page .featured-condition,
.shop-page .featured-spec {
  margin-bottom: 14px;
}

.shop-page .featured-link {
  display: inline-block;
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(184, 140, 122, 0.55);
  color: #8a6f64;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-decoration: none;
  text-transform: uppercase;
}

.shop-page .featured-link:hover {
  color: #74594f;
  border-bottom-color: #9a7262;
}

.shop-page .shop-footer {
  padding-top: clamp(36px, 4vw, 52px);
  border-top: 1px solid rgba(196, 154, 132, 0.28);
  background: linear-gradient(180deg, #f4ece6 0%, #f1e4dc 48%, #ecdcd3 100%);
  color: #6b5b54;
}

.shop-page .shop-footer .footer-grid {
  grid-template-columns: minmax(220px, 1.35fr) minmax(210px, 1.2fr) minmax(140px, 0.9fr) minmax(140px, 0.9fr);
  align-items: start;
  gap: clamp(24px, 3.2vw, 40px);
  padding-bottom: clamp(22px, 2.8vw, 32px);
}

.shop-page .shop-footer .footer-brand .logo {
  display: inline-block;
  margin-bottom: 0.9rem;
  padding: 0;
  background: none;
  box-shadow: none;
  color: inherit;
}

.shop-page .shop-footer .footer-brand .logo-img {
  padding: 6px 10px 10px 0;
  background: none;
}

.shop-page .shop-footer .footer-brand .logo-img img {
  display: block;
  width: clamp(180px, 18vw, 240px);
  max-width: 100%;
  height: auto;
  object-fit: contain;
  object-position: left center;
}

.shop-page .shop-footer .footer-brand p {
  max-width: 240px;
  margin: 0;
  color: #806b62;
  font-family: var(--font-serif);
  font-size: 1rem;
  line-height: 1.45;
}

.shop-page .shop-footer .footer-links h4 {
  margin-bottom: 0.85rem;
  color: #8b685d;
  font-size: 1.08rem;
  font-weight: 500;
}

.shop-page .shop-footer .footer-links li {
  margin-bottom: 0.48rem;
}

.shop-page .shop-footer .footer-links a {
  color: #65564f;
}

.shop-page .shop-footer .footer-links a:hover {
  color: var(--color-rose-dark);
}

.shop-page .shop-footer .shop-footer-community p {
  max-width: 16.5em;
  margin: 0 0 0.85rem;
  color: #806b62;
  font-family: var(--font-serif);
  font-size: 0.98rem;
  line-height: 1.45;
}

.shop-page .shop-footer .newsletter-form {
  margin-top: 0;
  max-width: 280px;
}

.shop-page .shop-footer .newsletter-form input {
  border: 1px solid #dacbc1;
  background: rgba(255, 255, 255, 0.72);
  color: #514640;
}

.shop-page .shop-footer .newsletter-form input::placeholder {
  color: #9a8980;
}

.shop-page .shop-footer .newsletter-form button {
  background: var(--color-rose);
  color: var(--color-white);
}

.shop-page .shop-footer .footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.95rem 1.15rem;
  border-top: 1px solid rgba(184, 140, 122, 0.24);
  text-align: left;
  color: #8b776d;
}

.shop-page .shop-footer .footer-bottom p {
  margin: 0;
}

.shop-page .shop-footer .footer-bottom a {
  color: #8b776d;
}

.shop-page .shop-footer .footer-bottom a:hover {
  color: var(--color-rose-dark);
}

.shop-page .shop-footer .shop-footer-social {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.shop-page .shop-footer .shop-footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.shop-page .shop-footer .shop-footer-social svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.shop-page .shop-footer .shop-footer-social a[aria-label="Facebook"] svg {
  fill: currentColor;
  stroke: none;
}

@media (max-width: 1024px) {
  .shop-page .shop-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px 24px;
  }

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

@media (max-width: 768px) {
  .shop-shell {
    width: min(100% - 32px, 640px);
  }

  .shop-intro {
    padding: 14px 0 8px;
  }

  .shop-intro h1 {
    font-size: clamp(1.9rem, 8.4vw, 2.45rem);
  }

  .shop-lede {
    font-size: 1.05rem;
  }

  .shop-occasions {
    gap: 0.15rem 1.15rem;
    margin-bottom: 10px;
  }

  .shop-occasions button {
    font-size: 0.64rem;
    letter-spacing: 0.12em;
  }

  .shop-toolbar {
    flex-direction: column;
    align-items: stretch;
    flex-wrap: wrap;
    margin-bottom: 16px;
    padding: 0.75rem 0 0.9rem;
    gap: 12px;
  }

  .shop-filter-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 8px;
    overflow: visible;
  }

  .shop-filter-trigger {
    width: 100%;
    min-width: 0;
  }

  .shop-filter-clear {
    grid-column: 1 / -1;
    height: 32px;
    margin-left: 0;
  }

  .shop-filter-menu {
    min-width: min(230px, calc(100vw - 48px));
  }

  .shop-sort-wrap {
    width: 100%;
    margin-left: 0;
    padding: 10px 0 0;
    border-left: 0;
    border-top: 1px solid rgba(184, 140, 122, 0.18);
  }

  .shop-sort-wrap .shop-tool-sort {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 16px;
    border: 1px solid rgba(184, 140, 122, 0.28);
    background: #fbf8f4;
  }

  .shop-page .shop-footer .footer-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .shop-page .shop-footer .footer-bottom {
    flex-wrap: wrap;
  }

  .shop-filter-panel {
    width: min(100%, calc(100vw - 32px));
    right: 0;
  }

  .shop-sort-panel {
    right: 0;
    left: auto;
  }

  .shop-page .shop-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 16px;
  }

  .shop-page .featured-info {
    padding-top: 14px;
  }

  .shop-page .featured-info h3 {
    font-size: 0.98rem;
  }

  .shop-page .featured-price {
    font-size: 0.95rem;
  }

  .shop-page .featured-size,
  .shop-page .featured-condition,
  .shop-page .featured-spec {
    font-size: 0.6rem;
  }
}

@media (max-width: 430px) {
  .shop-shell {
    width: calc(100% - 28px);
  }

  .shop-occasions {
    gap: 0 0.85rem;
  }

  .shop-page .shop-grid {
    gap: 28px 14px;
  }

  .shop-page .featured-size,
  .shop-page .featured-condition,
  .shop-page .featured-spec {
    font-size: 0.58rem;
  }
}

body.product-detail-document .product-detail-page {
  background: #f7f2ec;
  color: #514640;
}

body.product-detail-document .product-detail {
  padding-block: clamp(28px, 4vw, 56px);
}

body.product-detail-document .product-detail-grid {
  grid-template-columns: minmax(0, 1.8fr) minmax(280px, 1fr);
  gap: clamp(28px, 3.5vw, 56px);
}

@media (max-width: 900px) {
  body.product-detail-document .product-detail-grid {
    grid-template-columns: 1fr;
  }
}

body.product-detail-document .product-info {
  z-index: 5;
  padding-top: 2px;
}

body.product-detail-document .product-info h1 {
  margin: 0 0 6px;
  color: #856657;
  font-family: var(--font-serif);
  font-size: clamp(1.32rem, 1.7vw, 1.58rem) !important;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.22 !important;
}

body.product-detail-document .product-price {
  margin: 0 0 18px;
  color: #856657;
  font-family: var(--font-serif);
  font-size: 1.08rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.3;
}

body.product-detail-document .product-facts,
body.product-detail-document .product-facts-grid {
  display: flex !important;
  flex-direction: column;
  gap: 0;
  margin: 0 0 16px;
  border-top: 1px solid rgba(184, 140, 122, 0.2);
}

body.product-detail-document .product-info .product-fact {
  display: grid !important;
  grid-template-columns: 7.1rem minmax(0, 1fr);
  align-items: baseline;
  gap: 6px 16px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(184, 140, 122, 0.16);
}

body.product-detail-document .product-fact dt {
  margin: 0;
  color: #9a7569;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

body.product-detail-document .product-fact dd {
  margin: 0;
  color: #5f4b43;
  font-family: var(--font-serif);
  font-size: 0.98rem;
  line-height: 1.4;
}

body.product-detail-document .product-intro {
  max-width: 36em;
  margin: 0 0 18px;
  color: #5f4f48;
  font-family: var(--font-serif);
  font-size: 0.94rem !important;
  font-weight: 400;
  line-height: 1.55;
}

body.product-detail-document .product-info .product-enquire {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto !important;
  max-width: 100%;
  min-height: 46px !important;
  padding: 0.75rem 1.55rem;
  margin-top: 2px;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

body.product-detail-document .product-primary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: auto !important;
  width: 100%;
  height: 94vh;
  max-height: 94vh;
  overflow: hidden;
  background: #f3ece6;
}

body.product-detail-document .product-primary img {
  object-fit: contain !important;
  object-position: center center !important;
}

body.product-detail-document .product-thumbnail img {
  object-fit: cover;
}

.product-gallery-stage {
  position: absolute;
  inset: 0;
}

.product-gallery-stage img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain !important;
  object-position: center center;
  transition: opacity 0.18s ease;
}

.product-gallery-stage img.is-changing {
  opacity: 0;
}

.product-gallery-zone {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 22%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.product-gallery-zone.is-prev {
  left: 0;
}

.product-gallery-zone.is-next {
  right: 0;
}

.product-gallery-zoom {
  position: absolute;
  inset: 0 18%;
  z-index: 1;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.product-gallery-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(247, 242, 236, 0.82);
  color: #6d5349;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%);
  transition: opacity 0.2s ease;
}

.product-gallery-arrow.is-prev {
  left: 12px;
}

.product-gallery-arrow.is-next {
  right: 12px;
}

.product-gallery-arrow svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-gallery-stage:hover .product-gallery-arrow {
  opacity: 1;
}

@media (hover: none) {
  .product-gallery-arrow {
    opacity: 0.72;
  }
}

@media (max-width: 700px) {
  body.product-detail-document .product-primary {
    height: 66vh;
    max-height: 66vh;
  }

  body.product-detail-document .product-info {
    padding-top: 0;
  }

  body.product-detail-document .product-info h1 {
    font-size: clamp(1.26rem, 5.2vw, 1.46rem) !important;
  }

  body.product-detail-document .product-price {
    font-size: 1.02rem;
    margin-bottom: 16px;
  }

  body.product-detail-document .product-info .product-fact {
    grid-template-columns: 6.4rem minmax(0, 1fr);
    gap: 6px 12px;
    padding: 8px 0;
  }

  body.product-detail-document .product-intro {
    font-size: 0.9rem !important;
    margin-bottom: 16px;
  }

  body.product-detail-document .product-info .product-enquire {
    width: 100% !important;
    min-height: 46px !important;
  }
}

.related-dresses {
  padding: clamp(48px, 6vw, 80px) 0 clamp(56px, 7vw, 96px);
  border-top: 1px solid rgba(184, 140, 122, 0.18);
  background: #f7f2ec;
}

.related-dresses-header {
  max-width: 36em;
  margin: 0 0 clamp(28px, 4vw, 42px);
}

.related-dresses-header h2 {
  margin: 0 0 8px;
  color: #856657;
  font-family: var(--font-serif);
  font-size: clamp(1.55rem, 2.4vw, 2rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-transform: uppercase;
}

.related-dresses-header p {
  margin: 0;
  color: #6f5d56;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  line-height: 1.5;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 36px) clamp(18px, 2.4vw, 32px);
}

.related-grid[data-count="1"] {
  grid-template-columns: minmax(0, 280px);
}

.related-grid[data-count="2"] {
  max-width: 680px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.related-card {
  display: block;
  min-width: 0;
  color: inherit;
  text-decoration: none;
}

.related-image {
  display: block;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: #eee7e1;
}

.related-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.related-copy {
  display: block;
  padding-top: 14px;
  text-align: center;
}

.related-name {
  display: block;
  margin-bottom: 6px;
  color: #5f4b43;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.25;
}

.related-spec {
  display: block;
  margin-bottom: 6px;
  color: #8a756c;
  font-family: var(--font-sans);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.4;
}

.related-price {
  display: block;
  color: #856657;
  font-family: var(--font-serif);
  font-size: 1rem;
}

@media (max-width: 768px) {
  .related-grid,
  .related-grid[data-count="2"],
  .related-grid[data-count="3"] {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: none;
    gap: 24px 14px;
  }

  .related-grid[data-count="1"] {
    grid-template-columns: minmax(0, 280px);
  }

  .related-name {
    font-size: 1.02rem;
  }
}

@media (max-width: 430px) {
  .related-dresses {
    padding: 40px 0 56px;
  }

  .related-grid,
  .related-grid[data-count="2"],
  .related-grid[data-count="3"] {
    grid-template-columns: minmax(0, 1fr);
    max-width: 320px;
    margin-inline: auto;
  }

  .related-spec {
    font-size: 0.6rem;
  }
}

body.product-lightbox-open {
  overflow: hidden;
  touch-action: none;
}

body.product-lightbox-open .header,
body.product-lightbox-open .top-bar,
body.product-lightbox-open .nav-toggle {
  visibility: hidden;
}

.product-lightbox {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 56px 72px 64px;
  overflow: hidden;
  background: rgba(246, 241, 234, 0.97);
  opacity: 0;
  touch-action: none;
  transition: opacity 0.35s ease;
}

.product-lightbox.is-open {
  opacity: 1;
}

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

.product-lightbox-frame {
  position: relative;
  width: min(92vw, 1180px);
  height: 82vh;
  overflow: hidden;
  cursor: zoom-in;
  touch-action: none;
}

.product-lightbox-frame.is-zoomed {
  cursor: zoom-in;
}

.product-lightbox-frame.is-zoomed:active {
  cursor: grabbing;
}

.product-lightbox-frame img {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: auto;
  height: auto;
  max-width: none !important;
  max-height: none !important;
  margin: 0;
  object-fit: none;
  transform-origin: center center;
  user-select: none;
  -webkit-user-drag: none;
  opacity: 1;
  transition: opacity 0.28s ease;
}

.product-lightbox-close {
  position: absolute;
  top: 18px;
  right: 24px;
  z-index: 2;
  padding: 8px 2px;
  border: 0;
  background: transparent;
  color: #6d5349;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
}

.product-lightbox-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(247, 242, 236, 0.92);
  color: #6d5349;
  box-shadow: 0 4px 18px rgba(93, 74, 66, 0.08);
  transform: translateY(-50%);
  cursor: pointer;
}

.product-lightbox-nav.is-prev {
  left: 18px;
}

.product-lightbox-nav.is-next {
  right: 18px;
}

.product-lightbox-nav svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-lightbox-tools {
  position: absolute;
  bottom: 22px;
  left: 50%;
  z-index: 2;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

.product-lightbox-tools button {
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid rgba(184, 140, 122, 0.32);
  border-radius: 50%;
  background: rgba(247, 242, 236, 0.92);
  color: #6d5349;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 700px) {
  .product-lightbox {
    padding: 52px 8px 64px;
  }

  .product-lightbox-frame {
    width: 100%;
    height: 78vh;
  }

  .product-lightbox-nav.is-prev {
    left: 8px;
  }

  .product-lightbox-nav.is-next {
    right: 8px;
  }
}

.product-enquiry {
  position: fixed;
  inset: 0;
  z-index: 360;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  background: rgba(246, 241, 234, 0.72);
  opacity: 0;
  transition: opacity 0.22s ease;
}

.product-enquiry.is-open {
  opacity: 1;
}

.product-enquiry[hidden] {
  display: none !important;
}

.product-enquiry-panel {
  position: relative;
  width: min(100%, 460px);
  max-height: min(92vh, 720px);
  overflow: auto;
  padding: 28px 28px 24px;
  background: #f7f2ec;
  border: 1px solid rgba(184, 140, 122, 0.28);
  color: #5f4b43;
}

.product-enquiry-dismiss {
  position: absolute;
  top: 10px;
  right: 14px;
  padding: 4px 6px;
  border: 0;
  background: transparent;
  color: #6d5349;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.product-enquiry-kicker {
  margin: 0 28px 10px 0;
  color: #9a7569;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.product-enquiry-name {
  margin: 0 0 2px;
  color: #856657;
  font-family: var(--font-serif);
  font-size: 1.28rem;
  font-weight: 500;
  line-height: 1.25;
}

.product-enquiry-price {
  margin: 0 0 18px;
  color: #856657;
  font-family: var(--font-serif);
  font-size: 1.02rem;
  letter-spacing: 0.03em;
}

.product-enquiry-field {
  display: block;
  margin-bottom: 12px;
}

.product-enquiry-field span {
  display: block;
  margin-bottom: 6px;
  color: #9a7569;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-enquiry-field input,
.product-enquiry-field textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid rgba(184, 140, 122, 0.32);
  border-radius: 0;
  background: #fbf8f4;
  color: #5f4b43;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  line-height: 1.45;
  box-shadow: none;
}

.product-enquiry-field textarea {
  min-height: 88px;
  resize: vertical;
  font-family: var(--font-serif);
  font-size: 0.95rem;
}

.product-enquiry-field input:focus,
.product-enquiry-field textarea:focus {
  outline: none;
  border-color: rgba(184, 140, 122, 0.7);
}

.product-enquiry-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 16px;
  margin-top: 6px;
}

.product-enquiry-send {
  min-height: 44px;
  padding: 0.7rem 1.35rem;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
}

.product-enquiry-cancel {
  padding: 8px 2px;
  border: 0;
  background: transparent;
  color: #6d5349;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
}

@media (max-width: 700px) {
  .product-enquiry {
    padding: 16px 12px;
  }

  .product-enquiry-panel {
    width: 100%;
    max-height: 88vh;
    padding: 24px 18px 18px;
  }
}

body.checkout-document {
  background: #f7f2ec;
  color: #514640;
}

body.checkout-document .checkout-page {
  padding: 28px 0 72px;
}

body.checkout-document .checkout-shell {
  max-width: 1080px;
}

body.checkout-document .checkout-back {
  display: inline-block;
  margin-bottom: 22px;
  color: #8b746b;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

body.checkout-document .checkout-back:hover {
  color: #74594f;
}

body.checkout-document .checkout-kicker {
  margin: 0 0 8px;
  color: #9a7569;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

body.checkout-document .checkout-intro h1,
body.checkout-document .checkout-confirm h1,
body.checkout-document .checkout-empty h1 {
  margin: 0 0 18px;
  color: #856657;
  font-family: var(--font-serif);
  font-size: clamp(1.55rem, 2.2vw, 1.9rem);
  font-weight: 500;
  line-height: 1.2;
}

body.checkout-document .checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: 36px 48px;
  align-items: start;
}

body.checkout-document .checkout-product {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(184, 140, 122, 0.2);
}

body.checkout-document .checkout-product img {
  display: block;
  width: 92px;
  height: 122px;
  object-fit: cover;
  object-position: center top;
  background: #eee7e1;
}

body.checkout-document .checkout-product h2 {
  margin: 0 0 4px;
  color: #856657;
  font-family: var(--font-serif);
  font-size: 1.22rem;
  font-weight: 500;
  line-height: 1.25;
}

body.checkout-document .checkout-product-price {
  margin: 0 0 10px;
  color: #856657;
  font-family: var(--font-serif);
  font-size: 1.02rem;
}

body.checkout-document .checkout-product-meta {
  margin: 0;
  padding: 0;
  list-style: none;
}

body.checkout-document .checkout-product-meta li {
  margin: 0 0 4px;
  color: #5f4b43;
  font-family: var(--font-serif);
  font-size: 0.95rem;
  line-height: 1.4;
}

body.checkout-document .checkout-product-meta span {
  color: #9a7569;
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body.checkout-document .checkout-unique {
  margin: 10px 0 0;
  color: #8b746b;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

/* Checkout delivery-area selection (delivery-fee task only) */
body.checkout-document .checkout-delivery-area {
  margin: 0 0 16px;
  padding: 0;
  border: 0;
}

body.checkout-document .checkout-delivery-area legend {
  margin-bottom: 10px;
  color: #856657;
  font-family: var(--font-serif);
  font-size: 1.12rem;
  font-weight: 500;
}

body.checkout-document .checkout-delivery-choice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  color: #5f4b43;
  font-family: var(--font-serif);
  font-size: 0.95rem;
  line-height: 1.4;
  cursor: pointer;
}

body.checkout-document .checkout-delivery-choice input {
  width: auto;
  max-width: none;
  margin-top: 3px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

body.checkout-document .checkout-delivery-choice span {
  display: inline;
  margin: 0;
  color: inherit;
  font-size: inherit;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

body.checkout-document .checkout-fieldset {
  margin: 0 0 26px;
  padding: 0;
  border: 0;
}

body.checkout-document .checkout-fieldset legend {
  margin-bottom: 12px;
  color: #856657;
  font-family: var(--font-serif);
  font-size: 1.12rem;
  font-weight: 500;
}

body.checkout-document .checkout-field {
  display: block;
  margin-bottom: 12px;
}

body.checkout-document .checkout-field span {
  display: block;
  margin-bottom: 6px;
  color: #9a7569;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

body.checkout-document .checkout-field em {
  font-style: normal;
  letter-spacing: 0.06em;
  text-transform: none;
}

body.checkout-document .checkout-field input,
body.checkout-document .checkout-field textarea {
  width: 100%;
  max-width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(184, 140, 122, 0.32);
  border-radius: 0;
  background: #fbf8f4;
  color: #5f4b43;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  line-height: 1.45;
  box-shadow: none;
}

body.checkout-document .checkout-field textarea {
  min-height: 72px;
  resize: vertical;
}

body.checkout-document .checkout-field input:focus,
body.checkout-document .checkout-field textarea:focus {
  outline: none;
  border-color: rgba(184, 140, 122, 0.7);
}

body.checkout-document .checkout-pay-note,
body.checkout-document .checkout-summary-note,
body.checkout-document .checkout-prototype-note {
  margin: 0 0 14px;
  color: #8b746b;
  font-family: var(--font-serif);
  font-size: 0.95rem;
  line-height: 1.45;
}

body.checkout-document .checkout-pay-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

body.checkout-document .checkout-pay-option {
  position: relative;
  display: block;
}

body.checkout-document .checkout-pay-trigger {
  position: relative;
  display: block;
  cursor: pointer;
}

body.checkout-document .checkout-pay-trigger input {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}

body.checkout-document .checkout-pay-card {
  display: block;
  min-height: 76px;
  padding: 14px 16px;
  border: 1px solid rgba(184, 140, 122, 0.28);
  background: #fbf8f4;
}

body.checkout-document .checkout-pay-card strong {
  display: block;
  color: #74594f;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 500;
}

body.checkout-document .checkout-pay-card em {
  display: block;
  margin-top: 4px;
  color: #9a7569;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.checkout-document .checkout-pay-option.is-selected .checkout-pay-card,
body.checkout-document .checkout-pay-option input:checked + .checkout-pay-card {
  border-color: #b88c7a;
  background: #f3ebe4;
}

body.checkout-document .checkout-pay-details {
  padding-top: 12px;
}

body.checkout-document .checkout-pay-details[hidden] {
  display: none !important;
}

body.checkout-document .checkout-pay-details-title {
  margin: 0;
  color: #74594f;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 500;
}

body.checkout-document .checkout-pay-details-sub {
  display: block;
  margin: 4px 0 12px;
  color: #9a7569;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.checkout-document .checkout-pay-card-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

body.checkout-document .checkout-pay-options.is-invalid .checkout-pay-card {
  border-color: #a56d62;
}

body.checkout-document .checkout-field-error {
  margin: 10px 0 0;
  color: #9a7262;
  font-size: 0.75rem;
}

body.checkout-document .checkout-summary {
  position: sticky;
  top: 24px;
  padding: 22px 22px 20px;
  border: 1px solid rgba(184, 140, 122, 0.22);
  background: #fbf8f4;
}

body.checkout-document .checkout-summary h2 {
  margin: 0 0 16px;
  color: #856657;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
}

body.checkout-document .checkout-summary dl {
  margin: 0 0 14px;
}

body.checkout-document .checkout-summary div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(184, 140, 122, 0.14);
}

body.checkout-document .checkout-summary dt {
  color: #9a7569;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body.checkout-document .checkout-summary dd {
  margin: 0;
  color: #5f4b43;
  font-family: var(--font-serif);
  font-size: 0.98rem;
  text-align: right;
}

body.checkout-document .checkout-summary-total dt,
body.checkout-document .checkout-summary-total dd {
  color: #74594f;
  font-weight: 500;
}

body.checkout-document .checkout-submit {
  width: 100%;
  min-height: 48px;
  margin-top: 8px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

body.checkout-document .checkout-confirm,
body.checkout-document .checkout-empty {
  max-width: 36em;
}

body.checkout-document .checkout-confirm-lead {
  margin: -8px 0 22px;
  color: #5f4f48;
  font-family: var(--font-serif);
  font-size: 1.08rem;
}

body.checkout-document .checkout-confirm-facts {
  margin: 0 0 18px;
  border-top: 1px solid rgba(184, 140, 122, 0.2);
}

body.checkout-document .checkout-confirm-facts div {
  display: grid;
  grid-template-columns: 8.5rem minmax(0, 1fr);
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(184, 140, 122, 0.16);
}

body.checkout-document .checkout-confirm-facts dt {
  color: #9a7569;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

body.checkout-document .checkout-confirm-facts dd {
  margin: 0;
  color: #5f4b43;
  font-family: var(--font-serif);
  font-size: 1rem;
}

@media (max-width: 860px) {
  body.checkout-document .checkout-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  body.checkout-document .checkout-summary {
    position: static;
  }

  body.checkout-document .checkout-pay-options {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  body.checkout-document .checkout-page {
    padding: 18px 0 56px;
  }

  body.checkout-document .checkout-product {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 12px;
  }

  body.checkout-document .checkout-product img {
    width: 72px;
    height: 96px;
  }

  body.checkout-document .checkout-product h2 {
    font-size: 1.12rem;
  }

  body.checkout-document .checkout-summary {
    padding: 18px 16px 16px;
  }
}
