:root {
  --cream: #FAF7F2;
  --cream-soft: #F2EAE2;
  --blush: #E8CFC9;
  --rose: #B76E79;
  --rose-dark: #9A5560;
  --charcoal: #2B2620;
  --charcoal-mid: #6B6058;
  --gold: #C9A227;
  --white: #FFFFFF;
  --border: #E4D9CF;
  --radius: 14px;
  --shadow: 0 8px 28px rgba(43, 38, 32, 0.08);
  --max-width: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.6;
}

h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; line-height: 1.2; margin: 0 0 0.5em; font-weight: 400; }
h1 { font-size: 2.6rem; letter-spacing: 0.3px; }
h2 { font-size: 1.85rem; }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; }
a { color: var(--rose-dark); }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* Header */
.site-header { background: var(--cream); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 50; }
.site-header .container { display: flex; align-items: center; justify-content: space-between; padding-top: 18px; padding-bottom: 18px; }
.logo { font-family: Georgia, serif; font-size: 1.7rem; color: var(--charcoal); text-decoration: none; letter-spacing: 1px; }
.nav-links { display: flex; gap: 28px; list-style: none; margin: 0; padding: 0; }
.nav-links a { color: var(--charcoal); text-decoration: none; font-size: 0.92rem; font-weight: 600; letter-spacing: 0.2px; }
.nav-links a:hover { color: var(--rose-dark); }

.dev-banner { background: #FFF3CD; color: #6B4E00; text-align: center; font-size: 0.85rem; padding: 8px 16px; border-bottom: 1px solid #E6C567; }

/* Buttons */
.btn { display: inline-block; padding: 14px 32px; border-radius: 999px; font-weight: 700; font-size: 0.95rem; letter-spacing: 0.3px; text-decoration: none; cursor: pointer; border: none; transition: transform 0.15s ease, box-shadow 0.15s ease; }
.btn-primary { background: var(--rose); color: var(--white); }
.btn-primary:hover { background: var(--rose-dark); transform: translateY(-1px); }
.btn-secondary { background: transparent; color: var(--charcoal); border: 2px solid var(--charcoal); }
.btn-secondary:hover { background: var(--charcoal); color: var(--white); }

/* Hero */
.hero { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 52px; align-items: center; padding: 64px 0; }
.hero .eyebrow { text-transform: uppercase; letter-spacing: 2px; font-size: 0.78rem; font-weight: 700; color: var(--rose-dark); margin-bottom: 14px; display: block; }
.hero p.lead { font-size: 1.12rem; color: var(--charcoal-mid); }

/* Image placeholder */
.img-placeholder { background: linear-gradient(135deg, var(--blush), var(--cream-soft)); border: 2px dashed var(--rose); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; text-align: center; color: var(--rose-dark); font-size: 0.88rem; padding: 24px; min-height: 260px; min-width: 0; width: 100%; }
.img-placeholder.square { aspect-ratio: 1 / 1; }
.img-placeholder.tall { aspect-ratio: 3 / 4; }
.img-placeholder.wide { aspect-ratio: 16 / 9; }

/* Sections */
.section { padding: 56px 0; }
.section-title { text-align: center; margin-bottom: 40px; }
.section-title p { color: var(--charcoal-mid); max-width: 560px; margin: 0 auto; }

/* Product grid */
.product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }
.product-card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; display: flex; flex-direction: column; text-decoration: none; color: inherit; transition: transform 0.15s ease; min-width: 0; }
.product-card:hover { transform: translateY(-4px); }
.product-card .card-body { padding: 20px 22px 26px; }
.product-card h3 { margin-bottom: 6px; }
.product-card .price { font-weight: 700; color: var(--rose-dark); font-size: 1.12rem; margin-bottom: 10px; }
.product-card .tagline { color: var(--charcoal-mid); font-size: 0.9rem; margin-bottom: 16px; }

