/* ============================================================
   OLSEN COLORCRAFT CO. — Shared Stylesheet
   olsencolorcraftco.com
   Fonts: Playfair Display, Cormorant Garamond, Montserrat
   ============================================================ */

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

/* ── TOKENS ── */
:root {
  --gold:        #c9a84c;
  --gold-light:  #e8d08a;
  --gold-dark:   #8a6a1e;
  --gold-muted:  rgba(201,168,76,0.25);
  --cream:       #faf6ef;
  --charcoal:    #2a2a2a;
  --coral:       #d94f6e;
  --white:       #ffffff;
  --black:       #0a0a0a;
  --fil-filter:  brightness(0.6) sepia(1) saturate(3);
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--cream);
  color: var(--charcoal);
  font-family: 'Montserrat', sans-serif;
  overflow-x: hidden;
  margin-bottom: 70px; /* room for sticky footer */
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; }

/* ── NAVIGATION ── */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px;
  background: var(--cream);
  border-bottom: 1px solid var(--gold-muted);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-logo img {
  height: 38px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
}
.nav-links a {
  color: var(--charcoal);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }




/* ── GOLD DIVIDER LINE ── */
.gold-line {
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

/* ── BUTTONS ── */
.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: var(--charcoal);
  padding: 12px 32px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2px solid var(--gold-dark);
  border-radius: 4px;
  box-shadow: 2px 3px 14px rgba(0,0,0,0.22);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.btn-gold:hover {
  background: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 3px 5px 18px rgba(0,0,0,0.28);
}
.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--gold-dark);
  padding: 12px 32px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2px solid var(--gold);
  border-radius: 4px;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  cursor: pointer;
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--charcoal);
  transform: translateY(-1px);
}
.btn-party-kit {
  display: inline-block;
  background: var(--gold);
  color: var(--charcoal);
  padding: 13px 40px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2px solid var(--gold-dark);
  border-radius: 4px;
  box-shadow: 2px 3px 12px rgba(0,0,0,0.15);
  transition: background 0.2s, transform 0.2s;
}
.btn-party-kit:hover {
  background: var(--gold-dark);
  color: var(--white);
  transform: translateY(-1px);
}
.btn-shop-amazon {
  display: block;
  text-align: center;
  background: var(--gold);
  color: var(--charcoal);
  padding: 7px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 3px;
  border: 1px solid var(--gold-dark);
  transition: background 0.2s;
}
.btn-shop-amazon:hover {
  background: var(--gold-dark);
  color: var(--white);
}
.btn-cart-theme {
  display: inline-block;
  background: var(--charcoal);
  color: var(--gold-light);
  padding: 13px 36px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2px solid var(--gold);
  border-radius: 4px;
  box-shadow: 2px 3px 12px rgba(0,0,0,0.3);
  transition: background 0.2s, color 0.2s, transform 0.2s;
  cursor: pointer;
}
.btn-cart-theme:hover {
  background: var(--gold);
  color: var(--charcoal);
  transform: translateY(-1px);
}

/* ── FILIGREE ELEMENTS ── */
/* Corner bracket box — wrap content in this */
.filigree-bracket-box {
  position: relative;
  padding: 28px 20px 32px;
}
.fil-corner-img {
  position: absolute;
  mix-blend-mode: multiply;
  pointer-events: none;
  width: 220px;
  height: auto;
  filter: var(--fil-filter);
}
.fil-tl { top: 0; left: 0; }
.fil-tr { top: 0; right: 0; }
.fil-bl { bottom: 0; left: 0; }
.fil-br { bottom: 0; right: 0; }

/* Smaller corner bracket for tighter sections */
.fil-corner-img.small { width: 160px; }

