/* Baby's Daily Play — static rebuild
   Plain CSS, no build step. Edit freely. */

:root {
  --teal: #2bb3a3;
  --teal-dark: #1f8c80;
  --coral: #ff6f61;
  --coral-dark: #e85a4d;
  --sun: #ffb74d;
  --ink: #2d3a3a;
  --muted: #5f7470;
  --cream: #fbf7f0;
  --paper: #ffffff;
  --line: #e7e0d4;
  --radius: 16px;
  --shadow: 0 6px 24px rgba(45, 58, 58, 0.08);
  --wrap: 1040px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Quicksand", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
}

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

a { color: var(--teal-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3 { line-height: 1.2; color: var(--ink); margin: 0 0 .5em; }
h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.1rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 700; }

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

/* ---------- Header / nav ---------- */
.site-header {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 50;
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 12px 20px; max-width: var(--wrap); margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 46px; width: auto; }
.brand .tagline { font-weight: 700; color: var(--coral); font-size: .95rem; }
.nav-links { display: flex; gap: 6px; flex-wrap: wrap; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  display: block; padding: 8px 14px; border-radius: 999px;
  font-weight: 600; color: var(--ink); font-size: .95rem;
}
.nav-links a:hover { background: var(--cream); text-decoration: none; }
.nav-links a.active { background: var(--teal); color: #fff; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; padding: 13px 28px; border-radius: 999px;
  font-weight: 700; font-size: 1rem; cursor: pointer; border: none;
  background: var(--coral); color: #fff; transition: transform .08s, background .2s;
}
.btn:hover { background: var(--coral-dark); text-decoration: none; transform: translateY(-1px); }
.btn-teal { background: var(--teal); }
.btn-teal:hover { background: var(--teal-dark); }
.btn[disabled], .btn.is-stub { background: #c9c2b4; cursor: not-allowed; }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(160deg, #e8f7f4 0%, var(--cream) 70%);
  padding: 56px 0 48px;
}
.hero .wrap { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; }
.hero .kicker { color: var(--coral); font-weight: 700; letter-spacing: .04em; text-transform: uppercase; font-size: .85rem; }
.hero p.lead { font-size: 1.15rem; color: var(--muted); }
.award {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 8px;
  background: #fff5e6; color: #b9791b; border: 1px solid #ffe1b0;
  padding: 6px 14px; border-radius: 999px; font-weight: 700; font-size: .85rem;
}
@media (max-width: 760px) { .hero .wrap { grid-template-columns: 1fr; } }

/* ---------- Sections / cards ---------- */
section.block { padding: 48px 0; }
section.block.alt { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.center { text-align: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: center; }
@media (max-width: 760px) { .grid-3 { grid-template-columns: 1fr; } .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow);
}
.card img { border-radius: 12px; margin-bottom: 14px; }
.feature-list { list-style: none; padding: 0; margin: 0; }
.feature-list li { padding: 8px 0 8px 30px; position: relative; }
.feature-list li::before {
  content: "★"; color: var(--sun); position: absolute; left: 0; top: 8px; font-size: 1rem;
}

/* ---------- Product ---------- */
.price { font-size: 2rem; font-weight: 700; color: var(--teal-dark); }
.price small { font-size: .95rem; color: var(--muted); font-weight: 600; }
.product-media img { border-radius: var(--radius); box-shadow: var(--shadow); }
.shipping { font-size: .9rem; color: var(--muted); margin-top: 6px; }
.badge-seller {
  display: inline-block; background: var(--coral); color: #fff;
  font-size: .75rem; font-weight: 700; padding: 4px 12px; border-radius: 999px;
  text-transform: uppercase; letter-spacing: .04em;
}

/* stub notice for the new owner — remove once wired */
.stub-note {
  background: #fff8e1; border: 1px dashed #e0c45c; color: #8a6d1a;
  border-radius: 12px; padding: 12px 16px; font-size: .85rem; margin-top: 14px;
}

/* ---------- Testimonials ---------- */
.quote { background: var(--paper); border-left: 4px solid var(--teal); border-radius: 12px; padding: 18px 22px; box-shadow: var(--shadow); }
.quote p { margin: 0 0 8px; font-style: italic; }
.quote cite { color: var(--coral-dark); font-weight: 700; font-style: normal; font-size: .9rem; }

/* ---------- Form ---------- */
.form-field { margin-bottom: 16px; }
.form-field label { display: block; font-weight: 600; margin-bottom: 6px; }
.form-field input, .form-field textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line);
  border-radius: 12px; font: inherit; background: var(--paper);
}
.form-field textarea { min-height: 130px; resize: vertical; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #d7e0de; padding: 40px 0 28px; margin-top: 20px; }
.site-footer a { color: #9fe6db; }
.footer-grid { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 24px; }
.social a { margin-right: 14px; font-weight: 600; }
.copyright { color: #8aa09c; font-size: .85rem; margin-top: 22px; border-top: 1px solid #3c4c4c; padding-top: 16px; }
