:root{
  --primary:#ff5aa5;      /* girly pink */
  --accent:#ffd1e6;       /* soft blush */
  --bg:#fff7fb;           /* light pink background */
  --text:#3b2240;         /* softer than black */
  --muted:#7b5a73;        /* muted purple-gray */
  --card:#fff;
  --r:18px;

  /* ✅ missing vars (caused subtle layout issues) */
  --line: rgba(59,34,64,.10);
  --shadow: 0 12px 30px rgba(59,34,64,.06);

  /* extra */
  --pinkSoft: rgba(255,90,165,.08);
  --pinkBorder: rgba(255,90,165,.25);
}

/* ---------- Base ---------- */
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial;
  background:var(--bg);
  color:var(--text);
  font-weight:500;
}
a{color:inherit}

/* Softer typography */
.name, .head h2 { font-weight: 800; }
.tab{ font-weight: 800; }
.price{ font-weight: 700; }
.more{ color: var(--primary); }

/* ---------- Top App Bar ---------- */
.appbar{
  position:fixed;top:0;left:0;right:0;height:64px;
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
  z-index:1000;
  display:flex;align-items:center;justify-content:space-between;

  /* ✅ align header content to same centered container as .wrap */
  padding-left: max(14px, calc((100vw - 1100px)/2 + 14px));
  padding-right:max(14px, calc((100vw - 1100px)/2 + 14px));
}
.appbar{ height:64px; }
.wrap{ padding:74px 14px 40px; } /* was 70px */

.brand{display:flex;align-items:center;gap:10px;text-decoration:none}

/* Header brand logo sizing */
.brandLogo{
  height:46px;         /* bigger */
  width:auto;
  display:block;
  object-fit:contain;
}

@media (max-width:600px){
  .brandLogo{ height:34px; }
}

