:root{
  --bg: #070404;
  --bg-2: #0c0606;
  --glow-deep: #6e0d14;
  --glow-mid: #9c1420;
  --red: #ff2436;
  --red-soft: #ff5b62;
  --card: #120909;
  --card-border: rgba(255,60,70,0.16);
  --text: #f6ece9;
  --text-dim: #a08a88;
  --text-faint: #5f4c4b;
  --ok: #5dff9a;
}

*{box-sizing:border-box; margin:0; padding:0;}
html,body{
  background: var(--bg);
  color: var(--text);
  font-family: 'Manrope', sans-serif;
  -webkit-font-smoothing:antialiased;
  min-height:100%;
}
body{
  min-height:100vh;
  min-height:100dvh;
  position:relative;
  display:flex;
  flex-direction:column;
}

a{ color: inherit; text-decoration: none; }
button, input, textarea, select{ font-family: inherit; }

.glow-bg{
  position:fixed;
  inset:0;
  z-index:0;
  background:
    radial-gradient(ellipse 60% 45% at 50% 28%, var(--glow-mid) 0%, rgba(110,13,20,0.55) 32%, rgba(7,4,4,0) 68%),
    radial-gradient(ellipse 90% 50% at 50% 100%, rgba(255,36,54,0.10) 0%, rgba(7,4,4,0) 60%),
    var(--bg);
  pointer-events:none;
}
.noise{
  position:fixed; inset:0; z-index:1; opacity:0.035; pointer-events:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.site-header{
  position:relative; z-index:10;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding: clamp(12px, 2.5vh, 24px) clamp(16px, 4vw, 40px);
  flex-shrink:0;
}
.brand{
  font-family:'Bebas Neue', sans-serif;
  font-size:22px;
  letter-spacing:6px;
  color: var(--text-dim);
}
.brand span{ color: var(--red-soft); }
.brand:hover{ color: var(--text); }

.nav-actions{
  display:flex;
  align-items:center;
  gap:10px;
}
.nav-btn{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-height:42px;
  padding:0 16px;
  border-radius:12px;
  border:1px solid rgba(255,90,98,0.28);
  background: rgba(255,36,54,0.04);
  color: var(--text);
  font-size:13px;
  font-weight:600;
  letter-spacing:0.3px;
  cursor:pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.15s ease;
}
.nav-btn:hover{ border-color: rgba(255,90,98,0.6); background: rgba(255,36,54,0.1); }
.nav-btn:active{ transform: scale(0.97); }
.nav-btn svg{ width:18px; height:18px; }
.cart-badge{
  position:absolute;
  top:-6px; right:-6px;
  min-width:20px; height:20px;
  padding:0 6px;
  border-radius:999px;
  background: var(--red);
  color:#2a0405;
  font-size:11px;
  font-weight:800;
  display:none;
  align-items:center;
  justify-content:center;
}
.cart-badge.show{ display:inline-flex; }

.page{
  position:relative;
  z-index:2;
  flex:1;
  width:100%;
  max-width:1100px;
  margin:0 auto;
  padding: 0 clamp(16px, 4vw, 40px) clamp(24px, 4vh, 48px);
}

.pill{
  display:inline-flex;
  padding: 11px 26px;
  border:1px solid rgba(255,90,98,0.35);
  border-radius:999px;
  font-size:13px;
  letter-spacing:0.5px;
  color: var(--text-dim);
  background: rgba(255,36,54,0.03);
}

.headline{
  font-family:'Bebas Neue', sans-serif;
  font-size: clamp(40px, min(12vw, 9vh), 120px);
  line-height: 0.92;
  letter-spacing: 4px;
  color: var(--text);
  text-shadow: 0 0 60px rgba(255,36,54,0.28);
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-height:46px;
  padding:0 22px;
  border-radius:12px;
  border:none;
  background: var(--red);
  color:#2a0405;
  font-weight:800;
  font-size:14px;
  letter-spacing:0.3px;
  cursor:pointer;
  transition: background 0.2s ease, transform 0.15s ease, opacity 0.2s;
}
.btn:hover{ background: var(--red-soft); }
.btn:active{ transform: scale(0.97); }
.btn:disabled{ opacity:0.5; cursor:not-allowed; }
.btn-ghost{
  background: transparent;
  border:1px solid rgba(255,90,98,0.35);
  color: var(--text);
}
.btn-ghost:hover{ background: rgba(255,36,54,0.1); border-color: rgba(255,90,98,0.6); }
.btn-danger{ background: #8a121c; color:#fff; }
.btn-danger:hover{ background: #a81824; }

.field{
  display:flex;
  flex-direction:column;
  gap:8px;
  margin-bottom:14px;
}
.field label{
  font-size:12px;
  letter-spacing:1px;
  text-transform:uppercase;
  color: var(--text-dim);
}
.field input, .field textarea, .field select{
  width:100%;
  padding:14px 16px;
  border-radius:12px;
  border:1px solid rgba(255,90,98,0.22);
  background: rgba(0,0,0,0.35);
  color: var(--text);
  font-size:15px;
  outline:none;
  transition: border-color 0.2s;
}
.field input:focus, .field textarea:focus, .field select:focus{
  border-color: rgba(255,90,98,0.55);
}
.field textarea{ min-height:110px; resize:vertical; }

.toast{
  position:fixed;
  left:50%;
  bottom:28px;
  transform: translateX(-50%) translateY(20px);
  z-index:100;
  padding:12px 20px;
  border-radius:12px;
  background: #1a0a0a;
  border:1px solid rgba(255,90,98,0.4);
  color: var(--text);
  font-size:14px;
  font-weight:600;
  opacity:0;
  pointer-events:none;
  transition: opacity 0.25s, transform 0.25s;
  box-shadow: 0 16px 40px rgba(0,0,0,0.45);
}
.toast.show{
  opacity:1;
  transform: translateX(-50%) translateY(0);
}

.qty-wrap{
  display:inline-flex;
  align-items:center;
  border:1px solid rgba(255,90,98,0.28);
  border-radius:12px;
  overflow:hidden;
  background: rgba(255,36,54,0.04);
}
.qty-wrap button{
  width:44px;
  height:46px;
  border:none;
  background:transparent;
  color: var(--text);
  font-size:18px;
  cursor:pointer;
}
.qty-wrap span{
  min-width:36px;
  text-align:center;
  font-weight:700;
}

.site-footer{
  position:relative; z-index:2;
  text-align:center;
  padding: 18px;
  color: var(--text-faint);
  font-size:13px;
  letter-spacing:1px;
}

.placeholder-art{
  width:100%;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  color: var(--red);
  opacity:0.85;
}
.placeholder-art svg{ width:42%; max-width:120px; height:auto; }

@media (max-width:640px){
  .brand{ letter-spacing:4px; font-size:18px; }
  .nav-btn span.label{ display:none; }
  .headline{ letter-spacing:2px; }
}
