/* ============================================
   NADIA'S NECESSITIES — MASTER STYLESHEET
   ============================================ */

/* ---- CSS Variables ---- */
:root {
  /* ── Product Colors ── */
  --coral:        #E85D7C;   /* Coral Pink — primary product color */
  --coral-light:  #F5B8C8;
  --coral-pale:   #FFF0F3;
  --sage:         #7DB89A;   /* Sage Green — secondary product color */
  --sage-light:   #B8D9C9;
  --sage-pale:    #F0F8F4;

  /* ── Brand Blue (from logo) ── */
  --brand-blue:       #4D9FD4;   /* Primary brand blue — logo background */
  --brand-blue-light: #A8D4EF;
  --brand-blue-pale:  #EAF4FB;

  /* ── Neutrals ── */
  --cream:        #FAF7F2;   /* Page background */
  --white:        #FFFFFF;
  --charcoal:     #1E1E1E;   /* Primary text */
  --mid-gray:     #666666;   /* Secondary text */
  --light-gray:   #E8E8E8;   /* Borders, dividers */

  /* ── Accent ── */
  --gold:         #C4A46B;   /* Star ratings, accents */
  --gold-light:   #F0E6D3;

  /* ── Typography ── */
  --font-serif:   'Cormorant Garamond', Georgia, serif;   /* Headlines, product titles */
  --font-sans:    'Raleway', system-ui, sans-serif;        /* Body, UI, labels */
  --font-script:  'Dancing Script', cursive;               /* Brand name, accent moments */

  /* ── Spacing & Shape ── */
  --radius-sm:    8px;
  --radius-md:    16px;
  --radius-lg:    24px;
  --shadow-sm:    0 2px 12px rgba(0,0,0,0.06);
  --shadow-md:    0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg:    0 20px 60px rgba(0,0,0,0.14);
  --transition:   0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea { font-family: inherit; }

/* ---- Utilities ---- */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 760px; margin: 0 auto; padding: 0 24px; }

/* ---- Buttons ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background: var(--coral);
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 100px;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary:hover {
  background: #d04d6c;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,93,124,0.35);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background: transparent;
  color: var(--charcoal);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1.5px solid var(--charcoal);
  border-radius: 100px;
  transition: var(--transition);
}
.btn-ghost:hover {
  background: var(--charcoal);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-full { width: 100%; }
.btn-atc { font-size: 1rem; padding: 16px 32px; margin-bottom: 12px; }

/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */
.announce-bar {
  background: var(--charcoal);
  color: var(--white);
  text-align: center;
  padding: 10px 16px;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  font-weight: 500;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250,247,242,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}
.logo-script {
  font-family: var(--font-script);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--coral);
  line-height: 1;
  letter-spacing: 0.01em;
}
.logo-text {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--coral); }
.nav-actions { display: flex; align-items: center; gap: 16px; }
.cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  padding: 8px;
  color: var(--charcoal);
  transition: color var(--transition);
}
.cart-btn:hover { color: var(--coral); }
.cart-count {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--coral);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: var(--transition);
}
.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 24px 20px;
  border-top: 1px solid var(--light-gray);
  gap: 16px;
}
.mobile-menu a {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.mobile-menu.open { display: flex; }

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  padding-top: 120px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  z-index: -1;
}
.hero-bg-left { background: var(--cream); }
.hero-bg-right { background: linear-gradient(135deg, #FFF0F3 0%, #F8EFF5 100%); }

.hero-content {
  padding: 60px 60px 60px 80px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--coral);
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 5vw, 5.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--charcoal);
}
.hero-title em {
  font-style: italic;
  color: var(--coral);
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--mid-gray);
  max-width: 420px;
  line-height: 1.7;
}
.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}
.hero-tags span {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--charcoal);
}

