:root{
  --primary:#c81624;     /* red */
  --accent:#fff1f1;      /* soft red tint */
  --bg:#ffffff;
  --text:#1f2937;
  --muted:#6b7280;
  --card:#ffffff;
  --r:18px;

  --line: rgba(31,41,55,.10);
  --shadow: 0 12px 30px rgba(2,6,23,.06);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial;
  /* ✅ Light red background (still clean, not overpowering) */
  background:linear-gradient(180deg,#fff5f6 0%, #ffecee 100%);
  color:var(--text);
  font-weight:500;
}
a{color:inherit}

/* Appbar */
.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;
  padding-left: max(14px, calc((100vw - 1100px)/2 + 14px));
  padding-right:max(14px, calc((100vw - 1100px)/2 + 14px));
}
.brand{display:flex;align-items:center;text-decoration:none}
.brandLogo{
  height:44px;width:auto;display:block;object-fit:contain;
}
@media (max-width:600px){
  .brandLogo{height:36px}
}
.burger{
  width:44px;height:44px;border-radius:14px;border:1px solid rgba(31,41,55,.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:64px;display:flex;align-items:center;justify-content:space-between;
  padding:0 14px;border-bottom:1px solid var(--line);
}
.drawerTitle{font-weight:900}
.drawerClose{
  width:44px;height:44px;border-radius:14px;border:1px solid rgba(31,41,55,.14);background:#fff;cursor:pointer;
}
.drawerNav{padding:14px;display:flex;flex-direction:column;gap:10px}
.drawerNav a{
  text-decoration:none;font-weight:800;padding:12px;border-radius:14px;
  background:rgba(200,22,36,.07);
  border:1px solid rgba(200,22,36,.18);
}
.backdrop{position:fixed;inset:0;background:rgba(2,6,23,.35);z-index:1050}

/* Container */
.wrap{max-width:1100px;margin:0 auto;padding:78px 14px 40px}

/* Hero */
.hero{margin-top:8px}
.heroCard{
  border-radius:var(--r);
  padding:18px;
  background:
    radial-gradient(800px 200px at 20% 10%, rgba(200,22,36,.08) 0%, rgba(200,22,36,0) 60%),
    linear-gradient(135deg, rgba(255,255,255,1), rgba(255,241,241,.9));
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}
.heroWide{min-height:180px;display:flex;flex-direction:column;justify-content:space-between}
.pill{
  display:inline-block;
  padding:6px 10px;
  border-radius:999px;
  background:rgba(255,255,255,.85);
  border:1px solid var(--line);
  font-weight:900;
  font-size:12px;
  letter-spacing:.08em;
}
.heroCard h1{
  margin:12px 0 6px;
  font-size:26px;
  line-height:1.15;
  font-weight:950;
}
.heroCard p{margin:0;color:var(--muted);font-weight:650}
.heroActions{display:flex;gap:10px;flex-wrap:wrap;margin-top:14px}
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  height:42px;padding:0 16px;border-radius:14px;
  border:1px solid rgba(31,41,55,.14);
  background:#fff;text-decoration:none;font-weight:900;
}
.btn.primary{
  border-color:rgba(200,22,36,.28);
  background:rgba(200,22,36,.10);
  color:var(--text);
}

/* Chips */
.chipStrip{
  display:flex;gap:10px;overflow:auto;-webkit-overflow-scrolling:touch;
  padding:10px 2px 2px;margin-top:10px;
}
.chipStrip::-webkit-scrollbar{display:none}
.chip{
  flex:0 0 auto;
  border:1px solid rgba(31,41,55,.12);
  background:rgba(255,255,255,.86);
  border-radius:999px;
  padding:8px 12px;
  font-weight:750;
  font-size:13px;
  box-shadow:0 6px 18px rgba(2,6,23,.04);
}

/* Category grid */
.catGrid{
  margin-top:14px;
  display:grid;
  grid-template-columns:1fr;
  gap:10px;
}
.catCard{
  text-decoration:none;
  background:#fff;
  border:1px solid var(--line);
  border-radius:16px;
  padding:14px;
  box-shadow:0 10px 24px rgba(2,6,23,.05);
}
.catTop{display:flex;align-items:flex-start;justify-content:space-between;gap:12px}
.catCard h2{margin:0;font-size:16px;font-weight:950}
.catCard p{margin:8px 0 0;color:var(--muted);font-weight:650}
.tag{
  flex:0 0 auto;
  padding:6px 10px;border-radius:999px;
  background:rgba(200,22,36,.10);
  border:1px solid rgba(200,22,36,.18);
  font-weight:900;
  font-size:12px;
}
@media (min-width:900px){
  .catGrid{grid-template-columns:1fr 1fr}
}

