:root{
  --bg:#f6f6f8;
  --panel:#ffffff;
  --panel2:#f0f1f4;

  --text: rgba(17,24,39,0.92);
  --muted: rgba(17,24,39,0.62);

  --border: rgba(0,0,0,0.10);
  --border2: rgba(0,0,0,0.06);

  --accent:#3a3f4b;        /* sleek charcoal */
  --accentSoft: rgba(58,63,75,0.10);

  --radius: 18px;
  --shadow: 0 16px 50px rgba(0,0,0,0.10);
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(900px 520px at 20% 10%, rgba(58,63,75,0.10), transparent 60%),
    linear-gradient(180deg, var(--bg), #fff 50%, var(--bg));
  color: var(--text);
}

a{ color:inherit; text-decoration:none; }
.container{ width:min(1120px, 92vw); margin:0 auto; }

.muted{ color: var(--muted); }
.fine{ color: rgba(17,24,39,0.55); font-size: 12px; margin: 10px 0 0; }

.header{
  position: sticky;
  top:0;
  z-index: 10;
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border2);
}

.header__inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding: 14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0.2px;
}
.brand__mark{
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(58,63,75,0.16), rgba(0,0,0,0.02));
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

.nav{
  display:flex;
  gap: 10px;
  align-items:center;
}
.nav a{
  color: var(--muted);
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid transparent;
}
.nav a:hover{
  border-color: var(--border2);
  background: rgba(0,0,0,0.02);
  color: var(--text);
}
.nav__cta{
  border-color: rgba(58,63,75,0.28) !important;
  background: rgba(58,63,75,0.10);
  color: var(--text) !important;
}

.menuBtn{
  display:none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.8);
  cursor:pointer;
}
.menuBtn span{
  display:block;
  width: 18px;
  height: 2px;
  background: rgba(17,24,39,0.8);
  margin: 4px auto;
  border-radius: 2px;
}

.mobileNav{
  display:none;
  border-top: 1px solid var(--border2);
  padding: 10px 0 12px;
}
.mobileNav a{
  display:block;
  padding: 10px 0;
  color: var(--muted);
}
.mobileNav a.nav__cta{
  display:inline-block;
  margin-top: 6px;
  padding: 10px 12px;
  border-radius: 14px;
}

/* Hero */
.hero{
  padding: 30px 0 18px;
}
.hero__inner{
  display:grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 16px;
  align-items: stretch;
}
.hero__copy{
  border-radius: var(--radius);
  border: 1px solid var(--border2);
  background: rgba(255,255,255,0.86);
  box-shadow: var(--shadow);
  padding: 18px;
}
.eyebrow{
  margin:0 0 10px;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(17,24,39,0.65);
}
.hero h1{
  margin:0 0 10px;
  font-size: clamp(30px, 4.2vw, 52px);
  line-height: 1.05;
}
.sub{
  margin:0 0 16px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 62ch;
}
.hero__actions{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.hero__trust{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}
.trustItem{
  font-size: 12px;
  color: var(--muted);
  border: 1px solid var(--border2);
  background: rgba(0,0,0,0.02);
  padding: 8px 10px;
  border-radius: 999px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.75);
  cursor:pointer;
  transition: transform .14s ease, background .14s ease, border-color .14s ease;
}
.btn:hover{
  transform: translateY(-2px);
  border-color: rgba(58,63,75,0.25);
  background: rgba(58,63,75,0.06);
}
.btn--primary{
  background: linear-gradient(135deg, rgba(58,63,75,0.18), rgba(58,63,75,0.08));
  border-color: rgba(58,63,75,0.30);
}
.btn--ghost{
  background: rgba(255,255,255,0.6);
}

.hero__media .mediaCard{
  border-radius: var(--radius);
  border: 1px solid var(--border2);
  background: rgba(255,255,255,0.86);
  box-shadow: var(--shadow);
  overflow:hidden;
  display:flex;
  flex-direction: column;
}
.mediaCard__bar{
  display:flex;
  gap: 10px;
  align-items:center;
  padding: 12px 14px;
  border-top: 1px solid var(--border2);
  color: rgba(17,24,39,0.65);
  font-size: 13px;
}
.pulse{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(58,63,75,0.20);
  border: 1px solid rgba(58,63,75,0.25);
}

/* Sections */
.section{ padding: 18px 0; }
.section--alt{
  border-top: 1px solid var(--border2);
  border-bottom: 1px solid var(--border2);
  background: linear-gradient(180deg, rgba(58,63,75,0.06), rgba(255,255,255,0));
}
.sectionHead{
  margin: 18px 0 12px;
}
.sectionHead h2{
  margin:0 0 6px;
  font-size: 20px;
}
.sectionHead.row{
  display:flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}