/* Scroll flankers for section headers */
.section-header-flanked {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px 20px;
  gap: 12px;
}
.section-header-flanked .scroll-img {
  flex-shrink: 0;
  width: 160px;
  height: auto;
  mix-blend-mode: multiply;
  opacity: 0.85;
}
.section-header-flanked .title-wrap {
  text-align: center;
}
.section-header-flanked .title-wrap h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(20px, 2.8vw, 30px);
  font-weight: 700;
  color: var(--gold-dark);
  margin-bottom: 4px;
}
.section-header-flanked .title-wrap p {
  font-size: 13px;
  color: #999;
  letter-spacing: 0.04em;
  font-style: italic;
}

/* Filigree line divider */
.fil-line-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px 24px;
}
.fil-line-wrap img {
  width: 100%;
  max-width: 600px;
  height: auto;
  mix-blend-mode: multiply;
}

/* Art deco chevron separator */
.art-deco-separator {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 8px 0 0;
}
.deco-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.deco-chevron { flex-shrink: 0; margin: 0 8px; }

/* ── HERO SECTION ── */
.hero {
  position: relative;
  width: 100%;
  line-height: 0;
}
.hero img.hero-banner {
  width: 100%;
  display: block;
  max-height: 240px;
  object-fit: contain;
  object-position: center center;
  background: var(--cream);
}
.hero-btn-wrap {
  position: absolute;
  bottom: 6%;
  left: 6%;
}

/* ── VIDEO SECTION ── */
.gallery-video { width: 100%; line-height: 0; }
.gallery-video:empty { display: none; }
.gallery-video video {
  width: 100%;
  display: block;
  max-height: 340px;      /* 16:9 landscape video — enough height to look good */
  object-fit: cover;
  object-position: center center;
}

/* ── PHOTO STRIP ── */
.gallery-photo-strip { width: 100%; line-height: 0; }
.gallery-photo-strip img {
  width: 100%;
  display: block;
  max-height: 320px;      /* cap height ~27% smaller than unconstrained */
  object-fit: cover;
  object-position: center top;
}

/* ── INSPIRATION GRID ── */
.inspo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 0 24px 36px;
}
.inspo-grid img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 4px;
  border: 1px solid var(--gold-muted);
  transition: transform 0.3s;
}
.inspo-grid img:hover { transform: scale(1.02); }

/* ── SHOP / ETSY SECTION ── */
.shop-section { padding: 0 24px 24px; }
.shop-header { text-align: center; padding: 28px 0 24px; }
.shop-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(20px, 2.8vw, 30px);
  font-weight: 700;
  color: var(--gold-dark);
  margin-bottom: 6px;
}
.shop-header p { font-size: 12.5px; color: #999; letter-spacing: 0.04em; }

.etsy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.etsy-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}
.etsy-card img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid var(--gold-muted);
  transition: transform 0.3s, box-shadow 0.3s;
}
.etsy-card img:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.13);
}

/* Footer links row below Etsy grid */
.footer-links-row {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-links-row a {
  font-size: 12px;
  color: var(--gold-dark);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.footer-links-row a:hover { color: var(--coral); }

.party-kit-center { text-align: center; padding: 8px 0 28px; }

/* ── CURATED CALLOUT (page 1 bottom) ── */
.curated-callout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 20px 24px 24px;
  flex-wrap: wrap;
}
.btn-curated {
  display: inline-block;
  background: var(--gold);
  color: var(--charcoal);
  padding: 13px 36px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2px solid var(--gold-dark);
  border-radius: 4px;
  box-shadow: 2px 3px 12px rgba(0,0,0,0.3);
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}
.btn-curated:hover {
  background: var(--gold-dark);
  color: var(--white);
  transform: translateY(-1px);
}
.curated-previews {
  display: flex;
  gap: 10px;
  align-items: center;
}
.curated-previews img {
  width: 44px;            /* reduced 40% from 72px */
  height: 44px;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid rgba(201,168,76,0.4);
}

/* ── PLAYLIST / QR BAR ── */
.playlist-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 24px 32px 28px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}
.playlist-bar img {
  width: 480px;
  height: auto;
  border-radius: 3px;
}

