/* =====================================================================
   Fushy — cleaner rebuild
   Shared stylesheet. Brand colours live in :root — change them once here
   and the whole site follows.
   ===================================================================== */

:root {
  /* Palette */
  --cream:      #fff6f8;
  --cream-2:    #ffeef3;
  --card:       #ffffff;
  --ink:        #43303a;
  --muted:      #9b8791;
  --pink:       #ff7aa8;
  --pink-deep:  #e85c8e;
  --lavender:   #b79ce8;
  --mint:       #7fd8b0;
  --sold:       #b6a6ae;
  --line:       #f2dfe6;

  /* Type */
  --font-head: "Quicksand", ui-rounded, "Segoe UI", system-ui, sans-serif;
  --font-body: "Nunito", "Segoe UI", system-ui, -apple-system, sans-serif;

  /* Shape */
  --radius:    22px;
  --radius-sm: 14px;
  --shadow:    0 18px 40px -20px rgba(180, 70, 120, 0.35);
  --shadow-sm: 0 8px 22px -14px rgba(180, 70, 120, 0.4);

  /* Rhythm */
  --wrap: 1140px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(1100px 520px at 85% -8%, var(--cream-2), transparent 60%),
    radial-gradient(900px 500px at -10% 8%, #f3ecff, transparent 55%),
    var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--pink-deep); text-decoration: none; }
a:hover { color: var(--pink); }

h1, h2, h3 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.15;
  margin: 0 0 .5em;
  font-weight: 700;
}

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

.section { padding: 74px 0; }
.section--tight { padding: 48px 0; }

.eyebrow {
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: .78rem;
  color: var(--pink-deep);
  margin: 0 0 10px;
}

.section-head { text-align: center; max-width: 620px; margin: 0 auto 40px; }
.section-head h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
.section-head p { color: var(--muted); font-size: 1.05rem; margin: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  padding: 13px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(135deg, var(--pink), var(--pink-deep));
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover { transform: translateY(-2px); color: #fff; box-shadow: 0 16px 30px -14px rgba(232,92,142,.7); }
.btn--ghost {
  background: #fff;
  color: var(--pink-deep);
  border-color: var(--line);
}
.btn--ghost:hover { transform: translateY(-2px); border-color: var(--pink); color: var(--pink-deep); }
.btn--block { width: 100%; justify-content: center; }
.btn[disabled] { background: #efe4e9; color: var(--sold); box-shadow: none; cursor: not-allowed; transform: none; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 246, 248, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 12px 22px;
  max-width: var(--wrap);
  margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 10px; margin-right: auto; }
.brand img { height: 44px; width: auto; }
.brand .brand-word {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--ink);
  letter-spacing: .01em;
}
.nav-links { display: flex; align-items: center; gap: 6px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--ink);
  padding: 8px 14px;
  border-radius: 999px;
  transition: background .15s ease, color .15s ease;
}
.nav-links a:hover, .nav-links a.active { background: #fff; color: var(--pink-deep); box-shadow: var(--shadow-sm); }

.nav-search { position: relative; }
.nav-search input {
  font-family: var(--font-body);
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 9px 16px 9px 38px;
  width: 190px;
  font-size: .92rem;
  color: var(--ink);
  transition: box-shadow .15s ease, border-color .15s ease;
}
.nav-search input:focus { outline: none; border-color: var(--pink); box-shadow: 0 0 0 4px rgba(255,122,168,.18); }
.nav-search svg { position: absolute; left: 13px; top: 50%; transform: translateY(-50%); color: var(--muted); }

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  width: 44px; height: 44px;
  cursor: pointer;
  align-items: center; justify-content: center;
  color: var(--ink);
}

