@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@400;600;800;900&display=swap');

:root{
  --bg:#07070a;
  --panel:#0e0f14;
  --stroke:rgba(255,255,255,.08);
  --text:#f2f2f3;
  --muted:rgba(242,242,243,.65);

  --gold:#f7b02b;
  --gold2:#c67a08;

  --radius:18px;
  --shadow:0 20px 50px rgba(0,0,0,.55);
}

/* בסיס */
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:"Heebo",system-ui,-apple-system,Segoe UI,Roboto,Arial;
  background:
    radial-gradient(1200px 600px at 15% 0%, rgba(247,176,43,.14), transparent 60%),
    radial-gradient(900px 500px at 85% 10%, rgba(198,122,8,.10), transparent 55%),
    var(--bg);
  color:var(--text);
}
a{color:inherit;text-decoration:none}
.wrap{width:min(1180px,calc(100% - 32px));margin:0 auto}
.muted{color:var(--muted)}
.small{font-size:.9rem}

/* Topbar */
.topbar{
  position:sticky;top:0;z-index:50;
  background:rgba(7,7,10,.72);
  backdrop-filter:blur(14px);
  border-bottom:1px solid var(--stroke);
}
.topbar__inner{
  display:flex;align-items:center;justify-content:space-between;
  gap:16px;padding:14px 0;
}
.brand{display:flex;align-items:center;gap:12px}
.brand__logo{
  width:40px;height:40px;object-fit:contain;
  filter:drop-shadow(0 10px 22px rgba(247,176,43,.25));
}
.brand__name{font-weight:900}
.brand__tag{font-size:.9rem;color:var(--muted)}

.nav{display:flex;gap:10px}
.nav a{padding:8px 10px;border-radius:12px}
.nav a:hover{background:rgba(255,255,255,.06)}

.actions{display:flex;gap:10px;align-items:center}

/* Buttons */
.btn{
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.04);
  color:var(--text);
  padding:10px 14px;
  border-radius:14px;
  cursor:pointer;
  display:inline-flex;align-items:center;gap:10px;
  transition:.12s;
}
.btn:hover{transform:translateY(-1px);background:rgba(255,255,255,.06)}
.btn:active{transform:translateY(0)}

.btn--primary{
  border-color:rgba(247,176,43,.35);
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  color:#14110a;
  font-weight:900;
}
.btn--ghost{background:rgba(255,255,255,.03)}
.btn--full{width:100%;justify-content:center}

.pill{
  font-size:.85rem;
  padding:2px 8px;
  border-radius:999px;
  border:1px solid rgba(247,176,43,.35);
  background:rgba(247,176,43,.12);
}