/* Blocks */
.block{
  margin-top:18px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--r);
  padding:14px;
  box-shadow:var(--shadow);
}
.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:950}
.more{font-weight:950;color:var(--primary);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:170px;max-width:170px;
  scroll-snap-align:start;
  border-radius:16px;
  border:1px solid rgba(200,22,36,.35);
  /* Requested: make the whole product tile red */
  background: var(--primary);
  overflow:hidden;
  text-decoration:none;
  box-shadow:0 10px 24px rgba(2,6,23,.04);

  /* ✅ Layout safety: forces image row + text row, preventing any overlap */
  display:grid;
  grid-template-rows:150px auto;
}
.thumb{
  height:150px;
  /* Keep the image area slightly lighter for contrast */
  background:rgba(255,255,255,.16);
  display:grid;place-items:center;
  overflow:hidden;
}
.thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.meta{
  padding:10px;
  min-height:72px;
}
.name2{
  font-weight:750;
  font-size:13px;
  line-height:1.25;
  max-height:2.6em;
  overflow:hidden;
  color: rgba(255,255,255,.96);
}
.price{
  margin-top:6px;
  font-weight:950;
  color: rgba(255,255,255,.98);
  font-size:13px;
}
.price .was{
  margin-left:6px;
  font-weight:700;
  color: rgba(255,255,255,.72);
  text-decoration: line-through;
  font-size: 12px;
}
.empty{
  padding:12px;border-radius:14px;
  background:rgba(2,6,23,.03);
  color:var(--muted);
  font-weight:750;
}

/* Newsletter */
.newsletter .nlGrid{
  display:grid;
  grid-template-columns:1fr;
  gap:12px;
  align-items:center;
}
.nlTitle{font-weight:950;font-size:16px}
.nlSub{color:var(--muted);margin-top:2px;font-weight:650;font-size:13px}
.nlForm{display:flex;gap:10px;align-items:center}
.nlInput{
  flex:1;height:42px;border-radius:14px;border:1px solid rgba(31,41,55,.14);
  padding:0 12px;outline:none;background:#fff;font-weight:650;
}
.nlInput:focus{
  border-color: rgba(200,22,36,.55);
  box-shadow:0 0 0 4px rgba(200,22,36,.12);
}
.nlBtn{
  height:42px;padding:0 16px;border-radius:14px;
  border:1px solid rgba(200,22,36,.28);
  background:rgba(200,22,36,.10);
  cursor:pointer;font-weight:950;
}
.nlMsg{margin-top:10px;font-weight:750;color: rgba(31,41,55,.92)}
@media (min-width:900px){
  .newsletter .nlGrid{grid-template-columns:260px 1fr}
}

/* Footer */
.footer{
  margin-top:18px;
  padding:18px 0 0;
}
.footInner{
  border-top:1px solid var(--line);
  padding-top:14px;
  display:flex;align-items:center;justify-content:space-between;gap:14px;
  flex-wrap:wrap;
}
.footBrand{display:flex;align-items:center;gap:12px}
.footLogo{height:34px;width:auto}
.footText{color:var(--muted);font-weight:650}
.footNote{color:var(--muted);font-weight:750}


/* ===== Elegance Tweaks (v8) ===== */

:root{
  --primary:#c5162b;           /* refined red */
  --accent:#ffe0e5;            /* soft blush */
  --bg:#fff5f6;                /* light red background */
  --text:#2b1b1d;              /* warm charcoal (not black) */
  --muted:#7a4a4f;
  --line: rgba(43,27,29,.10);
  --shadow: 0 14px 34px rgba(43,27,29,.08);
}

/* calmer page background */
body{
  background:
    radial-gradient(900px 420px at 20% -10%, rgba(197,22,43,.08), transparent 60%),
    radial-gradient(700px 380px at 90% 0%, rgba(197,22,43,.05), transparent 55%),
    var(--bg);
  color:var(--text);
}

/* headings + links */
.head h2, .nlTitle, .whyCard h3 { color: var(--text); }
.more{ color: var(--primary); }
.hint, .nlSub { color: var(--muted); }

/* cards: slightly softer borders */
.block, .whyCard, .trustItem{
  border-color: rgba(43,27,29,.08);
}
.block{ box-shadow: var(--shadow); }

/* product cards: red box + white text (requested) */
.card{
  background: linear-gradient(180deg, var(--primary), #a50f21);
  border-color: rgba(197,22,43,.55);
  box-shadow: 0 14px 30px rgba(197,22,43,.18);
}
.thumb{
  background:#fff;
}
.meta{
  display:flex;
  flex-direction:column;
  gap:6px;
  padding:12px 12px 14px;
  min-height:82px;
}
.name2{
  color: rgba(255,255,255,.94);
  font-weight:750;
}
.price{
  color:#fff;
  font-weight:850;
}
.price .was{
  color: rgba(255,255,255,.70);
  text-decoration: line-through;
}

/* ensure no text sits on image */
.thumb{ overflow:hidden; }
.thumb img{ display:block; }

/* newsletter button more premium */
.nlBtn{
  background: var(--primary);
  border-color: rgba(197,22,43,.60);
  color:#fff;
  box-shadow: 0 10px 22px rgba(197,22,43,.18);
}
.nlInput:focus{
  border-color: rgba(197,22,43,.55);
  box-shadow: 0 0 0 4px rgba(197,22,43,.12);
}

/* trust strip slight tint */
.trustItem{
  background: linear-gradient(180deg, #fff, rgba(197,22,43,.05));
}