/* Hero product preview */
.hero-image-wrap {
  display: flex;
  align-items: stretch;
  justify-content: center;
  height: 100%;
  overflow: hidden;
}
.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-product-preview {
  display: flex;
  gap: 20px;
  align-items: flex-end;
}
.preview-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform var(--transition);
  cursor: pointer;
}
.preview-card:hover { transform: translateY(-8px); }
.preview-card p {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}
.preview-coral { background: linear-gradient(145deg, #FFF0F3, #FAE0E7); width: 180px; height: 280px; }
.preview-sage   { background: linear-gradient(145deg, #F0F8F4, #DFF0E9); width: 180px; height: 250px; }
.preview-inner { flex: 1; display: flex; flex-direction: column; gap: 8px; justify-content: center; align-items: center; }
.preview-towel-body {
  width: 100px; height: 90px;
  border-radius: 12px;
  opacity: 0.7;
}
.preview-towel-hair {
  width: 70px; height: 50px;
  border-radius: 8px;
  opacity: 0.7;
}
.preview-items-row { display: flex; gap: 6px; }
.preview-face, .preview-cap, .preview-band {
  width: 28px; height: 28px;
  border-radius: 6px;
  opacity: 0.7;
}
.preview-coral .preview-towel-body,
.preview-coral .preview-towel-hair,
.preview-coral .preview-face,
.preview-coral .preview-cap,
.preview-coral .preview-band { background: var(--coral-light); }
.preview-sage .preview-towel-body,
.preview-sage .preview-towel-hair,
.preview-sage .preview-face,
.preview-sage .preview-cap,
.preview-sage .preview-band { background: var(--sage-light); }

/* ============================================
   PILLARS
   ============================================ */
.pillars {
  background: var(--charcoal);
  color: var(--white);
  padding: 64px 0;
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.pillar { text-align: center; }
.pillar-icon {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}
.pillar h4 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}
.pillar p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

/* ============================================
   PRODUCTS
   ============================================ */
.products-section {
  padding: 100px 0;
  background: var(--white);
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 12px;
}
.section-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1rem;
  color: var(--mid-gray);
  max-width: 500px;
  margin: 0 auto;
}

.product-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Product visual */
.product-visual-wrap { position: relative; }
.product-display { display: none; }
.product-display.active { display: block; }

/* Product image badge */
.product-mock { position: relative; }
.product-badge {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  background: var(--coral); color: #fff;
  font-family: 'Raleway', sans-serif; font-size: 12px; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 50px;
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
}

.product-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
  display: block;
}

.product-photo-placeholder {
  border-radius: var(--radius-lg);
  aspect-ratio: 3/4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative;
  overflow: hidden;
}
.coral-bg { background: linear-gradient(135deg, #FFF0F3 0%, #F5C8D4 50%, #EDA8BB 100%); }
.sage-bg  { background: linear-gradient(135deg, #F0F8F4 0%, #C5E0D0 50%, #9DC5B0 100%); }

.placeholder-items {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 80%;
}
.ph-body-wrap {
  width: 100%; height: 120px;
  border-radius: 12px;
  opacity: 0.6;
  font-size: 0.7rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.ph-hair-wrap {
  width: 70%; height: 70px;
  border-radius: 8px;
  opacity: 0.6;
  font-size: 0.7rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.ph-row { display: flex; gap: 8px; width: 100%; }
.ph-face, .ph-cap, .ph-band {
  flex: 1; height: 50px;
  border-radius: 8px;
  opacity: 0.6;
  font-size: 0.6rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.coral-item { background: var(--coral); }
.sage-item  { background: var(--sage); }

.placeholder-label {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
  color: var(--charcoal);
  box-shadow: var(--shadow-sm);
}

.product-thumb-row {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.thumb-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border: 2px solid var(--light-gray);
  border-radius: var(--radius-md);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--mid-gray);
  transition: var(--transition);
  background: var(--white);
}
.thumb-btn.active, .thumb-btn:hover {
  border-color: var(--coral);
  color: var(--charcoal);
}
.color-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  display: inline-block;
  border: 2px solid rgba(0,0,0,0.1);
}
.coral-dot { background: var(--coral); }
.sage-dot  { background: var(--sage); }

/* Product Info */
.product-info { display: flex; flex-direction: column; gap: 20px; padding-top: 12px; }
.product-category {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--coral);
}
.product-title {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.2;
  color: var(--charcoal);
}
.product-rating {
  display: flex;
  align-items: center;
  gap: 10px;
}
.stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; }
.rating-count { font-size: 0.82rem; color: var(--mid-gray); }
.product-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.price-main {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--charcoal);
}
.price-compare {
  font-size: 0.85rem;
  color: var(--mid-gray);
  text-decoration: line-through;
}

/* Color swatches */
.select-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.color-swatches { display: flex; gap: 10px; }
.swatch {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 3px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  cursor: pointer;
}
.swatch-coral { background: var(--coral); }
.swatch-sage  { background: var(--sage); }
.swatch.active, .swatch:hover { border-color: var(--charcoal); transform: scale(1.1); }
.swatch-check { color: white; font-size: 0.9rem; opacity: 0; }
.swatch.active .swatch-check { opacity: 1; }

/* Qty */
.qty-control {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--light-gray);
  border-radius: var(--radius-sm);
  overflow: hidden;
  width: fit-content;
}
.qty-control button {
  width: 44px; height: 44px;
  font-size: 1.3rem;
  color: var(--charcoal);
  transition: background var(--transition);
}
.qty-control button:hover { background: var(--cream); }
.qty-control span {
  width: 52px;
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
  border-left: 1.5px solid var(--light-gray);
  border-right: 1.5px solid var(--light-gray);
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Product includes */
.product-includes {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  border-left: 3px solid var(--coral);
}
.includes-title {
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 12px;
}
.includes-note {
  font-family: 'Raleway', sans-serif;
  font-size: 0.82rem;
  color: var(--mid-gray);
  font-style: italic;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--light-gray);
}
.product-includes ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.product-includes li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--charcoal);
}
.product-includes li span {
  color: var(--sage);
  font-weight: 700;
  font-size: 1rem;
}

.product-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.product-badges span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--mid-gray);
}

/* ============================================
   INSIDE THE SET
   ============================================ */
.inside-set {
  padding: 80px 0 100px;
  background: var(--cream);
}