.grid{
  display:grid;
  gap: 12px;
}
.collections{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
.products{ grid-template-columns: repeat(3, minmax(0, 1fr)); }

.card{
  border-radius: var(--radius);
  border: 1px solid var(--border2);
  background: rgba(255,255,255,0.86);
  box-shadow: var(--shadow);
  overflow:hidden;
}

.cat__img{ padding: 12px; }
.cat__body{ padding: 0 16px 16px; }
.cat__body h3{ margin: 4px 0 6px; }
.link{
  color: rgba(17,24,39,0.85);
  font-weight: 700;
}
.link:hover{ text-decoration: underline; }

/* Products */
.product__media{
  height: 180px;
  border-bottom: 1px solid var(--border2);
  position: relative;
}
.product__media img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}
.product__body{
  padding: 14px 16px 16px;
}
.product__title{
  margin: 0 0 6px;
  font-size: 15px;
}
.priceRow{
  display:flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin: 10px 0 12px;
}
.price{
  font-weight: 900;
  letter-spacing: .2px;
}
.badge{
  font-size: 12px;
  color: rgba(17,24,39,0.65);
  border: 1px solid var(--border2);
  background: rgba(0,0,0,0.02);
  padding: 6px 10px;
  border-radius: 999px;
}
.product__actions{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}
.btnSmall{
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.75);
  cursor:pointer;
}
.btnSmall:hover{
  border-color: rgba(58,63,75,0.25);
  background: rgba(58,63,75,0.06);
}

/* About */
.about{
  display:grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 12px;
  align-items: start;
}
.about__copy{
  border-radius: var(--radius);
  border: 1px solid var(--border2);
  background: rgba(255,255,255,0.86);
  box-shadow: var(--shadow);
  padding: 16px;
}
.bullets{
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}
.about__media{ display:flex; flex-direction: column; gap: 12px; }

/* Contact */
.contact{
  display:grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 12px;
  align-items:start;
}
.form{
  border-radius: var(--radius);
  border: 1px solid var(--border2);
  background: rgba(255,255,255,0.86);
  box-shadow: var(--shadow);
  padding: 16px;
}
.field{ margin-bottom: 12px; }
label{ display:block; font-size: 12px; color: rgba(17,24,39,0.65); margin-bottom: 6px; }
input, select, textarea{
  width:100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.85);
  color: var(--text);
  outline:none;
}
input:focus, select:focus, textarea:focus{
  border-color: rgba(58,63,75,0.30);
}
.divider{
  height: 1px;
  background: var(--border2);
  margin: 12px 0;
}

/* Basket */
.basket{
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid var(--border2);
  background: rgba(255,255,255,0.75);
  border-radius: 14px;
}
.basket__count{
  display:grid;
  place-items:center;
  min-width: 30px;
  height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(58,63,75,0.12);
  border: 1px solid rgba(58,63,75,0.20);
  font-weight: 900;
}

/* Placeholders */
.imgPlaceholder{
  border-radius: var(--radius);
  border: 1px dashed rgba(0,0,0,0.12);
  background:
    radial-gradient(240px 160px at 20% 20%, rgba(58,63,75,0.10), transparent 60%),
    rgba(0,0,0,0.02);
  padding: 14px;
  min-height: 260px;
  display:flex;
  flex-direction: column;
  justify-content: flex-end;
}
.smallPH{ min-height: 140px; }
.tallPH{ min-height: 320px; }
.imgPlaceholder__title{ font-weight: 900; }
.imgPlaceholder__text{ margin-top: 6px; font-size: 12px; color: var(--muted); line-height: 1.5; }

/* Footer */
.footer{
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--border2);
  display:flex;
  justify-content: space-between;
  gap: 10px;
  color: rgba(17,24,39,0.62);
  font-size: 14px;
}

/* Toast */
.toast{
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(0,0,0,0.10);
  color: rgba(17,24,39,0.92);
  padding: 10px 12px;
  border-radius: 14px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
}
.toast.show{
  opacity: 1;
  transform: translateX(-50%) translateY(-2px);
}

/* Responsive */
@media (max-width: 980px){
  .hero__inner{ grid-template-columns: 1fr; }
  .collections{ grid-template-columns: 1fr; }
  .products{ grid-template-columns: 1fr; }
  .about{ grid-template-columns: 1fr; }
  .contact{ grid-template-columns: 1fr; }

  .nav{ display:none; }
  .menuBtn{ display:inline-block; }
  .mobileNav.open{ display:block; }
}
.heroImg{
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  display: block;
}
