/* Juhi Beauty Hub — Modern Theme (Poppins) */
:root{
  --brand:#C7417B;
  --accent:#D96A9A;
  --muted:#888;
  --bg:#faf7fb;
  --card:#ffffff;
  --radius:14px;
  --shadow: 0 10px 28px rgba(199,65,123,0.08);
}

*{box-sizing:border-box}
body{
  font-family:'Poppins',system-ui,-apple-system,Segoe UI,Roboto,Arial;
  margin:0; color:#222; background:var(--bg); -webkit-font-smoothing:antialiased;
}

/* header */
.site-header .wrap{ max-width:1100px; margin:0 auto; display:flex; align-items:center; justify-content:space-between; padding:14px 16px; }
.brand a{ display:flex; align-items:center; gap:12px; text-decoration:none; color:var(--brand) }
.logo-img{ height:42px; border-radius:10px; box-shadow:0 4px 18px rgba(0,0,0,0.06); }
.brand-text{ font-weight:700; font-size:18px; margin-left:4px; color:#3a0f2c; }

/* actions */
.header-actions{ display:flex; gap:8px; align-items:center; }
.icon-btn{ background:transparent; border:1px solid rgba(0,0,0,0.06); padding:8px 10px; border-radius:10px; cursor:pointer; font-size:16px; }
.cart-btn{ background:var(--brand); color:white; padding:8px 12px; border-radius:12px; text-decoration:none; display:inline-flex; align-items:center; gap:8px; }

/* hero */
.hero-wrap{ max-width:1100px; margin:0 auto; padding:18px 16px 28px; }
.hero{
  display:flex; gap:24px; align-items:center; background:linear-gradient(135deg,var(--brand),#ff9fc4);
  color:white; border-radius:18px; padding:20px; box-shadow:var(--shadow);
}
.hero-text{ flex:1; padding:8px 8px; }
.hero-text h1{ margin:0; font-size:28px; letter-spacing:0.2px; font-weight:700; }
.hero-text p{ margin:8px 0 14px; opacity:0.95; }
.btn-primary{ background:rgba(255,255,255,0.15); color:white; padding:10px 14px; border-radius:10px; text-decoration:none; border:1px solid rgba(255,255,255,0.08); }

/* hero media */
.hero-media img{ width:220px; border-radius:12px; box-shadow:0 12px 30px rgba(0,0,0,0.12); object-fit:cover; }

/* container */
.container{ max-width:1100px; margin:26px auto; padding:0 16px; }

/* intro */
.section-intro{ text-align:center; margin-bottom:14px; }
.section-intro h2{ margin:6px 0 2px; color:#3a0f2c; }
.section-intro p{ color:var(--muted); margin:0 0 6px; }

/* product grid */
.product-grid{ display:grid; grid-template-columns: repeat(2,1fr); gap:14px; }
.product-card{ background:var(--card); border-radius:12px; overflow:hidden; box-shadow:var(--shadow); display:flex; flex-direction:column; transition:transform .18s ease; }
.product-card:hover{ transform:translateY(-6px) }
.prod-media{ width:100%; padding:18px; display:flex; align-items:center; justify-content:center; background:linear-gradient(180deg,#fff,#fff0); }
.prod-media img{ width:100%; max-width:220px; height:180px; object-fit:cover; border-radius:10px; }
.prod-body{ padding:12px 14px 16px; display:flex; flex-direction:column; gap:6px; }
.prod-title{ margin:0; font-size:16px; color:#2a0b28; font-weight:600; }
.prod-sub{ color:var(--muted); font-size:13px; }
.prod-bottom{ display:flex; justify-content:space-between; align-items:center; margin-top:6px; }
.price{ font-weight:700; color:#333; }
.add-btn{ background:var(--brand); color:white; border:none; padding:8px 12px; border-radius:10px; cursor:pointer; }

/* small utilities */
.muted{ color:var(--muted); text-align:center; padding:18px; }

/* footer */
.footer{ margin-top:28px; background:transparent; padding:18px 16px; color:var(--muted); }
.footer .wrap{ display:flex; justify-content:space-between; align-items:center; max-width:1100px; margin:0 auto; }

/* whatsapp float */
.whatsapp-float{
  position:fixed; right:16px; bottom:18px; background:#25D366; color:white; width:56px; height:56px; border-radius:50%;
  display:flex; align-items:center; justify-content:center; font-size:24px; text-decoration:none; box-shadow:0 8px 24px rgba(0,0,0,0.12);
}

/* search overlay */
.search-overlay{ display:none; position:fixed; inset:0; background:rgba(0,0,0,0.45); z-index:9999; padding:40px 16px; }
.search-box{ max-width:800px; margin:0 auto; display:flex; gap:8px; }
.search-box input{ flex:1; padding:14px; border-radius:12px; border:0; font-size:16px; }
.search-results{ max-width:800px; margin:12px auto; background:#fff; padding:12px; border-radius:10px; }

/* responsive */
@media(min-width:900px){
  .product-grid{ grid-template-columns: repeat(4,1fr); }
  .hero-media img{ width:320px; height:320px; }
  .hero-text h1{ font-size:38px; }
}
@media(max-width:480px){
  .hero{ flex-direction:column; gap:12px; text-align:center; }
  .product-grid{ grid-template-columns: repeat(2,1fr); }
  .hero-media img{ width:200px; height:200px; }
}