/* Hero */
.hero{padding:34px 0}
.hero__inner{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:26px;
}
.badge{
  display:inline-flex;
  padding:7px 12px;
  border:1px solid rgba(247,176,43,.22);
  background:rgba(247,176,43,.08);
  border-radius:999px;
  font-weight:800;
  color:rgba(247,176,43,.95);
}
h1{margin:14px 0;font-size:clamp(2rem,4vw,3.2rem);line-height:1.05}
.accent{
  background:linear-gradient(135deg,var(--gold),#ffd38a);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.hero__cta{display:flex;gap:12px;margin-top:16px;flex-wrap:wrap}

/* Glass / Featured */
.glass{
  border:1px solid rgba(255,255,255,.10);
  background:linear-gradient(180deg,rgba(255,255,255,.05),rgba(255,255,255,.02));
  border-radius:22px;
  box-shadow:var(--shadow);
  overflow:hidden;
}
.glass__header{
  display:flex;align-items:center;gap:8px;
  padding:12px 14px;border-bottom:1px solid var(--stroke);
}
.dot{width:10px;height:10px;border-radius:50%}
.dot--red{background:#ff5f57}
.dot--yellow{background:#febc2e}
.dot--green{background:#28c840}
.glass__title{font-weight:900;color:rgba(242,242,243,.85)}

.featured{padding:16px}

/* Cards */
.grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  padding:16px 0 40px;
}
.card{
  border:1px solid var(--stroke);
  background:linear-gradient(180deg,rgba(255,255,255,.05),rgba(255,255,255,.02));
  border-radius:var(--radius);
  padding:14px;
  box-shadow:0 12px 35px rgba(0,0,0,.35);
  display:flex;
  flex-direction:column;
}
.card__top{
  display:flex;justify-content:space-between;gap:10px;
}
.chip{
  font-size:.85rem;
  padding:5px 10px;
  border-radius:999px;
  border:1px solid rgba(247,176,43,.22);
  background:rgba(247,176,43,.08);
  color:rgba(247,176,43,.95);
  font-weight:900;
}
.price{font-weight:950;font-size:1.15rem}
.card h3{margin:10px 0 6px;font-weight:950}
.card p{margin:0 0 12px;color:var(--muted);line-height:1.35}
.card__bottom{
  margin-top:auto;
  display:flex;justify-content:space-between;align-items:center;
  gap:10px;
}
.meta{font-size:.95rem;color:rgba(242,242,243,.78)}
.sep{opacity:.35}

.prodImg{
  width:100%;
  height:160px;
  object-fit:cover;
  border-radius:16px;
  margin-top:10px;
  border:1px solid rgba(255,255,255,.08);
}

/* Drawer (Cart) */
.drawer{position:fixed;inset:0;z-index:80;display:none}
.drawer.open{display:block}
.drawer__backdrop{
  position:absolute;inset:0;
  background:rgba(0,0,0,.6);
  backdrop-filter:blur(6px);
}
.drawer__panel{
  position:absolute;top:0;left:0;height:100%;
  width:min(420px,100%);
  background:rgba(14,15,20,.95);
  border-right:1px solid var(--stroke);
  box-shadow:var(--shadow);
  display:flex;flex-direction:column;
}
.drawer__header{
  padding:14px;
  display:flex;justify-content:space-between;align-items:center;
  border-bottom:1px solid var(--stroke);
}
.drawer__title{font-weight:950;font-size:1.2rem}
.drawer__body{
  padding:14px;
  overflow:auto;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.drawer__footer{
  border-top:1px solid var(--stroke);
  padding:14px;
  display:flex;flex-direction:column;gap:10px;
}

.cartItem{
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.03);
  border-radius:16px;
  padding:12px;
  display:flex;justify-content:space-between;gap:10px;
}
.cartItem__name{font-weight:950}
.cartItem__meta{font-size:.9rem;color:var(--muted)}
.stepper{
  display:flex;
  border:1px solid var(--stroke);
  border-radius:12px;
  overflow:hidden;
}
.stepper button{
  border:none;
  background:rgba(255,255,255,.05);
  color:#fff;
  padding:6px 10px;
  cursor:pointer;
}
.stepper span{
  padding:6px 10px;
  min-width:30px;
  text-align:center;
}

/* Forms / Admin */
.inp{
  padding:10px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.03);
  color:#fff;
  outline:none;
}
.inp::placeholder{color:rgba(255,255,255,.4)}

/* Footer */
.footer{
  border-top:1px solid var(--stroke);
  padding:18px 0;
  background:rgba(0,0,0,.18);
}
.footer__inner{
  display:flex;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}
.footer__links{display:flex;gap:14px}
.footer__links a:hover{text-decoration:underline}

/* Responsive */
@media (max-width:980px){
  .hero__inner{grid-template-columns:1fr}
  .grid{grid-template-columns:repeat(2,1fr)}
  .nav{display:none}
}
@media (max-width:560px){
  .grid{grid-template-columns:1fr}
  .brand__tag{display:none}
}

/* ===== LOCKED PACKS (NEW) ===== */
.card.is-locked{
  position:relative;
  opacity:.92;
}

.card.is-locked::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:var(--radius);
  background:rgba(0,0,0,.35);
  backdrop-filter: blur(2px);
  pointer-events:none;
}

.lockBadge{
  position:absolute;
  top:12px;
  left:12px;
  z-index:5;
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(0,0,0,.45);
  color:rgba(242,242,243,.92);
  font-weight:900;
}

.card.is-locked .btn--primary{
  opacity:.55;
  pointer-events:none;
}

