/* ==============================
   Velvet Coat — Brand Stylesheet
   ============================== */

:root {
  --bg: #f5ede6;
  --bg-dark: #3d1a2b;
  --fg: #1a1a1a;
  --fg-light: #f5ede6;
  --accent: #3d1a2b;
  --accent-light: #7d3a5b;
  --muted: #9a8a80;
  --border: rgba(61, 26, 43, 0.15);

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', system-ui, sans-serif;

  --space-xs: 0.75rem;
  --space-sm: 1.25rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 7rem;
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.7;
  overflow-x: hidden;
}

::selection {
  background: var(--accent);
  color: var(--fg-light);
}

/* Site Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.5rem 3rem;
  background: rgba(245, 237, 230, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.wordmark {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--accent);
  text-decoration: none;
}

.site-nav {
  display: flex;
  gap: 2.5rem;
}

.site-nav a {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg);
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.site-nav a:hover { opacity: 1; }

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 3rem 4rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-gradient-1 {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 70%;
  height: 120%;
  background: radial-gradient(ellipse at center, rgba(125, 58, 91, 0.08) 0%, transparent 70%);
}

.hero-gradient-2 {
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 50%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(61, 26, 43, 0.05) 0%, transparent 70%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2.5rem;
}

.dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}

.hero-headline {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 300;
  line-height: 1.0;
  color: var(--accent);
  margin-bottom: 2rem;
}

.headline-light {
  display: block;
  font-weight: 300;
  font-style: italic;
  color: var(--muted);
}

.headline-heavy {
  display: block;
  font-weight: 500;
}

.hero-sub {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 300;
  color: var(--muted);
  max-width: 36ch;
  line-height: 1.8;
  margin-bottom: 4rem;
}

/* Product Showcase (CSS bottle illustrations) */
.hero-product-showcase {
  display: flex;
  gap: 2rem;
  align-items: flex-end;
  padding-top: 2rem;
}

.bottle-illustration {
  position: relative;
  width: 80px;
}

.bottle-2 { transform: translateY(-20px); }
.bottle-3 { transform: translateY(-40px); }

