/* ============================================================
   PASCOM BEATZ — SHARED SITE HEADER
   ------------------------------------------------------------
   Same header (logo + Home + main nav) on every secondary page,
   so there is one single, consistent way to get back home across
   the whole site instead of ad-hoc "Back to Home" buttons.
   Colors match the Beatstore palette exactly.
   ============================================================ */
.pbh-header{
  position:sticky;top:0;left:0;right:0;z-index:2000;
  display:flex;align-items:center;justify-content:space-between;
  gap:12px;padding:10px 18px;
  background:rgba(2,6,23,.92);backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(255,255,255,.08);
  font-family:'Fredoka',Arial,sans-serif;
}
.pbh-logo{display:flex;align-items:center;gap:9px;text-decoration:none;flex-shrink:0}
.pbh-logo img{height:34px;width:auto;display:block}
.pbh-logo span{color:#e5e7eb;font-weight:700;font-size:15px;letter-spacing:.2px}
.pbh-logo span b{color:#22c55e;font-weight:700}

.pbh-nav{display:flex;align-items:center;gap:4px}
.pbh-nav a{
  color:#e5e7eb;text-decoration:none;font-weight:600;font-size:13.5px;
  padding:8px 14px;border-radius:999px;transition:background .15s ease,color .15s ease;
  white-space:nowrap;
}
.pbh-nav a:hover{background:rgba(34,197,94,.12);color:#22c55e}
.pbh-nav a.is-current{color:#22c55e;background:rgba(34,197,94,.1)}

.pbh-burger{
  display:none;width:40px;height:40px;border-radius:10px;border:1px solid rgba(255,255,255,.12);
  background:transparent;color:#e5e7eb;align-items:center;justify-content:center;cursor:pointer;flex-shrink:0;
}
.pbh-burger svg{width:18px;height:18px}

.pbh-mobile{
  position:fixed;top:0;right:0;bottom:0;width:min(78vw,300px);
  background:#070b18;border-left:1px solid rgba(255,255,255,.08);
  z-index:2500;transform:translateX(100%);transition:transform .25s ease;
  display:flex;flex-direction:column;padding:18px;gap:4px;
}
.pbh-mobile.is-open{transform:translateX(0)}
.pbh-mobile a{
  color:#e5e7eb;text-decoration:none;font-weight:600;font-size:15px;
  padding:13px 12px;border-radius:10px;border-bottom:1px solid rgba(255,255,255,.06);
}
.pbh-mobile a:hover{background:rgba(34,197,94,.1);color:#22c55e}
.pbh-mobile-close{
  align-self:flex-end;width:34px;height:34px;border-radius:8px;border:1px solid rgba(255,255,255,.12);
  background:transparent;color:#e5e7eb;cursor:pointer;margin-bottom:8px;
}
.pbh-overlay{
  position:fixed;inset:0;background:rgba(0,0,0,.55);z-index:2400;
  opacity:0;pointer-events:none;transition:opacity .25s ease;
}
.pbh-overlay.is-open{opacity:1;pointer-events:all}

@media (max-width:820px){
  .pbh-nav{display:none}
  .pbh-burger{display:flex}
}

/* ===== COOKIE CONSENT BANNER ===== */
.pbc-banner{
  position:fixed;left:14px;right:14px;bottom:14px;max-width:560px;margin:0 auto;
  background:#070b18;border:1px solid rgba(255,255,255,.1);border-radius:16px;
  padding:18px 20px;box-shadow:0 20px 60px rgba(0,0,0,.6);z-index:9998;
  font-family:'Fredoka',Arial,sans-serif;color:#e5e7eb;
  display:flex;flex-direction:column;gap:12px;
  transform:translateY(140%);transition:transform .35s ease;
}
.pbc-banner.is-visible{transform:translateY(0)}
.pbc-banner p{margin:0;font-size:13.5px;line-height:1.5;color:#9ca3af}
.pbc-banner p a{color:#22c55e;text-decoration:none;font-weight:600}
.pbc-actions{display:flex;gap:10px;flex-wrap:wrap}
.pbc-btn{
  border:none;border-radius:999px;padding:10px 18px;font-weight:700;font-size:13px;cursor:pointer;
  font-family:inherit;
}
.pbc-accept{background:linear-gradient(90deg,#16a34a,#22c55e);color:#020617}
.pbc-decline{background:transparent;border:1px solid rgba(255,255,255,.15);color:#e5e7eb}
.pbc-manage{background:transparent;border:1px solid rgba(255,255,255,.15);color:#9ca3af}
.pbc-prefs{display:flex;flex-direction:column;gap:8px;padding:4px 2px 2px;border-top:1px solid rgba(255,255,255,.08)}
.pbc-pref-row{display:flex;align-items:center;gap:9px;font-size:13px;color:#e5e7eb;cursor:pointer}
.pbc-pref-row input{width:16px;height:16px;accent-color:#22c55e;flex-shrink:0}
.pbc-pref-row input:disabled{opacity:.5;cursor:not-allowed}