/* ── PRODUCT GRID (page 2) ── */
.curated-header { text-align: center; padding: 36px 24px 8px; }
.curated-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(20px, 2.8vw, 28px);
  font-weight: 700;
  color: var(--gold-dark);
}
.ornament-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 40px 24px;
}
.ornament-line::before, .ornament-line::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

/* Suppress gold line dots when filigree image is inside ornament-line */
.ornament-line img {
  flex: 1;
  display: block;
}
.ornament-line:has(img)::before,
.ornament-line:has(img)::after {
  display: none;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 0 20px 32px;
}
.product-card {
  border: 1px solid var(--gold-muted);
  border-radius: 4px;
  overflow: hidden;
  background: var(--white);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s, transform 0.2s;
}
.product-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}
.product-img-wrap {
  width: 100%;
  aspect-ratio: 4/3;      /* was 1:1 — ~25% shorter, shows more products above fold */
  overflow: hidden;
  background: #f5f5f5;
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.product-card:hover .product-img-wrap img { transform: scale(1.05); }
.product-info {
  padding: 10px 10px 12px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.product-info p {
  font-size: 11.5px;
  color: var(--charcoal);
  line-height: 1.45;
  flex: 1;
}

/* ── CART BUTTON SECTION (page 2 — Netlify function) ── */
.cart-action-bar {
  background: var(--charcoal);
  padding: 24px 32px;
  text-align: center;
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
}
.cart-action-bar h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--gold-light);
  margin-bottom: 6px;
}
.cart-action-bar p {
  font-size: 12px;
  color: #aaa;
  margin-bottom: 16px;
}
.cart-guest-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.cart-guest-row label {
  font-size: 12px;
  color: var(--gold-muted);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.cart-guest-row input[type="number"] {
  width: 72px;
  padding: 8px 10px;
  border: 1px solid var(--gold);
  border-radius: 3px;
  background: #1a1a1a;
  color: var(--gold-light);
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  text-align: center;
}
.cart-toggle-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 12px;
  color: #aaa;
}
.cart-toggle-row input[type="checkbox"] { accent-color: var(--gold); width: 16px; height: 16px; }
.cart-note-msg {
  font-size: 11px;
  color: #888;
  margin-top: 10px;
  font-style: italic;
}

/* ── QUIET SPACE SECTION ── */
.quiet-section {
  background: #f0f7f6;
  padding: 40px 32px;
  border-top: 1px solid var(--gold-muted);
}
.quiet-inner {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.quiet-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  display: block;
  margin-bottom: 8px;
}
.quiet-inner h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--charcoal);
  margin-bottom: 10px;
  line-height: 1.3;
}
.quiet-inner p {
  font-size: 12.5px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 16px;
}
.quiet-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 20px;
}
.quiet-features li {
  font-size: 12px;
  color: var(--charcoal);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}
.quiet-features li::before {
  content: "✦";
  color: var(--gold);
  font-size: 9px;
  margin-top: 3px;
  flex-shrink: 0;
}
.quiet-products {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.quiet-product-card {
  border: 1px solid var(--gold-muted);
  border-radius: 4px;
  overflow: hidden;
  background: var(--white);
  transition: transform 0.2s, box-shadow 0.2s;
}
.quiet-product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.09);
}
.quiet-product-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.quiet-product-card .q-info {
  padding: 8px;
}
.quiet-product-card .q-info p {
  font-size: 10.5px;
  color: var(--charcoal);
  line-height: 1.4;
  margin-bottom: 6px;
}

/* ── PINTEREST / REAL CELEBRATIONS SECTION ── */
.pinterest-section {
  padding: 32px 20px 40px;
  text-align: center;
  position: relative;
}
.pinterest-section h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(20px, 2.8vw, 28px);
  color: var(--gold-dark);
  margin-bottom: 6px;
}
.pinterest-section p.sub {
  font-size: 12.5px;
  color: #999;
  font-style: italic;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}