.bottle-body {
  width: 60px;
  height: 90px;
  background: linear-gradient(135deg, #e8d5c8 0%, #d4bdb0 50%, #c9ada2 100%);
  border-radius: 8px 8px 12px 12px;
  position: relative;
  box-shadow:
    inset -8px 0 20px rgba(255,255,255,0.3),
    inset 4px 4px 10px rgba(61,26,43,0.08),
    8px 20px 40px rgba(61,26,43,0.12);
}

.bottle-deep { background: linear-gradient(135deg, #4a2535 0%, #3d1a2b 50%, #2d1520 100%); }
.bottle-warm { background: linear-gradient(135deg, #c9a882 0%, #b8956f 50%, #a8825c 100%); }

.bottle-cap {
  width: 20px;
  height: 55px;
  background: linear-gradient(180deg, #1a1a1a 0%, #2a2a2a 100%);
  border-radius: 4px 4px 0 0;
  margin: 0 auto;
  position: relative;
  top: -1px;
  box-shadow: 2px 4px 12px rgba(0,0,0,0.3);
}

.bottle-shine {
  position: absolute;
  top: 10px;
  left: 8px;
  width: 6px;
  height: 50px;
  background: rgba(255,255,255,0.35);
  border-radius: 3px;
  transform: skewX(-8deg);
}

/* Manifesto */
.manifesto {
  background: var(--bg-dark);
  color: var(--fg-light);
  padding: var(--space-xl) 3rem;
}

.manifesto-inner {
  max-width: 900px;
  margin: 0 auto;
}

.manifesto-label,
.section-label {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 2.5rem;
  opacity: 0.7;
}

.manifesto-quote {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.4;
  color: var(--fg-light);
  margin-bottom: 3rem;
  position: relative;
  padding-left: 2rem;
}

.manifesto-quote::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.4em;
  width: 3px;
  height: 70%;
  background: var(--accent-light);
}

.manifesto-body {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 300;
  color: rgba(245,237,230,0.7);
  line-height: 1.9;
  max-width: 58ch;
  margin-bottom: 1.5rem;
}

.manifesto-divider {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin: 3rem 0;
}

.manifesto-divider span {
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(245,237,230,0.3);
}

/* Collection */
.collection {
  padding: var(--space-xl) 3rem;
}

.collection-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.section-headline {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.section-sub {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 300;
  color: var(--muted);
  max-width: 42ch;
  margin-bottom: 4rem;
}

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

.color-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.color-swatch {
  aspect-ratio: 3/4;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.color-swatch::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(255,255,255,0.15) 0%, transparent 50%, rgba(0,0,0,0.1) 100%);
}

.card-1 { background: linear-gradient(160deg, #f5d5cc 0%, #e8c4b8 100%); }
.card-2 { background: linear-gradient(160deg, #c47a5a 0%, #a85f42 100%); }
.card-3 { background: linear-gradient(160deg, #1a1a1a 0%, #0d0d0d 100%); }
.card-4 { background: linear-gradient(160deg, #c9a050 0%, #a88030 100%); }
.card-5 { background: linear-gradient(160deg, #a89a90 0%, #8a7a70 100%); }
.card-6 { background: linear-gradient(160deg, #5a3020 0%, #3a1a0a 100%); }
.card-7 { background: linear-gradient(160deg, #8a7a68 0%, #6a5a48 100%); }
.card-8 { background: linear-gradient(160deg, #5a2040 0%, #3a1030 100%); }

.color-name {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.02em;
}

.color-desc {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.5;
}

/* Formula */
.formula {
  background: #2a1520;
  color: var(--fg-light);
  padding: var(--space-xl) 3rem;
}

.formula-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.formula .section-headline { color: var(--fg-light); }
.formula .section-label { color: rgba(245,237,230,0.5); }

.formula-body {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 300;
  color: rgba(245,237,230,0.65);
  line-height: 1.9;
  max-width: 48ch;
  margin-bottom: 2.5rem;
}

.formula-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.formula-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.formula-icon {
  color: #c9a050;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.formula-list strong {
  display: block;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--fg-light);
  margin-bottom: 0.25rem;
}

.formula-list span {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(245,237,230,0.5);
}

/* Formula Visual */
.formula-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ingredient-ring {
  position: relative;
  width: 320px;
  height: 320px;
}

.ring-outer,
.ring-mid,
.ring-inner {
  border-radius: 50%;
  position: absolute;
}

.ring-outer {
  inset: 0;
  border: 1px solid rgba(245,237,230,0.1);
}

.ring-mid {
  inset: 40px;
  border: 1px solid rgba(245,237,230,0.07);
}

.ring-inner {
  inset: 80px;
  background: rgba(201, 160, 80, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ring-label {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(245,237,230,0.4);
}

.ring-stats {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding: 2rem 0;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat:first-child { align-items: flex-start; padding-left: 4px; }
.stat:last-child { align-items: flex-end; padding-right: 4px; }

.stat strong {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: #c9a050;
  line-height: 1;
}

.stat span {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245,237,230,0.4);
}

/* Closing */
.closing {
  position: relative;
  overflow: hidden;
}

.closing-gradient {
  height: 500px;
  background: linear-gradient(180deg, var(--bg) 0%, var(--accent) 100%);
}

.closing-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
}

.closing-tagline {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 300;
  font-style: italic;
  color: var(--fg-light);
  margin-bottom: 1rem;
}

.closing-sub {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,237,230,0.5);
}

/* Footer */
.site-footer {
  background: var(--bg-dark);
  color: var(--fg-light);
  padding: 4rem 3rem 2rem;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
}

.footer-wordmark {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 0.75rem;
}

.footer-brand p {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(245,237,230,0.4);
}

.footer-links {
  display: flex;
  gap: 4rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col h4 {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,237,230,0.4);
  margin-bottom: 0.5rem;
}

.footer-col a,
.footer-col span {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(245,237,230,0.65);
  text-decoration: none;
  cursor: pointer;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid rgba(245,237,230,0.08);
  margin-top: 3rem;
}

.footer-bottom p {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(245,237,230,0.25);
}

/* Responsive */
@media (max-width: 768px) {
  .site-header { padding: 1rem 1.5rem; }
  .site-nav { display: none; }

  .hero { padding: 7rem 1.5rem 3rem; }

  .hero-headline { font-size: clamp(2.8rem, 12vw, 5rem); }

  .hero-product-showcase {
    gap: 1rem;
  }
  .bottle-illustration { width: 60px; }
  .bottle-body { width: 45px; height: 70px; }
  .bottle-cap { width: 16px; height: 42px; }

  .manifesto { padding: 5rem 1.5rem; }
  .manifesto-quote { font-size: 1.5rem; padding-left: 1.25rem; }

  .collection { padding: 5rem 1.5rem; }
  .color-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .formula { padding: 5rem 1.5rem; }
  .formula-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .formula-visual { display: none; }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-links { gap: 2rem; }
  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* ==============================
   Product Showcase Page
   ============================== */

/* Product Hero */
.product-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 7rem 3rem 4rem;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

.product-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -20%;
  width: 80%;
  height: 120%;
  background: radial-gradient(ellipse at center, rgba(125, 58, 91, 0.06) 0%, transparent 65%);
  pointer-events: none;
}

.product-hero::after {
  content: '';
  position: absolute;
  bottom: 10%;
  right: -10%;
  width: 50%;
  height: 60%;
  background: radial-gradient(ellipse at center, rgba(61, 26, 43, 0.04) 0%, transparent 65%);
  pointer-events: none;
}

.product-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.product-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2rem;
}

.product-headline {
  font-family: var(--serif);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 1.0;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.product-sub {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 300;
  color: var(--muted);
  max-width: 40ch;
  line-height: 1.8;
  margin-bottom: 4rem;
}

.product-price-note {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--accent);
  letter-spacing: 0.05em;
}

.price-tag {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
  color: var(--fg);
  margin-left: 0.5rem;
}

/* Shade Selector (Hero Swatches) */
.shade-selector {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.shade-selector-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  opacity: 0.5;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.shade-selector-btn:hover { opacity: 0.8; }
.shade-selector-btn.active { opacity: 1; }

.shade-dot {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: border-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
}

.shade-selector-btn.active .shade-dot {
  border-color: var(--accent);
  transform: scale(1.1);
}

.shade-dot-label {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Shade Detail Cards */
.shade-details {
  padding: var(--space-xl) 3rem;
  background: var(--bg);
}

.shade-details-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.shade-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.shade-card {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.shade-card-swatch {
  aspect-ratio: 2/3;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(61, 26, 43, 0.15);
}

.shade-card-swatch::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(255,255,255,0.18) 0%, transparent 45%, rgba(0,0,0,0.1) 100%);
  z-index: 1;
}

.shade-card-swatch::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  z-index: 2;
}

/* CSS bottle illustration inside swatch */
.bottle-swatch-wrap {
  position: absolute;
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.shade-card-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.shade-card-name {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--accent);
  line-height: 1.2;
}

.shade-card-desc {
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
}

.shade-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.shade-price {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--fg);
}

.shade-badge {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-light);
  background: rgba(61, 26, 43, 0.07);
  padding: 0.3rem 0.75rem;
  border-radius: 2px;
}

/* Waitlist Section */
.waitlist-section {
  background: var(--bg-dark);
  padding: var(--space-xl) 3rem;
  position: relative;
  overflow: hidden;
}

.waitlist-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(125, 58, 91, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.waitlist-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.waitlist-label {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-light);
  opacity: 0.6;
  margin-bottom: 1.5rem;
}

.waitlist-headline {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--fg-light);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.waitlist-sub {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 300;
  color: rgba(245, 237, 230, 0.55);
  line-height: 1.7;
  margin-bottom: 3rem;
}

.waitlist-form {
  display: flex;
  gap: 0;
  max-width: 500px;
  margin: 0 auto;
  position: relative;
}

.waitlist-email {
  flex: 1;
  padding: 1rem 1.25rem;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 300;
  background: rgba(245, 237, 230, 0.06);
  border: 1px solid rgba(245, 237, 230, 0.15);
  border-right: none;
  color: var(--fg-light);
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
  border-radius: 3px 0 0 3px;
}

.waitlist-email::placeholder { color: rgba(245, 237, 230, 0.35); }
.waitlist-email:focus {
  border-color: rgba(245, 237, 230, 0.35);
  background: rgba(245, 237, 230, 0.09);
}

.waitlist-submit {
  padding: 1rem 1.75rem;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--fg-light);
  color: var(--accent);
  border: none;
  cursor: pointer;
  border-radius: 0 3px 3px 0;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
  white-space: nowrap;
}

.waitlist-submit:hover {
  background: #d9cec4;
  transform: translateY(-1px);
}

.waitlist-submit:active { transform: translateY(0); }

.waitlist-shade-select {
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.waitlist-shade-select label {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(245, 237, 230, 0.45);
}

.waitlist-shade-select select {
  padding: 0.4rem 0.75rem;
  font-family: var(--sans);
  font-size: 0.8rem;
  background: rgba(245, 237, 230, 0.08);
  border: 1px solid rgba(245, 237, 230, 0.15);
  color: var(--fg-light);
  border-radius: 3px;
  outline: none;
  cursor: pointer;
}

.waitlist-shade-select select option { background: var(--bg-dark); }

.waitlist-msg {
  margin-top: 1rem;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 300;
  min-height: 1.5rem;
  transition: opacity 0.3s ease;
}

.waitlist-msg.success { color: #c9a050; }
.waitlist-msg.error { color: rgba(245, 237, 230, 0.6); }

/* Product Feature Row */
.product-features {
  padding: var(--space-lg) 3rem;
  background: #f0e8df;
}

.product-features-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.feature-item {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.feature-icon {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.feature-title {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--accent);
}

.feature-desc {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.6;
}

/* Back Link */
.back-link-wrap {
  padding: 2rem 3rem;
  background: var(--bg);
}

.back-link {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s ease;
}

.back-link:hover { color: var(--accent); }

/* Responsive */
@media (max-width: 768px) {
  .product-hero { padding: 7rem 1.5rem 3rem; }
  .shade-grid { grid-template-columns: 1fr; gap: 2rem; }
  .shade-details { padding: 5rem 1.5rem; }
  .waitlist-section { padding: 5rem 1.5rem; }
  .waitlist-form { flex-direction: column; gap: 0.75rem; }
  .waitlist-email { border-right: 1px solid rgba(245,237,230,0.15); border-radius: 3px; }
  .waitlist-submit { border-radius: 3px; }
  .product-features { padding: 4rem 1.5rem; }
  .product-features-inner { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 480px) {
  .shade-dot { width: 52px; height: 52px; }
  .product-features-inner { grid-template-columns: 1fr; }
}