/* Trust bar */
.trust-bar { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; padding: 40px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trust-item { text-align: center; }
.trust-item .icon { font-size: 1.8rem; margin-bottom: 8px; }
.trust-item h4 { margin: 0 0 4px; font-size: 1rem; }
.trust-item p { margin: 0; font-size: 0.88rem; color: var(--charcoal-mid); }

/* Product page */
.product-hero { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 56px; padding: 48px 0; align-items: start; }
.product-hero .price-row { display: flex; align-items: baseline; gap: 12px; margin: 8px 0 6px; }
.product-hero .price { font-size: 2rem; font-weight: 700; color: var(--rose-dark); }
.price-intro-note { display: inline-block; font-size: 0.82rem; font-weight: 700; color: var(--rose-dark); background: var(--blush); padding: 5px 12px; border-radius: 999px; }
.badge { display: inline-block; background: var(--gold); color: var(--white); font-size: 0.75rem; font-weight: 700; padding: 4px 12px; border-radius: 999px; margin-bottom: 12px; }
.feature-list { list-style: none; padding: 0; margin: 0 0 24px; }
.feature-list li { padding: 10px 0 10px 30px; position: relative; border-bottom: 1px solid var(--border); }
.feature-list li:before { content: "\2713"; position: absolute; left: 0; color: var(--gold); font-weight: 700; }

/* Personalization form */
.personalize-box { background: var(--cream-soft); border-radius: var(--radius); padding: 20px; margin-bottom: 20px; }
.personalize-box label { display: block; font-weight: 700; font-size: 0.88rem; margin-bottom: 6px; }
.personalize-box input[type="text"], .personalize-box select { width: 100%; padding: 11px 14px; border-radius: 8px; border: 1px solid var(--border); font-size: 0.95rem; margin-bottom: 14px; font-family: inherit; }
.personalize-box .hint { font-size: 0.8rem; color: var(--charcoal-mid); margin-top: -10px; margin-bottom: 14px; }
.option-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 14px; }
.option-pill { border: 1.5px solid var(--border); border-radius: 999px; padding: 8px 16px; font-size: 0.85rem; cursor: pointer; background: var(--white); }
.option-pill.selected { border-color: var(--rose); background: var(--blush); font-weight: 700; }

.email-capture { background: var(--cream-soft); border-radius: var(--radius); padding: 20px; margin-top: 8px; }
.email-capture form { display: flex; gap: 10px; margin-top: 10px; }
.email-capture input[type="email"] { flex: 1; padding: 12px 16px; border-radius: 999px; border: 1px solid var(--border); font-size: 0.95rem; }

.trust-strip { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--border); font-size: 0.82rem; color: var(--charcoal-mid); }
.trust-strip span { display: flex; align-items: center; gap: 6px; }

.cross-sell { display: flex; align-items: center; gap: 14px; margin-top: 14px; padding: 14px 16px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--white); }
.cross-sell .thumb { width: 56px; height: 56px; flex-shrink: 0; border-radius: 10px; background: var(--cream-soft); border: 1px dashed var(--rose); display: flex; align-items: center; justify-content: center; font-size: 0.62rem; text-align: center; color: var(--rose-dark); padding: 4px; }
.cross-sell p { margin: 0; font-size: 0.9rem; }
.cross-sell a { font-weight: 700; }

/* Gallery */
.gallery { display: grid; grid-template-columns: minmax(0,1fr); gap: 12px; }
.gallery .thumbs { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.thumbs .img-placeholder { min-height: 110px; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }
.step { text-align: center; }
.step .num { width: 44px; height: 44px; border-radius: 50%; background: var(--rose); color: var(--white); display: flex; align-items: center; justify-content: center; font-weight: 700; margin: 0 auto 14px; }

/* Reviews */
.review-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.review-card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 22px; min-width: 0; }
.stars { color: var(--gold); font-size: 1rem; margin-bottom: 10px; }
.review-card .author { font-weight: 700; margin-top: 12px; font-size: 0.9rem; }

