:root{
  --bg:#F6F8FB;
  --surface:#FFFFFF;
  --ink:#0F172A;
  --muted:#475569;
  --line:#D7DEE8;
  --accent:#3A82F7;
  --accent2:#14B8A6;
  --sand:#E9E4DA;
  --radius:24px;
  --shadow:0 18px 50px rgba(15, 23, 42, 0.10);
  --shadow2:0 10px 28px rgba(15, 23, 42, 0.08);
  --gap:18px;
  --pad:18px;
  --max:1120px;
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:var(--font);
  color:var(--ink);
  background:
    radial-gradient(900px 480px at 15% -10%, rgba(58,130,247,.15), transparent 60%),
    radial-gradient(700px 420px at 85% 0%, rgba(20,184,166,.13), transparent 58%),
    linear-gradient(180deg, var(--bg), #FDFEFF 55%, var(--bg));
}
a{color:inherit}
img{max-width:100%; height:auto; display:block}

.skip{
  position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip:focus{left:16px; top:16px; width:auto; height:auto; padding:10px 12px; background:var(--surface); border:1px solid var(--line); border-radius:12px; z-index:50}

.sitehead{
  position:sticky; top:0; z-index:20;
  backdrop-filter:saturate(140%) blur(12px);
  background:rgba(246,248,251,.72);
  border-bottom:1px solid rgba(215,222,232,.75);
}
.headwrap{
  max-width:var(--max);
  margin:0 auto;
  padding:14px 16px;
  display:flex;
  align-items:center;
  gap:14px;
}
.logo{display:flex; align-items:center; gap:10px; text-decoration:none}
.logoDot{width:12px; height:12px; border-radius:999px; background:conic-gradient(from 30deg, var(--accent), var(--accent2), var(--accent)); box-shadow:0 0 0 6px rgba(58,130,247,.10)}
.logoWord{font-weight:700; letter-spacing:.2px}

.nav{display:flex; gap:10px; margin-left:auto; flex-wrap:wrap; justify-content:flex-end}
.navlink{
  text-decoration:none;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid transparent;
  color:rgba(15,23,42,.86);
}
.navlink:hover{background:rgba(255,255,255,.65); border-color:rgba(215,222,232,.75)}
.navlink.is-active{background:rgba(58,130,247,.10); border-color:rgba(58,130,247,.22)}

.cartchip{
  text-decoration:none;
  display:flex; align-items:center; gap:10px;
  padding:9px 12px;
  border-radius:999px;
  background:var(--surface);
  border:1px solid rgba(215,222,232,.9);
  box-shadow:0 6px 18px rgba(15,23,42,.06);
}
.chipCount{
  min-width:24px; height:24px; display:grid; place-items:center;
  border-radius:999px;
  background:rgba(20,184,166,.14);
  border:1px solid rgba(20,184,166,.20);
  font-weight:700; font-size:12px;
}

.content{max-width:var(--max); margin:0 auto; padding:22px 16px 46px}

.hero{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:22px;
  align-items:stretch;
}
@media (max-width: 920px){
  .hero{grid-template-columns:1fr;}
}

.heroCard{
  background:rgba(255,255,255,.72);
  border:1px solid rgba(215,222,232,.8);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  overflow:hidden;
}
.heroInner{padding:26px 24px 22px}
.kicker{display:inline-flex; align-items:center; gap:10px; font-size:13px; color:var(--muted)}
.kicker i{width:6px; height:6px; border-radius:999px; background:var(--accent2); display:inline-block}
.h1{font-size:44px; line-height:1.06; letter-spacing:-.6px; margin:12px 0 12px}
@media (max-width: 520px){.h1{font-size:34px}}
.lede{font-size:16px; line-height:1.55; color:rgba(15,23,42,.86); margin:0 0 16px}
.btnrow{display:flex; gap:12px; flex-wrap:wrap; margin-top:16px}
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:11px 14px;
  border-radius:999px;
  border:1px solid rgba(215,222,232,.9);
  background:var(--surface);
  text-decoration:none;
  font-weight:650;
}
.btn:hover{transform:translateY(-1px)}
.btn.primary{background:linear-gradient(135deg, rgba(58,130,247,.95), rgba(20,184,166,.88)); color:white; border-color:rgba(0,0,0,.0)}
.btn.subtle{background:rgba(58,130,247,.08); border-color:rgba(58,130,247,.18)}

.heroArt{
  position:relative;
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid rgba(215,222,232,.8);
  box-shadow:var(--shadow2);
  background:linear-gradient(180deg, rgba(255,255,255,.55), rgba(255,255,255,.22));
}
.heroArt img{width:100%; height:100%; object-fit:cover; filter:saturate(1.05)}
.heroOverlay{
  position:absolute; inset:auto 16px 16px 16px;
  background:rgba(255,255,255,.78);
  border:1px solid rgba(215,222,232,.85);
  border-radius:18px;
  padding:12px 14px;
}
.statline{display:flex; gap:12px; align-items:baseline; flex-wrap:wrap}
.stat{
  font-weight:800; letter-spacing:-.2px;
}
.mini{color:var(--muted); font-size:13px}

.section{
  margin-top:26px;
  display:grid;
  grid-template-columns: 1fr;
  gap:18px;
}
.panel{
  background:rgba(255,255,255,.75);
  border:1px solid rgba(215,222,232,.85);
  border-radius:var(--radius);
  box-shadow:0 10px 28px rgba(15,23,42,.06);
  padding:22px;
}
.h2{margin:0 0 10px; letter-spacing:-.3px}
.p{margin:0; color:rgba(15,23,42,.86); line-height:1.62}
.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:18px;
}
@media (max-width: 860px){.split{grid-template-columns:1fr}}
.cards{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:16px;
}
@media (max-width: 980px){.cards{grid-template-columns: repeat(2, minmax(0,1fr));}}
@media (max-width: 560px){.cards{grid-template-columns:1fr;}}
.card{
  border-radius:22px;
  border:1px solid rgba(215,222,232,.9);
  background:rgba(255,255,255,.86);
  overflow:hidden;
  transition:transform .15s ease;
}
.card:hover{transform:translateY(-2px)}
.cardTop{aspect-ratio: 4 / 3; background:linear-gradient(135deg, rgba(58,130,247,.08), rgba(20,184,166,.09)); display:grid; place-items:center}
.cardTop img{width:100%; height:100%; object-fit:cover}
.cardBody{padding:14px 14px 14px}
.badge{display:inline-flex; align-items:center; gap:8px; font-size:12px; color:var(--muted)}
.badge b{color:rgba(15,23,42,.9)}
.price{font-weight:800}
.cardActions{display:flex; justify-content:space-between; gap:10px; align-items:center; margin-top:10px}
.link{text-decoration:none; color:rgba(58,130,247,.98); font-weight:650}
.link:hover{text-decoration:underline}
.add{
  border-radius:999px;
  border:1px solid rgba(20,184,166,.22);
  background:rgba(20,184,166,.10);
  padding:9px 12px;
  font-weight:700;
  cursor:pointer;
}
.add:hover{background:rgba(20,184,166,.14)}