/* ---------- Hero ---------- */
.hero { padding: 66px 0 30px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 46px;
  align-items: center;
}
.hero h1 { font-size: clamp(2.3rem, 5vw, 3.5rem); margin-bottom: 18px; }
.hero h1 .accent { color: var(--pink-deep); }
.hero p.lead { font-size: 1.15rem; color: #6a565f; margin: 0 0 26px; max-width: 46ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.chip {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .85rem;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
  padding: 7px 14px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.chip span { color: var(--pink-deep); }

.hero-art { position: relative; }
.hero-art .photo {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 6px solid #fff;
  aspect-ratio: 4 / 5;
}
.hero-art .photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-art .sticker {
  position: absolute;
  bottom: -18px; left: -18px;
  background: #fff;
  border-radius: 18px;
  padding: 12px 16px;
  box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
}
.hero-art .sticker .dot { width: 34px; height: 34px; border-radius: 50%; background: linear-gradient(135deg, var(--mint), var(--lavender)); display: grid; place-items: center; }
.hero-blob { position: absolute; inset: -30px -30px auto auto; width: 240px; height: 240px; background: radial-gradient(circle, rgba(183,156,232,.35), transparent 70%); z-index: -1; }

/* ---------- Product grid ---------- */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 26px;
}
.card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card-media { position: relative; aspect-ratio: 1 / 1; overflow: hidden; background: var(--cream-2); }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.card:hover .card-media img { transform: scale(1.05); }
.badge {
  position: absolute; top: 12px; left: 12px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  color: #fff;
}
.badge--made { background: linear-gradient(135deg, var(--lavender), #9a7bd6); }
.badge--sold { background: var(--sold); }
.card-body { padding: 18px 18px 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.card-body h3 { font-size: 1.12rem; margin: 0; }
.card-body h3 a { color: var(--ink); }
.card-body h3 a:hover { color: var(--pink-deep); }
.price { font-family: var(--font-head); font-weight: 700; color: var(--pink-deep); font-size: 1.1rem; }
.price .note { color: var(--muted); font-weight: 600; font-size: .82rem; }
.price.sold { color: var(--sold); }
.card .btn { margin-top: auto; }
.card-empty { text-align: center; color: var(--muted); padding: 40px; grid-column: 1 / -1; }

/* ---------- Callout band ---------- */
.band {
  background: linear-gradient(135deg, #fff, var(--cream-2));
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 52px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.band h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
.band p { color: #6a565f; font-size: 1.08rem; max-width: 60ch; margin: 0 auto 26px; }

/* ---------- Forms ---------- */
.form-wrap {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow-sm);
  max-width: 680px;
  margin: 0 auto;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--font-head); font-weight: 600; margin-bottom: 7px; font-size: .95rem; }
.field .req { color: var(--pink-deep); }
.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  background: #fffafc;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--pink); box-shadow: 0 0 0 4px rgba(255,122,168,.16);
}
.field .hint { font-size: .82rem; color: var(--muted); margin-top: 5px; }
.form-note { text-align: center; color: var(--muted); font-size: .86rem; margin-top: 14px; }
.form-status {
  display: none;
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: #eafaf3;
  border: 1px solid var(--mint);
  color: #2f7d5b;
  font-weight: 600;
  font-family: var(--font-head);
  text-align: center;
}
.form-status.show { display: block; }
.form-status.error { background: #fceaea; border-color: #e79a9a; color: #a23b3b; }

/* ---------- Newsletter ---------- */
.newsletter { text-align: center; }
.newsletter form { display: flex; flex-wrap: wrap; gap: 12px; max-width: 460px; margin: 18px auto 0; }
.newsletter .form-status { flex-basis: 100%; margin-top: 6px; }
.newsletter input {
  flex: 1;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 13px 20px;
  font-size: 1rem;
  font-family: var(--font-body);
  background: #fff;
}
.newsletter input:focus { outline: none; border-color: var(--pink); box-shadow: 0 0 0 4px rgba(255,122,168,.16); }

/* ---------- Product detail ---------- */
.product { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; }
.product-media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 6px solid #fff; }
.product-info h1 { font-size: clamp(1.9rem, 4vw, 2.7rem); }
.product-info .price { font-size: 1.5rem; display: inline-block; margin: 6px 0 18px; }
.product-info p { color: #6a565f; }
.product-info .btn { margin-top: 18px; }
.back-link { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-head); font-weight: 600; margin-bottom: 18px; }

/* ---------- Footer ---------- */
.site-footer {
  background: linear-gradient(180deg, transparent, #fbe7ee);
  border-top: 1px solid var(--line);
  margin-top: 40px;
}
.footer-inner { padding: 46px 0 26px; display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 30px; }
.footer-inner .brand img { height: 40px; }
.site-footer p { color: var(--muted); margin: 12px 0 0; max-width: 34ch; }
.footer-col h4 { font-family: var(--font-head); font-size: 1rem; margin: 0 0 12px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: var(--ink); font-weight: 600; }
.footer-col a:hover { color: var(--pink-deep); }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 18px 0 30px;
  display: flex; flex-wrap: wrap; gap: 8px 18px; align-items: center; justify-content: space-between;
  color: var(--muted);
  font-size: .88rem;
}
.footer-bottom .age { font-weight: 700; color: var(--pink-deep); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { order: -1; max-width: 380px; }
  .product { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav-search { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 68px; left: 12px; right: 12px;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 10px;
    box-shadow: var(--shadow);
    gap: 2px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 14px; }
  .band { padding: 34px 22px; }
  .form-r
/* Testimonial */
.testimonial { max-width: 720px; margin: 0 auto; text-align: center; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 36px; box-shadow: var(--shadow-sm); }
.testimonial .stars { color: #f5b301; font-size: 1.25rem; letter-spacing: 3px; margin-bottom: 14px; }
.testimonial blockquote { margin: 0 0 16px; font-family: var(--font-head); font-weight: 500; font-size: 1.15rem; line-height: 1.65; color: var(--ink); }
.testimonial figcaption { color: var(--muted); font-weight: 700; font-family: var(--font-head); font-size: .95rem; }
.testimonial figcaption .verified { color: var(--pink-deep); }

/* Hero social proof */
.hero-proof { display: flex; align-items: center; gap: 10px; margin-top: 18px; flex-wrap: wrap; }
.hero-proof-stars { color: #f5b301; letter-spacing: 2px; font-size: 1.05rem; }
.hero-proof-text { font-family: var(--font-head); font-weight: 600; color: var(--ink); font-size: .95rem; }
.hero-proof-src { color: var(--muted); font-weight: 600; }