.badge{
  width:36px;height:36px;border-radius:12px;display:grid;place-items:center;
  background:linear-gradient(135deg,var(--primary),#ff2f8f);
  color:#fff;font-weight:800;
}
.name{font-weight:700}

.burger{
  width:42px;height:42px;border-radius:14px;
  border:1px solid var(--line);
  background:#fff;font-size:18px;cursor:pointer;
}

/* ---------- Drawer ---------- */
.drawer{
  position:fixed;top:0;right:0;height:100%;width:320px;background:#fff;
  border-left:1px solid var(--line);
  transform:translateX(100%);transition:.2s ease;z-index:1100;
}
.drawer.open{transform:translateX(0)}
.drawerHead{
  height:60px;display:flex;align-items:center;justify-content:space-between;
  padding:0 14px;border-bottom:1px solid var(--line);
}
.drawerTitle{font-weight:800}
.drawerClose{
  width:42px;height:42px;border-radius:14px;border:1px solid var(--line);background:#fff;cursor:pointer;
}
.drawerNav{padding:14px;display:flex;flex-direction:column;gap:10px}
.drawerNav a{
  text-decoration:none;
  font-weight:700;
  padding:12px;
  border-radius:14px;
  background: var(--pinkSoft);
  border: 1px solid var(--pinkBorder);
}
.backdrop{position:fixed;inset:0;background:rgba(2,6,23,.35);z-index:1050}

/* ---------- Main container ---------- */
.wrap{max-width:1100px;margin:0 auto;padding:70px 14px 40px}

/* ---------- Hero swipe ---------- */
.heroTrack{
  display:flex;
  gap:12px;
  overflow:auto;
  scroll-snap-type:x mandatory;
  -webkit-overflow-scrolling:touch;
  padding: 2px 14px 10px 2px;
  align-items:stretch;
}
.heroTrack::-webkit-scrollbar{display:none}

.heroCard{
  min-width:86%;max-width:86%;
  scroll-snap-align:start;
  border-radius:var(--r);
  padding:18px;
  text-decoration:none;

  /* ✅ girly gradients */
  background:linear-gradient(135deg, rgba(255,90,165,.14), rgba(255,209,230,.22));
  border:1px solid var(--line);
  box-shadow: 0 14px 34px rgba(236,72,153,.12);

  display:flex;
  flex-direction:column;
  justify-content:space-between;
  min-height:175px;
}
.heroCard.alt{
  background:linear-gradient(135deg, rgba(255,209,230,.22), rgba(255,90,165,.10));
}

.pill{
  display:inline-block;
  padding:6px 10px;
  border-radius:999px;
  background:rgba(255,255,255,.80);
  border:1px solid var(--line);
  font-weight:700;
  font-size:12px;
}

.heroCard h1{
  margin:12px 0 6px;
  font-size:22px;
  line-height:1.15;
  font-weight:750;
  min-height:2.4em;
}
.heroCard p{
  margin:0;
  color:var(--muted);
  font-weight:600;
}
.cta{
  display:inline-block;
  margin-top:10px;
  font-weight:750;
}
.hint{
  margin:8px 0 0;
  color:var(--muted);
  font-weight:650;
  font-size:12px;
}

@media (min-width:1100px){
  .heroCard{min-width:340px;max-width:340px}
}

/* ---------- Value strip ---------- */
.valueStrip{
  display:flex;
  gap:10px;
  overflow:auto;
  -webkit-overflow-scrolling:touch;
  padding: 8px 2px 2px;
  margin-top:6px;
}
.valueStrip::-webkit-scrollbar{display:none}
.valuePill{
  flex:0 0 auto;
  border-radius:999px;
  padding:8px 12px;
  font-weight:650;
  font-size:13px;

  background: var(--pinkSoft);
  border: 1px solid var(--pinkBorder);
  box-shadow:0 6px 18px rgba(59,34,64,.04);
}

/* ---------- Tabs ---------- */
.tabs{
  display:flex;
  gap:10px;
  overflow:auto;
  padding:10px 2px 4px;
  -webkit-overflow-scrolling:touch;
}
.tabs::-webkit-scrollbar{display:none}

.tab{
  border:1px solid var(--line);
  background:#fff;
  border-radius:999px;
  padding:10px 12px;
  font-weight:700;
  cursor:pointer;
  white-space:nowrap;
}
.tab.active{
  border-color: rgba(236,72,153,.45);
  box-shadow:0 8px 18px rgba(236,72,153,.10);
}

/* ---------- Age strip ---------- */
.ageStrip{
  display:flex;
  gap:10px;
  overflow:auto;
  -webkit-overflow-scrolling:touch;
  padding:8px 2px 2px;
  margin-top:2px;
}
.ageStrip::-webkit-scrollbar{display:none}
.ageChip{
  flex:0 0 auto;
  text-decoration:none;
  border-radius:999px;
  padding:8px 12px;
  font-weight:650;
  font-size:13px;

  background: rgba(255,255,255,.85);
  border:1px solid var(--line);
}
.ageChip.hot{
  background: var(--pinkSoft);
  border: 1px solid var(--pinkBorder);
}

/* ---------- Blocks / sections ---------- */
.block{
  margin-top:18px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--r);
  padding:14px;
  box-shadow:var(--shadow);
}
.block.subtle{
  background:rgba(255,255,255,.72);
  border-color:rgba(59,34,64,.08);
}

.head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:10px;
  margin-bottom:10px;
}
.head h2{
  margin:0;
  font-size:18px;
  font-weight:750;
}
.more{
  font-weight:750;
  color:var(--primary);
  text-decoration:none;
}

/* ---------- Product row (scroll/drag) ---------- */
.row{
  display:flex;
  gap:12px;
  overflow:auto;
  scroll-snap-type:x mandatory;
  -webkit-overflow-scrolling:touch;
  padding-bottom:4px;
}
.row::-webkit-scrollbar{display:none}

.card{
  min-width:160px;max-width:160px;
  scroll-snap-align:start;
  border-radius:16px;
  border:1px solid rgba(59,34,64,.08);
  background:#fff;
  overflow:hidden;
  text-decoration:none;
  box-shadow:0 10px 22px rgba(59,34,64,.05);
}