.real-photo-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.real-photo-strip img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid var(--gold-muted);
}

/* ── HOMEPAGE SPECIFIC ── */

/* Differentiator bar */
.diff-bar {
  background: var(--charcoal);
  padding: 18px 32px;
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.diff-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gold-light);
}
.diff-icon { font-size: 20px; }
.diff-text-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(201,168,76,0.6);
  display: block;
}
.diff-text-main {
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
  display: block;
}

/* Homepage hero box */
.home-hero {
  padding: 48px 32px 44px;
  background: var(--cream);
  text-align: center;
}
.home-hero-box {
  max-width: 640px;
  margin: 0 auto;
  border: 1.5px solid rgba(201,168,76,0.35);
  padding: 40px 36px;
  position: relative;
}
/* CSS corner accents on the home hero (lightweight, no image needed) */
.home-hero-box::before,
.home-hero-box::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  border-color: var(--gold);
  opacity: 0.5;
}
.home-hero-box::before { top: -2px; left: -2px; border-top: 2px solid; border-left: 2px solid; }
.home-hero-box::after  { bottom: -2px; right: -2px; border-bottom: 2px solid; border-right: 2px solid; }
.home-hero-box h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 4vw, 44px);
  color: var(--charcoal);
  line-height: 1.15;
  margin-bottom: 14px;
}
.home-hero-box .sub {
  font-size: 13.5px;
  color: #777;
  max-width: 420px;
  margin: 0 auto 26px;
  line-height: 1.75;
}
.btn-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Section label (eyebrow + title + divider) */
.section-label {
  text-align: center;
  margin-bottom: 28px;
}
.section-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 6px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(20px, 2.8vw, 26px);
  color: var(--charcoal);
}
.section-divider {
  width: 48px;
  height: 1.5px;
  background: rgba(201,168,76,0.5);
  margin: 10px auto 0;
}

/* Homepage theme grid */
.theme-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 24px;
}
.theme-card {
  background: var(--white);
  border: 1px solid var(--gold-muted);
  padding: 16px 10px;
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  display: block;
}
.theme-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.09);
}
.theme-card-emoji { font-size: 26px; display: block; margin-bottom: 7px; }
.theme-card-name {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--charcoal);
  line-height: 1.3;
}
.theme-card.quiet-tag::after {
  content: "🤫";
  font-size: 10px;
  display: block;
  margin-top: 4px;
}

/* Homepage cart preview cards */
.theme-cart-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.theme-cart-card {
  border: 1px solid var(--gold-muted);
  padding: 20px 16px;
  text-align: center;
  background: var(--cream);
}
.theme-cart-emoji { font-size: 30px; margin-bottom: 10px; display: block; }
.theme-cart-name {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  color: var(--charcoal);
  margin-bottom: 12px;
}
.cart-sub-note {
  font-size: 10px;
  color: #999;
  margin-top: 6px;
  font-style: italic;
}

/* Homepage quiet space preview */
.quiet-home-section {
  background: #f0f7f6;
  padding: 48px 32px;
}
.quiet-home-inner {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.quiet-home-visual {
  background: var(--cream);
  border: 1px solid var(--gold-muted);
  padding: 32px 24px;
  text-align: center;
}
.quiet-home-emoji { font-size: 48px; margin-bottom: 12px; display: block; }
.quiet-home-visual p {
  font-size: 12px;
  color: #888;
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
}

/* Homepage video section */
.home-video-section {
  padding: 48px 0;
  background: var(--cream);
}
.home-video-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}
.home-video-placeholder {
  background: var(--charcoal);
  aspect-ratio: 9/16;
  max-height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--gold-muted);
  position: relative;
  overflow: hidden;
}
.home-video-placeholder video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0; left: 0;
}
.home-video-caption h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--charcoal);
  margin-bottom: 12px;
  line-height: 1.3;
}
.home-video-caption p {
  font-size: 12.5px;
  color: #777;
  line-height: 1.8;
  margin-bottom: 20px;
}
.home-stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--gold);
  display: block;
}
.stat-label {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #999;
}