/* — Color story: editorial CSS panels — */
.color-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 48px 0 72px;
  min-height: 360px;
}
.cs-panel {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 48px 52px 48px 52px;
  overflow: hidden;
}
.cs-coral {
  background: linear-gradient(140deg, #FFF0F3 0%, #F5C0D0 55%, #E8899E 100%);
}
.cs-sage {
  background: linear-gradient(140deg, #F0F8F4 0%, #C0DDD0 55%, #8CBBA7 100%);
}
/* large decorative circle background */
.cs-deco {
  position: absolute;
  top: -100px; right: -100px;
  width: 420px; height: 420px;
  border-radius: 50%;
  opacity: 0.18;
}
.cs-coral .cs-deco { background: radial-gradient(circle, #E85D7C 0%, transparent 70%); }
.cs-sage  .cs-deco { background: radial-gradient(circle, #3D7A61 0%, transparent 70%); }

.cs-body { position: relative; z-index: 2; }
.cs-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.cs-coral .cs-label { color: #C44060; }
.cs-sage  .cs-label { color: #3D7A61; }

.cs-name {
  font-family: var(--font-serif);
  font-size: 3.8rem;
  font-weight: 300;
  line-height: 1.0;
  margin-bottom: 14px;
}
.cs-coral .cs-name { color: #B83458; }
.cs-sage  .cs-name { color: #2D6650; }

.cs-line {
  font-size: 0.78rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
  opacity: 0.7;
}
.cs-coral .cs-line { color: #C44060; }
.cs-sage  .cs-line { color: #3D7A61; }

.cs-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cs-checklist li {
  font-size: 0.82rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cs-checklist li::before {
  content: '✓';
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}
.cs-coral .cs-checklist li { color: #B83458; }
.cs-sage  .cs-checklist li { color: #2D6650; }

/* swatch stack on the right side */
.cs-swatch-stack {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-self: center;
}
.cs-sw {
  display: block;
  width: 36px; height: 36px;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

/* — Items intro line — */
.items-intro {
  text-align: center;
  font-size: 0.95rem;
  color: var(--mid-gray);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.set-items-container { padding-top: 0; }
.items-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.item-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 0 0 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.item-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
/* large illustration block at top of each card (legacy) */
.item-illus {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 12px 20px;
  margin-bottom: 16px;
}
.item-illus--coral { background: linear-gradient(160deg, #FFF0F3, #F5C8D4); }
.item-illus--sage  { background: linear-gradient(160deg, #F0F8F4, #C5E0D0); }

/* single product photo at top of each card */
.item-photo {
  overflow: hidden;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  margin-bottom: 16px;
}
.item-photo--coral { background: linear-gradient(160deg, #FFF0F3, #F5C8D4); }
.item-photo--sage  { background: linear-gradient(160deg, #F0F8F4, #C5E0D0); }
.item-photo img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  transition: transform var(--transition);
}
.item-card:hover .item-photo img {
  transform: scale(1.04);
}

.item-card h4 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--charcoal);
  padding: 0 16px;
}
.item-card p {
  font-size: 0.81rem;
  color: var(--mid-gray);
  line-height: 1.65;
  padding: 0 16px;
}

/* ============================================
   LIFESTYLE
   ============================================ */
.lifestyle-section { overflow: hidden; }
.lifestyle-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.lifestyle-image-block {
  position: relative;
  overflow: hidden;
}
.lifestyle-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.coral-gradient-bg { background: linear-gradient(145deg, #F9D0DC 0%, #E88FA5 50%, #D4607C 100%); }
.lifestyle-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(255,255,255,0.9);
}
.lifestyle-placeholder p { font-size: 1.2rem; font-weight: 600; }
.lifestyle-placeholder span { font-size: 0.82rem; opacity: 0.8; text-align: center; padding: 0 40px; }
.lifestyle-text-block {
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 70px;
  gap: 20px;
}
.lifestyle-text-block h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
}
.lifestyle-text-block h2 em { color: var(--coral); font-style: italic; }
.lifestyle-text-block p { color: var(--mid-gray); font-size: 0.95rem; line-height: 1.8; }

/* ============================================
   REVIEWS
   ============================================ */
.reviews-section { padding: 100px 0; background: var(--cream); }
.overall-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
  font-size: 0.88rem;
  color: var(--mid-gray);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.review-stars { color: var(--gold); font-size: 1rem; letter-spacing: 3px; }
.review-card p {
  font-size: 0.92rem;
  color: var(--charcoal);
  line-height: 1.75;
  flex: 1;
  font-style: italic;
}
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.reviewer strong { display: block; font-size: 0.9rem; }
.reviewer span { font-size: 0.75rem; color: var(--mid-gray); }

/* ============================================
   FAQ
   ============================================ */
.faq-section { padding: 100px 0; background: var(--white); }
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--light-gray);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--charcoal);
  text-align: left;
  gap: 16px;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--coral); }
.faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--coral);
  transition: transform var(--transition);
  flex-shrink: 0;
}
.faq-question.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 0 20px;
}
.faq-answer.open { display: block; }
.faq-answer p {
  font-size: 0.9rem;
  color: var(--mid-gray);
  line-height: 1.75;
}

/* ============================================
   EMAIL SECTION
   ============================================ */
.email-section {
  background: linear-gradient(135deg, var(--coral) 0%, #C4496B 100%);
  padding: 80px 0;
  text-align: center;
  color: var(--white);
}
.email-inner { max-width: 560px; margin: 0 auto; padding: 0 24px; }
.email-section .section-eyebrow { color: rgba(255,255,255,0.7); }
.email-section h2 {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 400;
  margin: 12px 0;
}
.email-section p { opacity: 0.85; margin-bottom: 28px; }
.email-form {
  display: flex;
  gap: 12px;
  background: var(--white);
  border-radius: 100px;
  padding: 6px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.email-form input {
  flex: 1;
  border: none;
  outline: none;
  padding: 10px 20px;
  background: transparent;
  font-size: 0.9rem;
  color: var(--charcoal);
  min-width: 0;
}
.email-form .btn-primary {
  border-radius: 100px;
  background: var(--charcoal);
  font-size: 0.82rem;
  padding: 12px 24px;
  flex-shrink: 0;
}
.email-form .btn-primary:hover { background: #333; }
.email-privacy { font-size: 0.75rem; opacity: 0.65; margin-top: 12px; }

/* ============================================
   SOCIAL BAR
   ============================================ */
.social-bar {
  background: var(--cream);
  padding: 60px 0;
  text-align: center;
  border-top: 1px solid var(--light-gray);
}
.social-bar-eyebrow {
  font-family: 'Raleway', sans-serif; font-size: 12px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--coral); margin-bottom: 10px;
}
.social-bar-heading {
  font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 300;
  color: var(--charcoal); margin-bottom: 28px;
}
.social-bar-links {
  display: flex; gap: 20px; justify-content: center; flex-wrap: wrap;
}
.social-bar-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; border: 1.5px solid var(--charcoal); border-radius: 50px;
  font-family: 'Raleway', sans-serif; font-size: 15px; font-weight: 600;
  color: var(--charcoal); text-decoration: none;
  transition: background .2s, color .2s, border-color .2s;
}
.social-bar-btn:hover {
  background: var(--coral); border-color: var(--coral); color: #fff;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--charcoal);
  color: var(--white);
  padding: 64px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  margin-bottom: 48px;
}
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  max-width: 260px;
}
.social-links { display: flex; gap: 16px; }
.social-links a {
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.social-links a:hover { color: var(--coral); }
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-col h5 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.payment-icons {
  display: flex;
  gap: 8px;
}
.payment-icons span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.4);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 3px 8px;
  border-radius: 4px;
}

/* ============================================
   CART DRAWER
   ============================================ */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1990;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-drawer {
  position: fixed;
  top: 0;
  right: -480px;
  width: 420px;
  max-width: 100vw;
  height: 100vh;
  background: var(--white);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.cart-drawer.open { right: 0; }
.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  border-bottom: 1px solid var(--light-gray);
}
.cart-header h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
}
.cart-close {
  color: var(--mid-gray);
  font-size: 1.1rem;
  padding: 6px;
  transition: color var(--transition);
}
.cart-close:hover { color: var(--charcoal); }
.cart-items { flex: 1; overflow-y: auto; padding: 20px 24px; }
.cart-empty { text-align: center; color: var(--mid-gray); padding: 40px 0; font-size: 0.9rem; }
.cart-item {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--cream);
}
.cart-item-img {
  width: 72px; height: 72px;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.cart-item-info { flex: 1; }
.cart-item-info strong { display: block; font-size: 0.88rem; margin-bottom: 4px; }
.cart-item-info span { font-size: 0.8rem; color: var(--mid-gray); }
.cart-item-price { font-weight: 700; font-size: 0.95rem; }
.cart-item-remove {
  color: var(--mid-gray);
  font-size: 0.85rem;
  padding: 4px;
}
.cart-item-remove:hover { color: var(--coral); }
.cart-footer {
  padding: 20px 24px 32px;
  border-top: 1px solid var(--light-gray);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cart-subtotal {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 1rem;
}
.cart-shipping-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--sage);
  font-weight: 600;
}

/* ============================================
   CHECKOUT MODAL
   ============================================ */
.checkout-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 2090;
}
.checkout-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90vw;
  max-width: 900px;
  max-height: 90vh;
  background: var(--white);
  border-radius: var(--radius-lg);
  z-index: 2100;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}
.checkout-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  border-bottom: 1px solid var(--light-gray);
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 1;
}
.checkout-header h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
}
.checkout-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.checkout-left {
  padding: 32px;
  border-right: 1px solid var(--light-gray);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.checkout-right {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.checkout-right h4 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
}
.order-summary { display: flex; flex-direction: column; gap: 12px; }
.order-total-row {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 1.05rem;
  padding-top: 12px;
  border-top: 1px solid var(--light-gray);
}
.shipping-form { display: flex; flex-direction: column; gap: 10px; }
.shipping-form h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 4px;
}
.shipping-form input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--light-gray);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition);
  background: var(--cream);
}
.shipping-form input:focus { border-color: var(--coral); background: var(--white); }
.form-row { display: flex; gap: 10px; }
.form-row input { flex: 1; min-width: 0; }
#card-container { min-height: 80px; }
.payment-status {
  font-size: 0.85rem;
  color: var(--coral);
  min-height: 20px;
  text-align: center;
}
.secure-badge {
  text-align: center;
  font-size: 0.78rem;
  color: var(--mid-gray);
  margin-top: 4px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .items-grid { grid-template-columns: repeat(3, 1fr); }
  .color-story { min-height: 300px; }
  .cs-name { font-size: 3rem; }
  .cs-panel { padding: 36px 32px; }
  .product-main { gap: 36px; }
  .hero { padding-top: 100px; }
  .hero-content { padding: 60px 40px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-menu-btn { display: flex; }
  .logo-text { display: none; }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 88px;
  }
  .hero-bg { grid-template-columns: 1fr; }
  .hero-bg-right { display: none; }
  .hero-content {
    padding: 40px 24px;
    text-align: center;
    align-items: center;
  }
  .hero-sub { max-width: 100%; }
  .hero-image-wrap { padding: 24px; }
  .hero-product-preview { gap: 12px; }
  .preview-coral { width: 150px; height: 220px; }
  .preview-sage  { width: 150px; height: 200px; }

  .pillars-grid { grid-template-columns: 1fr; gap: 24px; }
  .product-main { grid-template-columns: 1fr; }
  .items-grid { grid-template-columns: repeat(2, 1fr); }
  .color-story { grid-template-columns: 1fr; }
  .cs-name { font-size: 2.8rem; }
  .cs-swatch-stack { flex-direction: row; align-self: flex-end; }
  .cs-sw { width: 28px; height: 28px; }
  .lifestyle-inner { grid-template-columns: 1fr; }
  .lifestyle-image-block { min-height: 260px; }
  .lifestyle-text-block { padding: 48px 24px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; text-align: center; }
  .checkout-body { grid-template-columns: 1fr; }
  .checkout-left { border-right: none; border-bottom: 1px solid var(--light-gray); }
  .email-form { flex-direction: column; border-radius: var(--radius-md); }
  .email-form .btn-primary { border-radius: var(--radius-sm); }
}

@media (max-width: 480px) {
  .items-grid { grid-template-columns: repeat(2, 1fr); }
  .cs-name { font-size: 2.4rem; }
  .cs-panel { padding: 28px 24px; }
  .hero-title { font-size: 2.8rem; }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.7s cubic-bezier(0.4, 0, 0.2, 1) both; }
.fade-up-delay-1 { animation-delay: 0.1s; }
.fade-up-delay-2 { animation-delay: 0.2s; }
.fade-up-delay-3 { animation-delay: 0.3s; }

/* Intersection observer revealed */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================
   TOAST NOTIFICATION
   ============================================ */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--charcoal);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 600;
  z-index: 9999;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  box-shadow: var(--shadow-lg);
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ============================================
   ABOUT MODAL
   ============================================ */
.about-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 9000;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.about-overlay.active { opacity: 1; pointer-events: all; }
.about-modal {
  position: fixed; top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(.95);
  z-index: 9001; background: var(--cream); border-radius: 20px;
  padding: 56px 48px; max-width: 580px; width: 90%;
  opacity: 0; pointer-events: none;
  transition: all .3s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 24px 64px rgba(0,0,0,.16);
}
.about-modal.active { opacity: 1; pointer-events: all; transform: translate(-50%,-50%) scale(1); }
.about-close {
  position: absolute; top: 20px; right: 24px; background: none; border: none;
  font-size: 20px; cursor: pointer; color: #888; line-height: 1;
}
.about-heading {
  font-family: 'Cormorant Garamond', serif; font-size: 2.4rem;
  font-weight: 300; line-height: 1.15; color: var(--charcoal); margin-bottom: 20px;
}
.about-body {
  font-family: 'Raleway', sans-serif; font-size: 15px; color: var(--mid-gray);
  line-height: 1.75; margin-bottom: 16px;
}
@media (max-width: 600px) {
  .about-modal { padding: 48px 28px; }
  .about-heading { font-size: 2rem; }
}

/* ============================================
   NAV SOCIAL ICONS
   ============================================ */
.nav-social {
  display: flex; align-items: center; justify-content: center;
  color: var(--charcoal); opacity: .7; transition: opacity .2s, color .2s;
  margin-left: 6px;
}
.nav-social:hover { opacity: 1; color: var(--coral); }

/* ============================================
   5-PIECE PILL STRIP
   ============================================ */
.set-pill-strip {
  display: flex; flex-wrap: wrap; gap: 6px; margin: 10px 0 18px;
}
.set-pill-strip span {
  font-family: 'Raleway', sans-serif; font-size: 11px; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  background: var(--coral-pale); color: var(--coral);
  border: 1px solid var(--coral-light); border-radius: 100px;
  padding: 4px 12px;
}

/* ============================================
   PROMO CODE
   ============================================ */
.promo-section { margin: 8px 0 4px; }
.promo-label {
  font-family: 'Raleway', sans-serif; font-size: 13px; font-weight: 600;
  color: var(--mid-gray); letter-spacing: .03em; margin-bottom: 6px;
}
.promo-row {
  display: flex; gap: 8px; margin: 0 0 4px;
}
.promo-input {
  flex: 1; padding: 10px 14px; border: 1.5px solid var(--light-gray);
  border-radius: 8px; font-family: 'Raleway', sans-serif; font-size: 14px;
  text-transform: uppercase; letter-spacing: .05em;
}
.promo-input:focus { outline: none; border-color: var(--coral); }
.promo-input:disabled { background: #f5f5f5; color: #999; }
.promo-btn { padding: 10px 16px; font-size: 13px; white-space: nowrap; }
.promo-msg { font-family: 'Raleway', sans-serif; font-size: 13px; min-height: 18px; margin-bottom: 8px; }
.discount-row { color: var(--sage); }
.order-total-final { border-top: 2px solid var(--charcoal); margin-top: 4px; padding-top: 10px; }


/* Nav logo circular fix */
.nav-logo img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}
/* ============================================
   NADIA'S NECESSITIES — MASTER STYLESHEET
   ============================================ */

/* ---- CSS Variables ---- */
:root {
  /* ── Product Colors ── */
  --coral:        #E85D7C;   /* Coral Pink — primary product color */
  --coral-light:  #F5B8C8;
  --coral-pale:   #FFF0F3;
  --sage:         #7DB89A;   /* Sage Green — secondary product color */
  --sage-light:   #B8D9C9;
  --sage-pale:    #F0F8F4;

  /* ── Brand Blue (from logo) ── */
  --brand-blue:       #4D9FD4;   /* Primary brand blue — logo background */
  --brand-blue-light: #A8D4EF;
  --brand-blue-pale:  #EAF4FB;

  /* ── Neutrals ── */
  --cream:        #FAF7F2;   /* Page background */
  --white:        #FFFFFF;
  --charcoal:     #1E1E1E;   /* Primary text */
  --mid-gray:     #666666;   /* Secondary text */
  --light-gray:   #E8E8E8;   /* Borders, dividers */

  /* ── Accent ── */
  --gold:         #C4A46B;   /* Star ratings, accents */
  --gold-light:   #F0E6D3;

  /* ── Typography ── */
  --font-serif:   'Cormorant Garamond', Georgia, serif;   /* Headlines, product titles */
  --font-sans:    'Raleway', system-ui, sans-serif;        /* Body, UI, labels */
  --font-script:  'Dancing Script', cursive;               /* Brand name, accent moments */

  /* ── Spacing & Shape ── */
  --radius-sm:    8px;
  --radius-md:    16px;
  --radius-lg:    24px;
  --shadow-sm:    0 2px 12px rgba(0,0,0,0.06);
  --shadow-md:    0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg:    0 20px 60px rgba(0,0,0,0.14);
  --transition:   0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea { font-family: inherit; }

/* ---- Utilities ---- */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 760px; margin: 0 auto; padding: 0 24px; }

/* ---- Buttons ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background: var(--coral);
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 100px;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary:hover {
  background: #d04d6c;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,93,124,0.35);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background: transparent;
  color: var(--charcoal);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1.5px solid var(--charcoal);
  border-radius: 100px;
  transition: var(--transition);
}
.btn-ghost:hover {
  background: var(--charcoal);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-full { width: 100%; }
.btn-atc { font-size: 1rem; padding: 16px 32px; margin-bottom: 12px; }

/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */
.announce-bar {
  background: var(--charcoal);
  color: var(--white);
  text-align: center;
  padding: 10px 16px;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  font-weight: 500;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250,247,242,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-script {
  font-family: var(--font-script);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--coral);
  line-height: 1;
  letter-spacing: 0.01em;
}
.logo-text {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--coral); }
.nav-actions { display: flex; align-items: center; gap: 16px; }
.cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  padding: 8px;
  color: var(--charcoal);
  transition: color var(--transition);
}
.cart-btn:hover { color: var(--coral); }
.cart-count {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--coral);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: var(--transition);
}
.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 24px 20px;
  border-top: 1px solid var(--light-gray);
  gap: 16px;
}
.mobile-menu a {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.mobile-menu.open { display: flex; }

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  padding-top: 120px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  z-index: -1;
}
.hero-bg-left { background: var(--cream); }
.hero-bg-right { background: linear-gradient(135deg, #FFF0F3 0%, #F8EFF5 100%); }

.hero-content {
  padding: 60px 60px 60px 80px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--coral);
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 5vw, 5.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--charcoal);
}
.hero-title em {
  font-style: italic;
  color: var(--coral);
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--mid-gray);
  max-width: 420px;
  line-height: 1.7;
}
.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}
.hero-tags span {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--charcoal);
}

