:root{
  --primary:#7ec8e3;   /* baby blue */
  --accent:#cdeffd;    /* soft sky */
  --bg:#f6fbff;        /* airy background */
  --text:#243447;      /* calm blue-gray */
  --muted:#6b7c93;     /* muted */
  --card:#fff;
  --r:18px;

  /* helpers */
  --line: rgba(36,52,71,.10);
  --shadow: 0 12px 30px rgba(2,6,23,.05);
}

*{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}

/* ---------------------------
   Top App Bar
--------------------------- */
.appbar{
  position:fixed;top:0;left:0;right:0;height:60px;
  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 to .wrap */
  padding-left: max(14px, calc((100vw - 1100px)/2 + 14px));
  padding-right:max(14px, calc((100vw - 1100px)/2 + 14px));
}

.brand{display:flex;align-items:center;gap:10px;text-decoration:none}

.brandLogo{
  height:48px;
  width:auto;
  display:block;
  object-fit:contain;
  filter: drop-shadow(0 6px 14px rgba(2,6,23,.08));
}

.brandFallback{display:flex;align-items:center;gap:10px}
.badge{
  width:36px;height:36px;border-radius:12px;display:grid;place-items:center;
  background:linear-gradient(135deg,var(--primary),#4aa8cf);
  color:#fff;font-weight:800;
}
.name{font-weight:800}

/* Tablet */
@media (max-width: 900px) {
  .brandLogo {
    height: 42px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .brandLogo {
    height: 34px;
  }
}

.brand {
  gap: 12px;
}

.burger{
  width:42px;height:42px;border-radius:14px;border:1px solid rgba(36,52,71,.14);
  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 rgba(36,52,71,.14);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:rgba(126,200,227,.10);
  border:1px solid rgba(126,200,227,.22);
}
.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;

  /* baby-soft gradient */
  background:linear-gradient(135deg, rgba(126,200,227,.18), rgba(205,239,253,.22));
  border:1px solid var(--line);
  box-shadow:0 14px 34px rgba(2,6,23,.06);

  display:flex;
  flex-direction:column;
  justify-content:space-between;
  min-height:175px;
}
.heroCard.alt{
  background:linear-gradient(135deg, rgba(205,239,253,.22), rgba(126,200,227,.14));
}

.pill{
  display:inline-block;
  padding:6px 10px;
  border-radius:999px;
  background:rgba(255,255,255,.82);
  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:800;
  min-height:2.4em;
}
.heroCard p{
  margin:0;
  color:var(--muted);
  font-weight:600;
}
.cta{
  display:inline-block;
  margin-top:10px;
  font-weight:800;
}
.hint{
  margin:8px 0 0;
  color:var(--muted);
  font-weight:650;
  font-size:12px
}

/* Desktop hero sizing */
@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:1px solid rgba(126,200,227,.30);
  background:rgba(126,200,227,.10);
  border-radius:999px;
  padding:8px 12px;
  font-weight:650;
  font-size:13px;
  box-shadow:0 6px 18px rgba(2,6,23,.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 rgba(36,52,71,.12);
  background:#fff;
  border-radius:999px;
  padding:10px 12px;
  font-weight:750;
  cursor:pointer;
  white-space:nowrap;
}
.tab.active{
  border-color: rgba(126,200,227,.55);
  box-shadow:0 8px 18px rgba(2,6,23,.05);
}

/* ---------------------------
   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:1px solid rgba(36,52,71,.12);
  background:rgba(255,255,255,.88);
  border-radius:999px;
  padding:8px 12px;
  font-weight:650;
  font-size:13px;
}
.ageChip.hot{
  border-color: rgba(126,200,227,.40);
  background: rgba(126,200,227,.12);
}

/* ---------------------------
   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,.74);
  border-color:rgba(36,52,71,.06);
}

.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:850;
}
.more{
  font-weight:850;
  color: #2f8db5;
  text-decoration:none;
}

/* ---------------------------
   Product row
--------------------------- */
.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(36,52,71,.08);
  background:#fff;
  overflow:hidden;
  text-decoration:none;
  box-shadow:0 8px 22px rgba(2,6,23,.035);
}
.thumb{
  height:150px;
  background:rgba(126,200,227,.07);
  display:grid;
  place-items:center
}
.thumb img{width:100%;height:100%;object-fit:cover}
.meta{padding:10px}
.name2{
  font-weight:650;
  font-size:13px;
  line-height:1.25;
  max-height:2.5em;
  overflow:hidden;
  color: rgba(36,52,71,.92);
}
.price{
  margin-top:6px;
  font-weight:750;
  color: rgba(36,52,71,.92);
  font-size:13px;
}
.empty{
  padding:12px;
  border-radius:14px;
  background:rgba(2,6,23,.03);
  color:var(--muted);
  font-weight:650
}

/* Price helpers */
.price .sale{ font-weight:850; }
.price .was{
  margin-left:6px;
  font-weight:650;
  color: var(--muted);
  text-decoration: line-through;
  font-size: 12px;
}

/* Drag UX */
.row.dragging a{ pointer-events:none; }

/* ---------------------------
   Newsletter
--------------------------- */
.newsletter .nlGrid{
  display:grid;
  grid-template-columns: 1fr;
  gap:12px;
  align-items:center;
}
.nlTitle{
  font-weight:850;
  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 rgba(36,52,71,.14);
  padding:0 12px;
  outline:none;
  background:#fff;
  font-weight:600;
}
.nlInput:focus{
  border-color: rgba(126,200,227,.60);
  box-shadow:0 0 0 4px rgba(126,200,227,.16);
}
.nlBtn{
  height:42px;
  padding:0 16px;
  border-radius:14px;
  border:1px solid rgba(126,200,227,.35);
  background:rgba(126,200,227,.16);
  cursor:pointer;
  font-weight:850;
}
.nlMsg{
  margin-top:10px;
  font-weight:650;
  color: rgba(36,52,71,.92);
}

/* newsletter desktop */
@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(2,6,23,.05);
}
.whyCard.alt{
  background:rgba(126,200,227,.08);
  border-color:rgba(126,200,227,.22);
}
.whyCard h3{
  margin:0 0 8px;
  font-size:14px;
  font-weight:850;
}
.whyCard ul{
  margin:0;
  padding-left:18px;
  color: rgba(36,52,71,.92);
}
.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,#f2fbff);
  border:1px solid rgba(36,52,71,.08);
  border-radius:16px;
  padding:12px;
  font-weight:750;
  box-shadow:0 10px 24px rgba(2,6,23,.05);
  color: rgba(36,52,71,.92);
}
@media (min-width:900px){
  .trust{grid-template-columns:repeat(4,1fr)}
}

/* FORCE logo bigger (workaround for padded PNG) */
.brandLogo{
  height: 56px !important;
  max-height: 56px !important;
  width: auto !important;
}

/* give it more room */
.appbar{ height: 72px; }
.wrap{ padding-top: 82px; } /* was 70px */


/* JaredJacob header logo sizing */
.brandLogo{
  height:56px !important;
  width:auto !important;
  display:block;
  object-fit:contain;
}

@media (max-width: 600px){
  .brandLogo{ height:44px !important; }
}