/* Homepage callout box */
.callout-box {
  background: var(--cream);
  border: 1.5px solid var(--gold-muted);
  padding: 16px 24px;
  margin-top: 24px;
  font-size: 12px;
  color: #777;
  font-style: italic;
  text-align: center;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.callout-box strong { color: var(--gold-dark); font-style: normal; }

/* ── FOOTERS ── */
.bottom-footer {
  background: var(--charcoal);
  text-align: center;
  padding: 20px 24px;
}
.bottom-footer h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--gold-light);
  margin-bottom: 8px;
}
.bottom-footer p { font-size: 12px; color: #aaa; }

.sticky-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--cream);
  border-top: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 20px;
  z-index: 99;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.08);
}
.sticky-footer p { font-size: 11px; color: var(--charcoal); line-height: 1.4; }
.sticky-footer p strong { display: block; font-size: 12px; }
.sticky-footer .heart { color: var(--coral); margin-right: 6px; }

/* ── SECTION WRAPPERS ── */
.section-wrap { max-width: 860px; margin: 0 auto; padding: 0 32px; }
.page-section-white { padding: 48px 0; background: var(--white); }
.page-section-cream { padding: 48px 0; background: var(--cream); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav { padding: 10px 24px; }
  .nav-links { display: none; }
  .diff-bar { gap: 20px; padding: 16px; }
  .theme-grid { grid-template-columns: repeat(3, 1fr); }
  .quiet-home-inner,
  .quiet-inner,
  .home-video-inner { grid-template-columns: 1fr; }
  .theme-cart-grid { grid-template-columns: 1fr 1fr; }
  .real-photo-strip { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .home-hero { padding: 28px 16px; }
  .home-hero-box { padding: 24px 16px; }
  .theme-grid { grid-template-columns: repeat(2, 1fr); }
  .etsy-grid { grid-template-columns: 1fr 1fr; }
  
/* Suppress gold line dots when filigree image is inside ornament-line */
.ornament-line img {
  flex: 1;
  display: block;
}
.ornament-line:has(img)::before,
.ornament-line:has(img)::after {
  display: none;
}

.product-grid { grid-template-columns: 1fr 1fr; }
  .curated-callout { flex-direction: column; }
  .inspo-grid { grid-template-columns: 1fr; }
  .quiet-products { grid-template-columns: 1fr; }
  .btn-row { flex-direction: column; align-items: center; }
}

/* Affiliate disclosure */
.affiliate-disclosure {
  background: var(--charcoal);
  padding: 12px 32px;
  text-align: center;
  border-top: 1px solid rgba(201,168,76,0.2);
}
.affiliate-disclosure p {
  font-size: 10px;
  color: #888;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
  font-family: 'Montserrat', sans-serif;
}

/* ── QUIET SPACE IMAGE ── */
.quiet-home-img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 12px;
  background: var(--cream);
}
.quiet-home-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── THEME CARD WITH IMAGE ── */
.theme-card-img-wrap {
  width: 100%;
  aspect-ratio: 1;        /* back to square — cards were already correct size */
  overflow: hidden;
  border-radius: 3px;
  margin-bottom: 8px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
}
.theme-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.theme-card:hover .theme-card-img-wrap img {
  transform: scale(1.05);
}
.theme-card-emoji-fallback {
  font-size: 26px;
}

/* ── HOMEPAGE IMAGE HERO ── */
.home-hero-img {
  width: 100%;
  line-height: 0;
  display: block;
  max-width: 600px;   /* polaroid collage — full image, no cropping */
  margin: 0 auto;
}
.home-hero-img img {
  width: 100%;
  display: block;
  height: auto;
}