.form{
  display:grid; gap:12px;
}
.field{display:grid; gap:6px}
label{font-size:13px; color:rgba(15,23,42,.82)}
input, textarea, select{
  border:1px solid rgba(215,222,232,.95);
  border-radius:16px;
  padding:12px 12px;
  background:rgba(255,255,255,.92);
  font:inherit;
}
textarea{min-height:120px; resize:vertical}
.note{font-size:12px; color:var(--muted); line-height:1.5}
.row2{display:grid; grid-template-columns:1fr 1fr; gap:12px}
@media (max-width: 720px){.row2{grid-template-columns:1fr}}

.table{
  width:100%;
  border-collapse:separate;
  border-spacing:0;
  overflow:hidden;
  border:1px solid rgba(215,222,232,.9);
  border-radius:20px;
  background:rgba(255,255,255,.86);
}
.table th,.table td{padding:12px 12px; border-bottom:1px solid rgba(215,222,232,.75); text-align:left}
.table th{font-size:12px; text-transform:uppercase; letter-spacing:.08em; color:rgba(71,85,105,.9); background:rgba(246,248,251,.75)}
.table tr:last-child td{border-bottom:none}
.qtyCtrl{display:inline-flex; align-items:center; border:1px solid rgba(215,222,232,.95); border-radius:999px; overflow:hidden}
.qtyCtrl button{border:0; background:transparent; padding:8px 10px; cursor:pointer; font-weight:800}
.qtyCtrl span{display:inline-block; min-width:28px; text-align:center; font-weight:700}

.toast{
  position:fixed; left:16px; bottom:16px; z-index:40;
  background:rgba(15,23,42,.92); color:white;
  padding:12px 14px; border-radius:16px;
  box-shadow:0 16px 44px rgba(15,23,42,.24);
  max-width:min(420px, calc(100% - 32px));
  opacity:0; transform:translateY(10px);
  pointer-events:none;
  transition:opacity .18s ease, transform .18s ease;
}
.toast.show{opacity:1; transform:translateY(0)}

.sitefoot{
  border-top:1px solid rgba(215,222,232,.9);
  background:rgba(246,248,251,.75);
}
.footgrid{
  max-width:var(--max); margin:0 auto; padding:26px 16px;
  display:grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap:16px;
}
@media (max-width: 960px){.footgrid{grid-template-columns:1fr 1fr;}}
@media (max-width: 560px){.footgrid{grid-template-columns:1fr;}}
.brandmark{font-weight:800; letter-spacing:-.2px}
.foottitle{font-weight:800; font-size:13px; margin:4px 0 10px}
.foottext{color:rgba(15,23,42,.78); margin:10px 0 0; line-height:1.6}
.footlist{list-style:none; padding:0; margin:0; display:grid; gap:7px; color:rgba(15,23,42,.78); font-size:13px; line-height:1.5}
.footlist a{color:rgba(15,23,42,.82)}
.footlist a:hover{color:var(--accent)}
.k{color:rgba(71,85,105,.92)}
.footbar{
  max-width:var(--max); margin:0 auto; padding:14px 16px 18px;
  display:flex; gap:12px; justify-content:space-between; flex-wrap:wrap;
  color:rgba(71,85,105,.92);
  font-size:13px;
}
.footmini{opacity:.9}