/* Order tracker */
.tracker-card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 28px 30px; margin-bottom: 32px; }
.tracker-card .order-meta { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid var(--border); font-size: 0.9rem; color: var(--charcoal-mid); }
.tracker-card .order-meta strong { color: var(--charcoal); }
.tracker-steps { display: flex; justify-content: space-between; position: relative; margin: 20px 0 8px; }
.tracker-steps::before { content: ""; position: absolute; top: 18px; left: 5%; right: 5%; height: 3px; background: var(--border); z-index: 0; }
.tracker-steps .fill { position: absolute; top: 18px; left: 5%; height: 3px; background: var(--gold); z-index: 1; }
.tracker-step { position: relative; z-index: 2; flex: 1; text-align: center; }
.tracker-step .dot { width: 38px; height: 38px; border-radius: 50%; background: var(--cream-soft); border: 3px solid var(--border); display: flex; align-items: center; justify-content: center; margin: 0 auto 10px; font-size: 1rem; }
.tracker-step.done .dot { background: var(--gold); border-color: var(--gold); color: var(--white); }
.tracker-step.current .dot { background: var(--rose); border-color: var(--rose); color: var(--white); }
.tracker-step .label { font-size: 0.82rem; font-weight: 600; color: var(--charcoal-mid); }
.tracker-step.done .label, .tracker-step.current .label { color: var(--charcoal); }
.tracker-step .date { font-size: 0.75rem; color: var(--charcoal-mid); margin-top: 2px; }
.tracker-note { margin-top: 24px; padding: 16px 18px; border-radius: var(--radius); background: var(--cream-soft); border-left: 4px solid var(--gold); font-size: 0.92rem; }
.tracker-note.delay { border-left-color: var(--rose); background: #FBEFEE; }
.tracker-note strong { display: block; margin-bottom: 4px; }

/* Cookie banner */
.cookie-banner { position: fixed; left: 0; right: 0; bottom: 0; z-index: 200; background: var(--white); border-top: 1px solid var(--border); box-shadow: 0 -8px 24px rgba(43,38,32,0.12); padding: 20px 24px; }
.cookie-banner-inner { max-width: var(--max-width); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.cookie-banner p { margin: 0; font-size: 0.9rem; color: var(--charcoal-mid); flex: 1; min-width: 240px; }
.cookie-banner p a { color: var(--rose-dark); }
.cookie-banner-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-banner-actions button { font-family: inherit; font-size: 0.88rem; font-weight: 700; border-radius: 999px; padding: 10px 20px; cursor: pointer; border: 2px solid var(--charcoal); background: transparent; color: var(--charcoal); }
.cookie-banner-actions button.accept-all { background: var(--rose); border-color: var(--rose); color: var(--white); }
.cookie-settings-panel { max-width: var(--max-width); margin: 16px auto 0; padding-top: 16px; border-top: 1px solid var(--border); display: none; }
.cookie-settings-panel.open { display: block; }
.cookie-settings-row { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; font-size: 0.88rem; }
.cookie-settings-row strong { display: block; }
.cookie-settings-row span.desc { color: var(--charcoal-mid); }

/* Content page */
.content-page { padding: 48px 0; max-width: 760px; margin: 0 auto; }
.content-page h2 { margin-top: 2em; }

/* Footer */
.site-footer { background: var(--charcoal); color: var(--cream-soft); padding: 48px 0 24px; margin-top: 48px; }
.footer-grid { display: grid; grid-template-columns: minmax(0,2fr) minmax(0,1fr) minmax(0,1fr); gap: 32px; margin-bottom: 32px; }
.footer-grid > div { min-width: 0; }
.site-footer h4 { color: var(--white); margin-bottom: 14px; font-size: 1rem; }
.site-footer a { color: var(--cream-soft); text-decoration: none; font-size: 0.9rem; }
.site-footer a:hover { text-decoration: underline; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 8px; }
.footer-legal { border-top: 1px solid rgba(255,255,255,0.15); padding-top: 20px; font-size: 0.8rem; color: rgba(250,247,242,0.7); }
.footer-legal .placeholder-flag { color: #E8C77A; font-weight: 700; }

@media (max-width: 860px) {
  .hero, .product-hero { grid-template-columns: minmax(0,1fr); }
  .product-grid, .trust-bar, .steps, .review-grid { grid-template-columns: minmax(0,1fr); }
  .footer-grid { grid-template-columns: minmax(0,1fr); }
  h1 { font-size: 2rem; }
  .nav-links { gap: 16px; font-size: 0.85rem; }
}