.thumb{
  height:150px;
  background: rgba(255,90,165,.06);
  display:grid;
  place-items:center;
}
.thumb img{width:100%;height:100%;object-fit:cover}

.meta{padding:10px}

/* ✅ softer product text (less black, less bold) */
.name2{
  font-weight:650;
  font-size:13px;
  line-height:1.25;
  max-height:2.5em;
  overflow:hidden;
  color: rgba(59,34,64,.88);
}
.price{
  margin-top:6px;
  font-weight:700;
  color: rgba(59,34,64,.92);
  font-size:13px;
}

.empty{
  padding:12px;
  border-radius:14px;
  background:rgba(59,34,64,.04);
  color:var(--muted);
  font-weight:650;
}

/* Price helpers */
.price .sale{ font-weight:750; }
.price .was{
  margin-left:6px;
  font-weight:650;
  color: var(--muted);
  text-decoration: line-through;
  font-size: 12px;
}

/* Optional: when dragging row */
.row.dragging a{ pointer-events:none; }

/* ---------- Newsletter ---------- */
.newsletter .nlGrid{
  display:grid;
  grid-template-columns: 1fr;
  gap:12px;
  align-items:center;
}
.nlTitle{
  font-weight:750;
  font-size:16px;
}
.nlSub{
  color:var(--muted);
  margin-top:2px;
  font-weight:600;
  font-size:13px;
}
.nlForm{
  display:flex;
  gap:10px;
  align-items:center;
}
.nlInput{
  flex:1;
  height:42px;
  border-radius:14px;
  border:1px solid var(--line);
  padding:0 12px;
  outline:none;
  background:#fff;
  font-weight:600;
}
.nlInput:focus{
  border-color: rgba(255,90,165,.45);
  box-shadow:0 0 0 4px rgba(255,90,165,.12);
}
.nlBtn{
  height:42px;
  padding:0 16px;
  border-radius:14px;
  border:1px solid rgba(255,90,165,.35);
  background: rgba(255,90,165,.10);
  cursor:pointer;
  font-weight:750;
}
.nlMsg{
  margin-top:10px;
  font-weight:650;
  color: rgba(59,34,64,.85);
}

@media (min-width:900px){
  .newsletter .nlGrid{
    grid-template-columns: 260px 1fr;
  }
}

/* ---------- Why section ---------- */
.why{
  margin-top:14px;
  display:grid;
  grid-template-columns:1fr;
  gap:10px;
}
.whyCard{
  background:#fff;
  border:1px solid var(--line);
  border-radius:16px;
  padding:14px;
  box-shadow:0 10px 24px rgba(59,34,64,.05);
}
.whyCard.alt{
  background: rgba(255,90,165,.06);
  border-color: rgba(255,90,165,.18);
}
.whyCard h3{
  margin:0 0 8px;
  font-size:14px;
  font-weight:750;
  color: rgba(59,34,64,.95);
}
.whyCard ul{
  margin:0;
  padding-left:18px;
  color: rgba(59,34,64,.85);
}
.whyCard li{
  margin:6px 0;
  font-weight:600;
  font-size:13px;
}
@media (min-width:900px){
  .why{grid-template-columns:1fr 1fr}
}

/* ---------- Trust strip ---------- */
.trust{
  margin-top:18px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}
.trustItem{
  background: linear-gradient(180deg,#fff,#fff0f7);
  border:1px solid var(--line);
  border-radius:16px;
  padding:12px;
  font-weight:700;
  box-shadow:0 10px 24px rgba(59,34,64,.05);
  color: rgba(59,34,64,.90);
}
@media (min-width:900px){
  .trust{grid-template-columns:repeat(4,1fr)}
}

body { color: var(--text); }
h1,h2,h3 { color: rgba(59,34,64,.95); }
.name2, .price, .whyCard ul, .whyCard li { color: rgba(59,34,64,.88); }
.more { color: var(--primary); }