/* Hero product preview */
.hero-image-wrap {
  display: flex;
  align-items: stretch;
  justify-content: center;
  height: 100%;
  overflow: hidden;
}
.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-product-preview {
  display: flex;
  gap: 20px;
  align-items: flex-end;
}
.preview-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform var(--transition);
  cursor: pointer;
}
.preview-card:hover { transform: translateY(-8px); }
.preview-card p {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}
.preview-coral { background: linear-gradient(145deg, #FFF0F3, #FAE0E7); width: 180px; height: 280px; }
.preview-sage   { background: linear-gradient(145deg, #F0F8F4, #DFF0E9); width: 180px; height: 250px; }
.preview-inner { flex: 1; display: flex; flex-direction: column; gap: 8px; justify-content: center; align-items: center; }
.preview-towel-body {
  width: 100px; height: 90px;
  border-radius: 12px;
  opacity: 0.7;
}
.preview-towel-hair {
  width: 70px; height: 50px;
  border-radius: 8px;
  opacity: 0.7;
}
.preview-items-row { display: flex; gap: 6px; }
.preview-face, .preview-cap, .preview-band {
  width: 28px; height: 28px;
  border-radius: 6px;
  opacity: 0.7;
}
.preview-coral .preview-towel-body,
.preview-coral .preview-towel-hair,
.preview-coral .preview-face,
.preview-coral .preview-cap,
.preview-coral .preview-band { background: var(--coral-light); }
.preview-sage .preview-towel-body,
.preview-sage .preview-towel-hair,
.preview-sage .preview-face,
.preview-sage .preview-cap,
.preview-sage .preview-band { background: var(--sage-light); }

/* ============================================
   PILLARS
   ============================================ */
.pillars {
  background: var(--coral-pale);
  color: var(--charcoal);
  padding: 64px 0;
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.pillar { text-align: center; }
.pillar-icon {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}
.pillar h4 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 10px;
  letter-spacing: 0.02em;
  color: var(--coral);
}
.pillar p {
  font-size: 0.88rem;
  color: var(--coral);
  line-height: 1.7;
}

/* ============================================
   PRODUCTS
   ============================================ */
.products-section {
  padding: 100px 0;
  background: var(--white);
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 12px;
}
.section-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1rem;
  color: var(--mid-gray);
  max-width: 500px;
  margin: 0 auto;
}

.product-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Product visual */
.product-visual-wrap { position: relative; }
.product-display { display: none; }
.product-display.active { display: block; }

/* Product image badge */
.product-mock { position: relative; }
.product-badge {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  background: var(--coral); color: #fff;
  font-family: 'Raleway', sans-serif; font-size: 12px; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 50px;
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
}

.product-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
  display: block;
}

.product-photo-placeholder {
  border-radius: var(--radius-lg);
  aspect-ratio: 3/4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative;
  overflow: hidden;
}
.coral-bg { background: linear-gradient(135deg, #FFF0F3 0%, #F5C8D4 50%, #EDA8BB 100%); }
.sage-bg  { background: linear-gradient(135deg, #F0F8F4 0%, #C5E0D0 50%, #9DC5B0 100%); }

.placeholder-items {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 80%;
}
.ph-body-wrap {
  width: 100%; height: 120px;
  border-radius: 12px;
  opacity: 0.6;
  font-size: 0.7rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.ph-hair-wrap {
  width: 70%; height: 70px;
  border-radius: 8px;
  opacity: 0.6;
  font-size: 0.7rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.ph-row { display: flex; gap: 8px; width: 100%; }
.ph-face, .ph-cap, .ph-band {
  flex: 1; height: 50px;
  border-radius: 8px;
  opacity: 0.6;
  font-size: 0.6rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.coral-item { background: var(--coral); }
.sage-item  { background: var(--sage); }

.placeholder-label {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
  color: var(--charcoal);
  box-shadow: var(--shadow-sm);
}

.product-thumb-row {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.thumb-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border: 2px solid var(--light-gray);
  border-radius: var(--radius-md);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--mid-gray);
  transition: var(--transition);
  background: var(--white);
}
.thumb-btn.active, .thumb-btn:hover {
  border-color: var(--coral);
  color: var(--charcoal);
}
.color-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  display: inline-block;
  border: 2px solid rgba(0,0,0,0.1);
}
.coral-dot { background: var(--coral); }
.sage-dot  { background: var(--sage); }

/* Product Info */
.product-info { display: flex; flex-direction: column; gap: 20px; padding-top: 12px; }
.product-category {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--coral);
}
.product-title {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.2;
  color: var(--charcoal);
}
.product-rating {
  display: flex;
  align-items: center;
  gap: 10px;
}
.stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; }
.rating-count { font-size: 0.82rem; color: var(--mid-gray); }
.product-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.price-main {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--charcoal);
}
.price-compare {
  font-size: 0.85rem;
  color: var(--mid-gray);
  text-decoration: line-through;
}

/* Color swatches */
.select-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.color-swatches { display: flex; gap: 10px; }
.swatch {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 3px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  cursor: pointer;
}
.swatch-coral { background: var(--coral); }
.swatch-sage  { background: var(--sage); }
.swatch.active, .swatch:hover { border-color: var(--charcoal); transform: scale(1.1); }
.swatch-check { color: white; font-size: 0.9rem; opacity: 0; }
.swatch.active .swatch-check { opacity: 1; }

/* Qty */
.qty-control {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--light-gray);
  border-radius: var(--radius-sm);
  overflow: hidden;
  width: fit-content;
}
.qty-control button {
  width: 44px; height: 44px;
  font-size: 1.3rem;
  color: var(--charcoal);
  transition: background var(--transition);
}
.qty-control button:hover { background: var(--cream); }
.qty-control span {
  width: 52px;
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
  border-left: 1.5px solid var(--light-gray);
  border-right: 1.5px solid var(--light-gray);
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Product includes */
.product-includes {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  border-left: 3px solid var(--coral);
}
.includes-title {
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 12px;
}
.includes-note {
  font-family: 'Raleway', sans-serif;
  font-size: 0.82rem;
  color: var(--mid-gray);
  font-style: italic;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--light-gray);
}
.product-includes ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.product-includes li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--charcoal);
}
.product-includes li span {
  color: var(--sage);
  font-weight: 700;
  font-size: 1rem;
}

.product-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.product-badges span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--mid-gray);
}

/* ============================================
   INSIDE THE SET
   ============================================ */
.inside-set {
  padding: 80px 0 100px;
  background: var(--cream);
}

/* — Color story: editorial CSS panels — */
.color-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 48px 0 72px;
  min-height: 360px;
}
.cs-panel {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 48px 52px 48px 52px;
  overflow: hidden;
}
.cs-coral {
  background: linear-gradient(140deg, #FFF0F3 0%, #F5C0D0 55%, #E8899E 100%);
}
.cs-sage {
  background: linear-gradient(140deg, #F0F8F4 0%, #C0DDD0 55%, #8CBBA7 100%);
}
/* large decorative circle background */
.cs-deco {
  position: absolute;
  top: -100px; right: -100px;
  width: 420px; height: 420px;
  border-radius: 50%;
  opacity: 0.18;
}
.cs-coral .cs-deco { background: radial-gradient(circle, #E85D7C 0%, transparent 70%); }
.cs-sage  .cs-deco { background: radial-gradient(circle, #3D7A61 0%, transparent 70%); }

.cs-body { position: relative; z-index: 2; }
.cs-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.cs-coral .cs-label { color: #C44060; }
.cs-sage  .cs-label { color: #3D7A61; }

.cs-name {
  font-family: var(--font-serif);
  font-size: 3.8rem;
  font-weight: 300;
  line-height: 1.0;
  margin-bottom: 14px;
}
.cs-coral .cs-name { color: #B83458; }
.cs-sage  .cs-name { color: #2D6650; }

.cs-line {
  font-size: 0.78rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
  opacity: 0.7;
}
.cs-coral .cs-line { color: #C44060; }
.cs-sage  .cs-line { color: #3D7A61; }

.cs-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cs-checklist li {
  font-size: 0.82rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cs-checklist li::before {
  content: '✓';
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}
.cs-coral .cs-checklist li { color: #B83458; }
.cs-sage  .cs-checklist li { color: #2D6650; }

/* swatch stack on the right side */
.cs-swatch-stack {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-self: center;
}
.cs-sw {
  display: block;
  width: 36px; height: 36px;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

/* — Items intro line — */
.items-intro {
  text-align: center;
  font-size: 0.95rem;
  color: var(--mid-gray);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.set-items-container { padding-top: 0; }
.items-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.item-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 0 0 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.item-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
/* large illustration block at top of each card (legacy) */
.item-illus {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 12px 20px;
  margin-bottom: 16px;
}
.item-illus--coral { background: linear-gradient(160deg, #FFF0F3, #F5C8D4); }
.item-illus--sage  { background: linear-gradient(160deg, #F0F8F4, #C5E0D0); }

/* single product photo at top of each card */
.item-photo {
  overflow: hidden;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  margin-bottom: 16px;
}
.item-photo--coral { background: linear-gradient(160deg, #FFF0F3, #F5C8D4); }
.item-photo--sage  { background: linear-gradient(160deg, #F0F8F4, #C5E0D0); }
.item-photo img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  transition: transform var(--transition);
}
.item-card:hover .item-photo img {
  transform: scale(1.04);
}

.item-card h4 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--charcoal);
  padding: 0 16px;
}
.item-card p {
  font-size: 0.81rem;
  color: var(--mid-gray);
  line-height: 1.65;
  padding: 0 16px;
}

/* ============================================
   LIFESTYLE
   ============================================ */
.lifestyle-section { overflow: hidden; }
.lifestyle-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.lifestyle-image-block {
  position: relative;
  overflow: hidden;
}
.lifestyle-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.coral-gradient-bg { background: linear-gradient(145deg, #F9D0DC 0%, #E88FA5 50%, #D4607C 100%); }
.lifestyle-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(255,255,255,0.9);
}
.lifestyle-placeholder p { font-size: 1.2rem; font-weight: 600; }
.lifestyle-placeholder span { font-size: 0.82rem; opacity: 0.8; text-align: center; padding: 0 40px; }
.lifestyle-text-block {
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 70px;
  gap: 20px;
}
.lifestyle-text-block h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
}
.lifestyle-text-block h2 em { color: var(--coral); font-style: italic; }
.lifestyle-text-block p { color: var(--mid-gray); font-size: 0.95rem; line-height: 1.8; }

/* ============================================
   REVIEWS
   ============================================ */
.reviews-section { padding: 100px 0; background: var(--cream); }
.overall-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
  font-size: 0.88rem;
  color: var(--mid-gray);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.review-stars { color: var(--gold); font-size: 1rem; letter-spacing: 3px; }
.review-card p {
  font-size: 0.92rem;
  color: var(--charcoal);
  line-height: 1.75;
  flex: 1;
  font-style: italic;
}
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.reviewer strong { display: block; font-size: 0.9rem; }
.reviewer span { font-size: 0.75rem; color: var(--mid-gray); }

/* ============================================
   FAQ
   ============================================ */
.faq-section { padding: 100px 0; background: var(--white); }
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--light-gray);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--charcoal);
  text-align: left;
  gap: 16px;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--coral); }
.faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--coral);
  transition: transform var(--transition);
  flex-shrink: 0;
}
.faq-question.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 0 20px;
}
.faq-answer.open { display: block; }
.faq-answer p {
  font-size: 0.9rem;
  color: var(--mid-gray);
  line-height: 1.75;
}

/* ============================================
   EMAIL SECTION
   ============================================ */
.email-section {
  background: linear-gradient(135deg, var(--coral) 0%, #C4496B 100%);
  padding: 80px 0;
  text-align: center;
  color: var(--white);
}
.email-inner { max-width: 560px; margin: 0 auto; padding: 0 24px; }
.email-section .section-eyebrow { color: rgba(255,255,255,0.7); }
.email-section h2 {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 400;
  margin: 12px 0;
}
.email-section p { opacity: 0.85; margin-bottom: 28px; }
.email-form {
  display: flex;
  gap: 12px;
  background: var(--white);
  border-radius: 100px;
  padding: 6px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.email-form input {
  flex: 1;
  border: none;
  outline: none;
  padding: 10px 20px;
  background: transparent;
  font-size: 0.9rem;
  color: var(--charcoal);
  min-width: 0;
}
.email-form .btn-primary {
  border-radius: 100px;
  background: var(--charcoal);
  font-size: 0.82rem;
  padding: 12px 24px;
  flex-shrink: 0;
}
.email-form .btn-primary:hover { background: #333; }
.email-privacy { font-size: 0.75rem; opacity: 0.65; margin-top: 12px; }

/* ============================================
   SOCIAL BAR
   ============================================ */
.social-bar {
  background: var(--cream);
  padding: 60px 0;
  text-align: center;
  border-top: 1px solid var(--light-gray);
}
.social-bar-eyebrow {
  font-family: 'Raleway', sans-serif; font-size: 12px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--coral); margin-bottom: 10px;
}
.social-bar-heading {
  font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 300;
  color: var(--charcoal); margin-bottom: 28px;
}
.social-bar-links {
  display: flex; gap: 20px; justify-content: center; flex-wrap: wrap;
}
.social-bar-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; border: 1.5px solid var(--charcoal); border-radius: 50px;
  font-family: 'Raleway', sans-serif; font-size: 15px; font-weight: 600;
  color: var(--charcoal); text-decoration: none;
  transition: background .2s, color .2s, border-color .2s;
}
.social-bar-btn:hover {
  background: var(--coral); border-color: var(--coral); color: #fff;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--charcoal);
  color: var(--white);
  padding: 64px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  margin-bottom: 48px;
}
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  max-width: 260px;
}
.social-links { display: flex; gap: 16px; }
.social-links a {
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.social-links a:hover { color: var(--coral); }
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-col h5 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.payment-icons {
  display: flex;
  gap: 8px;
}
.payment-icons span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.4);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 3px 8px;
  border-radius: 4px;
}

/* ============================================
   CART DRAWER
   ============================================ */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1990;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-drawer {
  position: fixed;
  top: 0;
  right: -480px;
  width: 420px;
  max-width: 100vw;
  height: 100vh;
  background: var(--white);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.cart-drawer.open { right: 0; }
.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  border-bottom: 1px solid var(--light-gray);
}
.cart-header h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
}
.cart-close {
  color: var(--mid-gray);
  font-size: 1.1rem;
  padding: 6px;
  transition: color var(--transition);
}
.cart-close:hover { color: var(--charcoal); }
.cart-items { flex: 1; overflow-y: auto; padding: 20px 24px; }
.cart-empty { text-align: center; color: var(--mid-gray); padding: 40px 0; font-size: 0.9rem; }
.cart-item {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--cream);
}
.cart-item-img {
  width: 72px; height: 72px;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.cart-item-info { flex: 1; }
.cart-item-info strong { display: block; font-size: 0.88rem; margin-bottom: 4px; }
.cart-item-info span { font-size: 0.8rem; color: var(--mid-gray); }
.cart-item-price { font-weight: 700; font-size: 0.95rem; }
.cart-item-remove {
  color: var(--mid-gray);
  font-size: 0.85rem;
  padding: 4px;
}
.cart-item-remove:hover { color: var(--coral); }
.cart-footer {
  padding: 20px 24px 32px;
  border-top: 1px solid var(--light-gray);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cart-subtotal {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 1rem;
}
.cart-shipping-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--sage);
  font-weight: 600;
}

/* ============================================
   CHECKOUT MODAL
   ============================================ */
.checkout-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 2090;
}
.checkout-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90vw;
  max-width: 900px;
  max-height: 90vh;
  background: var(--white);
  border-radius: var(--radius-lg);
  z-index: 2100;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}
.checkout-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  border-bottom: 1px solid var(--light-gray);
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 1;
}
.checkout-header h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
}
.checkout-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.checkout-left {
  padding: 32px;
  border-right: 1px solid var(--light-gray);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.checkout-right {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.checkout-right h4 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
}
.order-summary { display: flex; flex-direction: column; gap: 12px; }
.order-total-row {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 1.05rem;
  padding-top: 12px;
  border-top: 1px solid var(--light-gray);
}
.shipping-form { display: flex; flex-direction: column; gap: 10px; }
.shipping-form h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 4px;
}
.shipping-form input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--light-gray);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition);
  background: var(--cream);
}
.shipping-form input:focus { border-color: var(--coral); background: var(--white); }
.form-row { display: flex; gap: 10px; }
.form-row input { flex: 1; min-width: 0; }
#card-container { min-height: 80px; }
.payment-status {
  font-size: 0.85rem;
  color: var(--coral);
  min-height: 20px;
  text-align: center;
}
.secure-badge {
  text-align: center;
  font-size: 0.78rem;
  color: var(--mid-gray);
  margin-top: 4px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .items-grid { grid-template-columns: repeat(3, 1fr); }
  .color-story { min-height: 300px; }
  .cs-name { font-size: 3rem; }
  .cs-panel { padding: 36px 32px; }
  .product-main { gap: 36px; }
  .hero { padding-top: 100px; }
  .hero-content { padding: 60px 40px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-menu-btn { display: flex; }
  .logo-text { display: none; }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 88px;
  }
  .hero-bg { grid-template-columns: 1fr; }
  .hero-bg-right { display: none; }
  .hero-content {
    padding: 40px 24px;
    text-align: center;
    align-items: center;
  }
  .hero-sub { max-width: 100%; }
  .hero-image-wrap { padding: 24px; }
  .hero-product-preview { gap: 12px; }
  .preview-coral { width: 150px; height: 220px; }
  .preview-sage  { width: 150px; height: 200px; }

  .pillars-grid { grid-template-columns: 1fr; gap: 24px; }
  .product-main { grid-template-columns: 1fr; }
  .items-grid { grid-template-columns: repeat(2, 1fr); }
  .color-story { grid-template-columns: 1fr; }
  .cs-name { font-size: 2.8rem; }
  .cs-swatch-stack { flex-direction: row; align-self: flex-end; }
  .cs-sw { width: 28px; height: 28px; }
  .lifestyle-inner { grid-template-columns: 1fr; }
  .lifestyle-image-block { min-height: 260px; }
  .lifestyle-text-block { padding: 48px 24px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; text-align: center; }
  .checkout-body { grid-template-columns: 1fr; }
  .checkout-left { border-right: none; border-bottom: 1px solid var(--light-gray); }
  .email-form { flex-direction: column; border-radius: var(--radius-md); }
  .email-form .btn-primary { border-radius: var(--radius-sm); }
}

@media (max-width: 480px) {
  .items-grid { grid-template-columns: repeat(2, 1fr); }
  .cs-name { font-size: 2.4rem; }
  .cs-panel { padding: 28px 24px; }
  .hero-title { font-size: 2.8rem; }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.7s cubic-bezier(0.4, 0, 0.2, 1) both; }
.fade-up-delay-1 { animation-delay: 0.1s; }
.fade-up-delay-2 { animation-delay: 0.2s; }
.fade-up-delay-3 { animation-delay: 0.3s; }

/* Intersection observer revealed */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================
   TOAST NOTIFICATION
   ============================================ */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--charcoal);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 600;
  z-index: 9999;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  box-shadow: var(--shadow-lg);
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ============================================
   ABOUT MODAL
   ============================================ */
.about-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 9000;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.about-overlay.active { opacity: 1; pointer-events: all; }
.about-modal {
  position: fixed; top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(.95);
  z-index: 9001; background: var(--cream); border-radius: 20px;
  padding: 56px 48px; max-width: 580px; width: 90%;
  opacity: 0; pointer-events: none;
  transition: all .3s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 24px 64px rgba(0,0,0,.16);
}
.about-modal.active { opacity: 1; pointer-events: all; transform: translate(-50%,-50%) scale(1); }
.about-close {
  position: absolute; top: 20px; right: 24px; background: none; border: none;
  font-size: 20px; cursor: pointer; color: #888; line-height: 1;
}
.about-heading {
  font-family: 'Cormorant Garamond', serif; font-size: 2.4rem;
  font-weight: 300; line-height: 1.15; color: var(--charcoal); margin-bottom: 20px;
}
.about-body {
  font-family: 'Raleway', sans-serif; font-size: 15px; color: var(--mid-gray);
  line-height: 1.75; margin-bottom: 16px;
}
@media (max-width: 600px) {
  .about-modal { padding: 48px 28px; }
  .about-heading { font-size: 2rem; }
}

/* ============================================
   NAV SOCIAL ICONS
   ============================================ */
.nav-social {
  display: flex; align-items: center; justify-content: center;
  color: var(--charcoal); opacity: .7; transition: opacity .2s, color .2s;
  margin-left: 6px;
}
.nav-social:hover { opacity: 1; color: var(--coral); }

/* ============================================
   5-PIECE PILL STRIP
   ============================================ */
.set-pill-strip {
  display: flex; flex-wrap: wrap; gap: 6px; margin: 10px 0 18px;
}
.set-pill-strip span {
  font-family: 'Raleway', sans-serif; font-size: 11px; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  background: var(--coral-pale); color: var(--coral);
  border: 1px solid var(--coral-light); border-radius: 100px;
  padding: 4px 12px;
}

/* ============================================
   PROMO CODE
   ============================================ */
.promo-section { margin: 8px 0 4px; }
.promo-label {
  font-family: 'Raleway', sans-serif; font-size: 13px; font-weight: 600;
  color: var(--mid-gray); letter-spacing: .03em; margin-bottom: 6px;
}
.promo-row {
  display: flex; gap: 8px; margin: 0 0 4px;
}
.promo-input {
  flex: 1; padding: 10px 14px; border: 1.5px solid var(--light-gray);
  border-radius: 8px; font-family: 'Raleway', sans-serif; font-size: 14px;
  text-transform: uppercase; letter-spacing: .05em;
}
.promo-input:focus { outline: none; border-color: var(--coral); }
.promo-input:disabled { background: #f5f5f5; color: #999; }
.promo-btn { padding: 10px 16px; font-size: 13px; white-space: nowrap; }
.promo-msg { font-family: 'Raleway', sans-serif; font-size: 13px; min-height: 18px; margin-bottom: 8px; }
.discount-row { color: var(--sage); }
.order-total-final { border-top: 2px solid var(--charcoal); margin-top: 4px; padding-top: 10px; }


/* ── Mobile: shrink logo text so social icons don't overlap ── */
@media (max-width: 768px) {
  .logo-script { font-size: 1.1rem; }
  .logo-text { display: none; }
}
