@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=Space+Mono:wght@400;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange: #ff6b35;
  --gold:   #ffb347;
  --blue:   #4a9eff;
  --purple: #c084fc;
  --green:  #4ade80;
  --bg:     #08080f;
  --card:   #0e0e1a;
  --border: #1e1e2e;
  --text:   #c8c8e0;
  --muted:  #6a6a8a;
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: #0a0a0f; }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 2px; }

body {
  background: var(--bg);
  color: white;
  font-family: 'Syne', sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp   { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn   { from { opacity:0; } to { opacity:1; } }
@keyframes float    { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-6px); } }
@keyframes glow     { 0%,100% { text-shadow:0 0 20px #ff6b3560; } 50% { text-shadow:0 0 50px #ff6b35, 0 0 80px #ffb34740; } }
@keyframes eq1      { 0%,100% { transform:scaleY(0.3); } 50% { transform:scaleY(1); } }
@keyframes eq2      { 0%,100% { transform:scaleY(1);   } 50% { transform:scaleY(0.3); } }
@keyframes eq3      { 0%,100% { transform:scaleY(0.6); } 50% { transform:scaleY(1); } }
@keyframes slideUp  { from { transform:translateY(100%); opacity:0; } to { transform:translateY(0); opacity:1; } }
@keyframes pulseRing { 0% { box-shadow:0 0 0 0 #ff6b3560; } 70% { box-shadow:0 0 0 10px transparent; } 100% { box-shadow:0 0 0 0 transparent; } }

/* ── NAVBAR ── */
#navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 28px;
  border-bottom: 1px solid #1a1a2a;
  position: sticky;
  top: 0;
  background: #08080fee;
  backdrop-filter: blur(16px);
  z-index: 100;
  flex-wrap: wrap;
  gap: 10px;
}
.logo { display:flex; align-items:center; gap:10px; cursor:pointer; background:none; border:none; }
.logo-icon { font-size:22px; animation: float 3s ease-in-out infinite; display:inline-block; }
.logo-name { font-size:17px; font-weight:800; background:linear-gradient(90deg,var(--orange),var(--gold)); -webkit-background-clip:text; -webkit-text-fill-color:transparent; }
.logo-sub  { font-size:9px; color:#3a3a4a; font-family:'Space Mono',monospace; letter-spacing:2px; }

.nav-tabs { display:flex; gap:2px; background:#0e0e1a; border-radius:10px; padding:3px; flex-wrap:wrap; }
.nav-btn  { padding:8px 12px; border-radius:7px; border:none; background:transparent; color:var(--muted); font-weight:700; font-size:11px; cursor:pointer; font-family:'Syne',sans-serif; transition:all 0.2s; }
.nav-btn:hover { color:white; }
.nav-btn.active { background:var(--orange); color:white; }

.nav-right { display:flex; align-items:center; gap:8px; }
.tiktok-btn { width:34px; height:34px; background:#12121e; border:1.5px solid #2a2a3a; border-radius:8px; display:flex; align-items:center; justify-content:center; font-size:16px; text-decoration:none; }
.cart-btn { display:flex; align-items:center; gap:6px; padding:8px 14px; background:#12121e; border:1.5px solid #2a2a3a; border-radius:10px; color:var(--muted); font-weight:700; font-size:12px; cursor:pointer; font-family:'Syne',sans-serif; transition:all 0.2s; }
.cart-btn.has-items { background:#ff6b3520; border-color:var(--orange); color:var(--orange); }
.cart-count { background:var(--orange); color:white; border-radius:50%; width:17px; height:17px; display:flex; align-items:center; justify-content:center; font-size:10px; font-weight:800; }

/* ── PAGES ── */
.page { display:none; animation: fadeUp 0.4s ease; }
.page.active { display:block; }

/* ── SECTION HEADER ── */
.section-tag   { color:var(--orange); font-family:'Space Mono',monospace; font-size:11px; letter-spacing:3px; font-weight:700; margin-bottom:10px; }
.section-title { font-size:clamp(26px,4vw,40px); font-weight:800; line-height:1.15; margin-bottom:8px; }
.section-title span { background:linear-gradient(90deg,var(--orange),var(--gold)); -webkit-background-clip:text; -webkit-text-fill-color:transparent; }
.section-sub   { color:var(--muted); font-size:14px; margin-bottom:36px; }

/* ── HERO ── */
#hero { text-align:center; padding:88px 32px 68px; position:relative; overflow:hidden; }
#hero::before { content:''; position:absolute; inset:0; background:radial-gradient(ellipse 80% 50% at 50% 0%, #ff6b3512 0%, transparent 70%); pointer-events:none; }
.hero-label { color:var(--orange); font-family:'Space Mono',monospace; font-size:11px; letter-spacing:4px; font-weight:700; margin-bottom:16px; }
.hero-title { font-size:clamp(30px,5.5vw,64px); font-weight:800; line-height:1.1; margin-bottom:18px; animation: glow 3s ease-in-out infinite; }
.hero-title span { background:linear-gradient(90deg,var(--orange),var(--gold)); -webkit-background-clip:text; -webkit-text-fill-color:transparent; }
.hero-sub { color:var(--muted); font-size:16px; max-width:480px; margin:0 auto 32px; line-height:1.6; }
.hero-btns { display:flex; gap:12px; justify-content:center; flex-wrap:wrap; }
.btn-primary { padding:14px 30px; background:linear-gradient(90deg,var(--orange),var(--gold)); border:none; border-radius:12px; color:white; font-size:15px; font-weight:800; cursor:pointer; font-family:'Syne',sans-serif; box-shadow:0 4px 24px #ff6b3540; transition:all 0.2s; }
.btn-primary:hover { transform:translateY(-2px); box-shadow:0 12px 40px #ff6b3560; }
.btn-secondary { padding:14px 30px; background:transparent; border:1.5px solid #2a2a3a; border-radius:12px; color:#8a8aaa; font-size:15px; font-weight:800; cursor:pointer; font-family:'Syne',sans-serif; transition:all 0.2s; }
.btn-secondary:hover { background:#1e1e2e; color:white; }
.hero-stats { display:flex; justify-content:center; gap:36px; margin-top:52px; flex-wrap:wrap; }
.stat-num { font-size:24px; font-weight:800; color:var(--orange); font-family:'Space Mono',monospace; }
.stat-label { font-size:12px; color:var(--muted); margin-top:4px; }

/* ── GRID CARDS ── */
.grid-5 { display:grid; grid-template-columns:repeat(auto-fit,minmax(160px,1fr)); gap:12px; }
.grid-3 { display:grid; grid-template-columns:repeat(auto-fit,minmax(270px,1fr)); gap:18px; }
.grid-2 { display:grid; grid-template-columns:repeat(auto-fill,minmax(310px,1fr)); gap:18px; }
.grid-drums { display:grid; grid-template-columns:repeat(auto-fill,minmax(280px,1fr)); gap:16px; }
.grid-samples { display:grid; grid-template-columns:repeat(auto-fill,minmax(340px,1fr)); gap:14px; }
.grid-merch { display:grid; grid-template-columns:repeat(auto-fill,minmax(340px,1fr)); gap:16px; }
.grid-testi { display:grid; grid-template-columns:repeat(auto-fill,minmax(270px,1fr)); gap:14px; }

.card {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius:16px;
  padding:20px;
  transition: all 0.25s;
  position:relative;
}
.card:hover { border-color:var(--orange); transform:translateY(-4px); }
.card-cat { border-radius:14px; padding:20px 14px; text-align:center; cursor:pointer; border:1.5px solid var(--border); background:var(--card); transition:all 0.2s; }
.card-cat:hover { border-color:var(--orange); transform:translateY(-4px); }
.card-cat-icon { font-size:32px; margin-bottom:8px; }
.card-cat-name { font-size:13px; font-weight:800; color:white; margin-bottom:3px; }

/* ── PLAN CARDS ── */
.plan-card { background:var(--card); border:1.5px solid var(--border); border-radius:16px; padding:26px 22px; transition:all 0.25s; position:relative; }
.plan-card:hover { transform:translateY(-6px); }
.plan-card.popular { border:2px solid var(--orange); }
.plan-badge { position:absolute; top:-13px; left:50%; transform:translateX(-50%); background:linear-gradient(90deg,var(--orange),var(--gold)); padding:3px 14px; border-radius:100px; font-size:10px; font-weight:800; color:white; font-family:'Space Mono',monospace; white-space:nowrap; }
.plan-name  { font-size:11px; font-family:'Space Mono',monospace; font-weight:700; letter-spacing:2px; margin-bottom:4px; }
.plan-desc  { font-size:12px; color:var(--muted); margin-bottom:12px; }
.plan-price { font-size:28px; font-weight:800; margin-bottom:16px; }
.plan-feature { font-size:12px; color:var(--text); margin-bottom:6px; }
.plan-locked  { font-size:12px; color:#3a3a4a; margin-bottom:6px; }
.plan-file { background:#12121e; border-radius:8px; padding:9px 12px; margin-bottom:14px; border:1px solid #2a2a3a; font-size:10px; color:var(--muted); font-family:'Space Mono',monospace; }

/* ── WAVEFORM ── */
.waveform { display:flex; align-items:flex-end; gap:2px; height:28px; margin-bottom:10px; }
.wave-bar { width:3px; border-radius:2px; background:#2a2a3a; transform-origin:bottom; transition:background-color 0.3s; }
.wave-bar.active.eq1 { animation: eq1 0.4s ease-in-out infinite; }
.wave-bar.active.eq2 { animation: eq2 0.5s ease-in-out infinite; }
.wave-bar.active.eq3 { animation: eq3 0.45s ease-in-out infinite; }

/* ── BEAT CARD ── */
.beat-play { width:32px; height:32px; border-radius:50%; border:none; color:white; font-size:11px; cursor:pointer; display:flex; align-items:center; justify-content:center; flex-shrink:0; transition:all 0.2s; background:#1e1e2e; }
.beat-title { font-size:14px; font-weight:800; }
.beat-meta  { display:flex; gap:7px; margin-top:2px; font-family:'Space Mono',monospace; font-size:10px; }
.license-grid { display:grid; grid-template-columns:1fr 1fr; gap:6px; margin:10px 0; }
.license-btn { padding:8px; border-radius:8px; border:1.5px solid #2a2a3a; background:transparent; cursor:pointer; text-align:left; transition:all 0.15s; font-family:'Syne',sans-serif; position:relative; }
.license-btn.selected { border-width:2px; }
.license-popular { position:absolute; top:-7px; right:5px; color:white; font-size:8px; font-weight:800; padding:1px 5px; border-radius:100px; }
.license-name  { font-size:10px; font-weight:800; }
.license-price { font-size:11px; font-weight:800; font-family:'Space Mono',monospace; }
.beat-perks { background:#0a0a0f; border-radius:7px; padding:7px 10px; margin-bottom:10px; font-size:10px; color:#8a8aaa; line-height:1.7; }
.hot-badge { position:absolute; top:14px; right:14px; background:var(--orange); color:white; font-size:9px; font-weight:800; padding:2px 8px; border-radius:100px; font-family:'Space Mono',monospace; }
.bundle-badge { background:var(--gold); }

/* ── FILTERS ── */
.filter-row { display:flex; gap:8px; flex-wrap:wrap; margin-bottom:24px; }
.filter-btn { padding:6px 14px; border-radius:100px; border:1.5px solid #2a2a3a; background:transparent; color:var(--muted); font-size:12px; font-weight:700; cursor:pointer; font-family:'Syne',sans-serif; transition:all 0.2s; }
.filter-btn:hover { border-color:var(--orange); color:var(--orange); }
.filter-btn.active { border:2px solid var(--orange); background:#ff6b3520; color:var(--orange); }

/* ── DRUM KIT CARD ── */
.kit-title { font-size:15px; font-weight:800; margin-bottom:6px; }
.kit-tags  { display:flex; gap:8px; margin-bottom:12px; align-items:center; }
.tag { background:#1e1e2e; color:var(--muted); font-size:10px; font-weight:700; padding:2px 8px; border-radius:100px; font-family:'Space Mono',monospace; }
.kit-sounds { display:flex; flex-wrap:wrap; gap:5px; margin-bottom:14px; }
.kit-sound  { background:#12121e; border:1px solid #2a2a3a; border-radius:5px; font-size:10px; padding:3px 7px; color:#8a8aaa; font-family:'Space Mono',monospace; }

/* ── SAMPLE CARD ── */
.sample-card { background:var(--card); border:1.5px solid var(--border); border-radius:16px; padding:20px; display:flex; gap:14px; align-items:center; transition:all 0.25s; }
.sample-card:hover { border-color:var(--orange); transform:translateY(-4px); }
.sample-icon  { font-size:36px; flex-shrink:0; }
.sample-title { font-size:14px; font-weight:800; margin-bottom:5px; }
.sample-tags  { display:flex; gap:6px; flex-wrap:wrap; margin-bottom:8px; align-items:center; }
.tag-green { background:#4ade8020; color:var(--green); font-size:9px; font-weight:700; padding:2px 7px; border-radius:100px; }

/* ── MERCH ── */
.merch-img { width:68px; height:68px; border-radius:12px; display:flex; align-items:center; justify-content:center; font-size:34px; flex-shrink:0; }
.merch-type  { font-size:10px; font-family:'Space Mono',monospace; font-weight:700; margin-bottom:3px; }
.merch-title { font-size:13px; font-weight:800; margin-bottom:9px; }
.size-row   { display:flex; gap:4px; flex-wrap:wrap; margin-bottom:10px; }
.size-label { font-size:9px; color:var(--muted); font-family:'Space Mono',monospace; margin-bottom:5px; }
.size-btn   { padding:3px 8px; border-radius:5px; border:1.5px solid #2a2a3a; background:transparent; color:var(--muted); font-size:11px; font-weight:700; cursor:pointer; font-family:'Space Mono',monospace; transition:all 0.15s; }
.size-btn.selected { border-width:2px; }

/* ── CARD FOOTER ── */
.card-footer { display:flex; align-items:center; justify-content:space-between; }
.price { font-size:20px; font-weight:800; font-family:'Space Mono',monospace; }
.btn-buy { padding:9px 18px; border:none; border-radius:9px; color:white; font-size:12px; font-weight:800; cursor:pointer; font-family:'Syne',sans-serif; transition:all 0.2s; }
.btn-buy.added { background:linear-gradient(90deg,#22c55e,#16a34a); }
.btn-buy-full { width:100%; padding:11px; border:none; border-radius:9px; color:white; font-size:13px; font-weight:800; cursor:pointer; font-family:'Syne',sans-serif; transition:all 0.2s; }
.btn-buy-full.added { background:linear-gradient(90deg,#22c55e,#16a34a); }

/* ── TESTIMONIALS ── */
.testi-card { background:var(--card); border:1px solid var(--border); border-radius:14px; padding:18px; }
.stars { color:var(--gold); font-size:14px; }
.testi-text { font-size:13px; color:var(--text); line-height:1.6; margin:8px 0 12px; }
.testi-avatar { width:30px; height:30px; border-radius:50%; background:linear-gradient(135deg,var(--orange),var(--gold)); display:flex; align-items:center; justify-content:center; font-size:13px; font-weight:800; }
.testi-name { font-size:12px; font-weight:700; }
.testi-sub  { font-size:11px; color:var(--muted); }

/* ── NEWSLETTER ── */
.newsletter-section { padding:56px 32px; text-align:center; }
.newsletter-row { display:flex; gap:10px; justify-content:center; max-width:420px; margin:0 auto; flex-wrap:wrap; }
.newsletter-input { flex:1; min-width:200px; padding:12px 16px; background:#0e0e1a; border:1.5px solid #2a2a3a; border-radius:10px; font-size:14px; color:white; font-family:'Syne',sans-serif; outline:none; transition:border-color 0.2s; }
.newsletter-input:focus { border-color:var(--orange); }

/* ── FAQ ── */
.faq-item { background:var(--card); border-radius:12px; border:1px solid var(--border); overflow:hidden; cursor:pointer; transition:border-color 0.2s; margin-bottom:8px; }
.faq-item:hover { border-color:#ff6b3540; }
.faq-q { padding:16px 18px; display:flex; justify-content:space-between; align-items:center; gap:10px; }
.faq-q span:first-child { font-size:13px; font-weight:700; line-height:1.4; }
.faq-icon { color:var(--orange); font-size:18px; flex-shrink:0; transition:transform 0.2s; display:inline-block; }
.faq-icon.open { transform:rotate(45deg); }
.faq-a { padding:0 18px 16px; padding-top:12px; font-size:13px; color:#8a8aaa; line-height:1.7; border-top:1px solid var(--border); display:none; }
.faq-a.open { display:block; }

/* ── CONTACT FORM ── */
.form-grid { display:grid; grid-template-columns:1fr 1fr; gap:10px; }
.form-label { font-size:10px; color:var(--muted); font-family:'Space Mono',monospace; letter-spacing:1px; display:block; margin-bottom:5px; }
.form-input, .form-textarea { width:100%; padding:12px 16px; background:#12121e; border:1.5px solid #2a2a3a; border-radius:8px; font-size:14px; color:white; font-family:'Syne',sans-serif; outline:none; transition:border-color 0.2s; margin-bottom:12px; }
.form-input:focus, .form-textarea:focus { border-color:var(--orange); }
.form-textarea { resize:vertical; }
.btn-submit { width:100%; padding:13px; background:linear-gradient(90deg,var(--orange),var(--gold)); border:none; border-radius:10px; color:white; font-size:14px; font-weight:800; cursor:pointer; font-family:'Syne',sans-serif; }

/* ── CART DRAWER ── */
#cart-drawer { position:fixed; top:0; right:-360px; bottom:0; width:340px; background:var(--card); border-left:1px solid var(--border); z-index:200; display:flex; flex-direction:column; transition:right 0.3s ease; }
#cart-drawer.open { right:0; }
.cart-header { padding:18px 24px; border-bottom:1px solid var(--border); display:flex; justify-content:space-between; align-items:center; }
.cart-items  { flex:1; overflow-y:auto; padding:16px 24px; }
.cart-item   { display:flex; justify-content:space-between; align-items:flex-start; padding:12px 0; border-bottom:1px solid #1a1a2a; gap:8px; }
.cart-item-title { font-size:13px; font-weight:700; line-height:1.3; }
.cart-item-sub   { font-size:11px; color:var(--muted); margin-top:2px; }
.cart-item-price { color:var(--orange); font-weight:800; font-family:'Space Mono',monospace; font-size:13px; }
.cart-remove { background:none; border:none; color:#4a4a5a; cursor:pointer; font-size:14px; }
.cart-footer { padding:20px 24px; border-top:1px solid var(--border); }
.cart-total  { display:flex; justify-content:space-between; margin-bottom:16px; font-weight:700; }
.cart-total-price { font-size:20px; font-weight:800; color:var(--orange); font-family:'Space Mono',monospace; }
.pay-btn { width:100%; padding:12px 16px; display:flex; align-items:center; gap:12px; background:#12121e; border:1.5px solid #2a2a3a; border-radius:10px; color:white; font-size:13px; font-weight:700; cursor:pointer; font-family:'Syne',sans-serif; transition:all 0.2s; margin-bottom:8px; }
.pay-btn:hover { border-color:var(--orange); background:#ff6b3510; }
.pay-btn-icon { font-size:20px; }
.pay-btn-sub  { font-size:10px; color:var(--muted); }
.pay-disabled { opacity:0.4; pointer-events:none; border-style:dashed; }
.pay-secure { font-size:10px; color:#3a3a4a; text-align:center; font-family:'Space Mono',monospace; margin-top:8px; }
.cart-empty { text-align:center; color:#4a4a5a; margin-top:60px; }
.cart-empty-icon { font-size:48px; margin-bottom:12px; }

/* ── MODAL ── */
.modal-overlay { position:fixed; inset:0; background:#000000cc; z-index:500; display:none; align-items:center; justify-content:center; animation:fadeIn 0.2s; }
.modal-overlay.open { display:flex; }
.modal-box { background:var(--card); border-radius:20px; border:1px solid var(--orange); padding:36px; max-width:400px; width:90%; text-align:center; }
.modal-title { font-size:19px; font-weight:800; margin-bottom:8px; }
.modal-sub   { color:var(--muted); font-size:13px; margin-bottom:18px; }
.modal-cancel { margin-top:12px; background:none; border:none; color:var(--muted); cursor:pointer; font-size:13px; font-family:'Syne',sans-serif; }

/* ── COOKIE BANNER ── */
#cookie-banner { position:fixed; bottom:0; left:0; right:0; background:var(--card); border-top:1px solid #ff6b3530; padding:16px 28px; display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:12px; z-index:300; animation:slideUp 0.4s ease; }
#cookie-banner.hidden { display:none; }
.cookie-text  { flex:1; min-width:240px; }
.cookie-title { font-size:13px; font-weight:700; margin-bottom:4px; }
.cookie-sub   { font-size:12px; color:var(--muted); line-height:1.5; }
.cookie-btns  { display:flex; gap:10px; }
.btn-refuse   { padding:9px 18px; background:transparent; border:1.5px solid #2a2a3a; border-radius:8px; color:var(--muted); font-size:13px; font-weight:700; cursor:pointer; font-family:'Syne',sans-serif; }
.btn-accept   { padding:9px 18px; background:linear-gradient(90deg,var(--orange),var(--gold)); border:none; border-radius:8px; color:white; font-size:13px; font-weight:700; cursor:pointer; font-family:'Syne',sans-serif; }

/* ── FOOTER ── */
footer { border-top:1px solid #1a1a2a; padding:36px 32px; }
.footer-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(170px,1fr)); gap:28px; margin-bottom:28px; }
.footer-heading { font-size:11px; font-weight:800; color:white; margin-bottom:10px; font-family:'Space Mono',monospace; letter-spacing:1px; }
.footer-link { display:block; background:none; border:none; color:var(--muted); font-size:12px; cursor:pointer; margin-bottom:7px; font-family:'Syne',sans-serif; text-align:left; transition:color 0.2s; padding:0; text-decoration:none; }
.footer-link:hover { color:var(--orange); }
.footer-bottom { border-top:1px solid #1a1a2a; padding-top:16px; display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:10px; }
.footer-copy { color:#3a3a4a; font-size:11px; font-family:'Space Mono',monospace; }
.footer-legal { display:flex; gap:14px; }

/* ── LEGAL PAGES ── */
.legal-section { margin-bottom:20px; }
.legal-title { font-size:14px; font-weight:800; color:var(--orange); margin-bottom:7px; }
.legal-text  { font-size:13px; color:#8a8aaa; line-height:1.8; white-space:pre-line; }
.legal-date  { font-size:11px; color:#4a4a5a; font-family:'Space Mono',monospace; margin-top:28px; border-top:1px solid var(--border); padding-top:14px; }

/* ── ABOUT ── */
.about-avatar { width:72px; height:72px; border-radius:50%; background:linear-gradient(135deg,var(--orange),var(--gold)); display:flex; align-items:center; justify-content:center; font-size:32px; flex-shrink:0; }
.about-links  { display:flex; gap:10px; margin-top:20px; flex-wrap:wrap; }
.about-link   { display:flex; align-items:center; gap:7px; padding:9px 16px; background:#12121e; border:1.5px solid #2a2a3a; border-radius:10px; color:white; font-size:12px; font-weight:700; text-decoration:none; }

/* ── COMPAT BAR ── */
.compat-bar { background:var(--card); border-radius:14px; border:1px solid var(--border); padding:22px 28px; display:flex; gap:24px; flex-wrap:wrap; justify-content:center; }
.compat-item { text-align:center; }
.compat-icon { font-size:24px; margin-bottom:4px; }
.compat-name { font-size:12px; font-weight:700; }
.compat-sub  { font-size:10px; color:var(--muted); margin-top:2px; }

/* ── CONFIRM ── */
.confirm-box { text-align:center; padding:16px 0; }
.confirm-icon { font-size:48px; margin-bottom:12px; }
.confirm-title { font-size:18px; font-weight:800; margin-bottom:6px; }
.confirm-sub   { color:var(--muted); font-size:13px; }

/* ── MISC ── */
.page-wrap { max-width:960px; margin:0 auto; padding:48px 32px; }
.page-wrap-wide { max-width:1060px; margin:0 auto; padding:48px 32px; }
.page-wrap-narrow { max-width:680px; margin:0 auto; padding:48px 32px; }
.box { background:var(--card); border-radius:16px; border:1px solid var(--border); padding:28px; margin-bottom:16px; }
.testi-bg { background:#0a0a0f; border-top:1px solid var(--border); border-bottom:1px solid var(--border); padding:56px 32px; }
.info-bar { background:var(--card); border-radius:12px; border:1px solid var(--border); padding:16px 22px; display:flex; gap:20px; flex-wrap:wrap; justify-content:center; margin-top:24px; }
.info-item { text-align:center; }
.btn-close { background:none; border:none; color:var(--muted); font-size:18px; cursor:pointer; }
.text-orange { color:var(--orange); }
.text-muted  { color:var(--muted); }
.text-mono   { font-family:'Space Mono',monospace; }
.fw800 { font-weight:800; }
.mt8 { margin-top:8px; }
.mb16 { margin-bottom:16px; }
.flex-center { display:flex; align-items:center; gap:10px; }
.gap-link { display:flex; gap:14px; }
.section-cta-box { margin-top:28px; text-align:center; padding:22px; background:var(--card); border-radius:12px; border:1px solid var(--border); }

.site-logo {
  height: 80px;
  width: auto;
  object-fit: contain;
}

.footer-credit {
  color: #ff4500;
  font-size: 0.75rem;
  margin-top: 6px;
  opacity: 0.85;
  letter-spacing: 0.05em;
}

@media(max-width:600px) {
  #navbar { padding:10px 16px; }
  .hero-title { font-size:32px; }
  #hero { padding:60px 20px 48px; }
  .page-wrap, .page-wrap-wide, .page-wrap-narrow { padding:32px 20px; }
  .form-grid { grid-template-columns:1fr; }
}

/* ── PRODUITS ──────────────────────────────────────────── */
.produits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.produit-card {
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #1e1e2e;
  transition: border-color .2s;
}
.produit-card:hover {
  border-color: #f5a623;
}
.produit-img {
  width: 100%;
  display: block;
  aspect-ratio: 1/1;
  object-fit: cover;
}
.produit-info {
  padding: 16px;
}
.produit-nom {
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.produit-prix {
  font-size: 18px;
  font-weight: 800;
  color: #f5a623;
  margin-bottom: 14px;
}
.produit-btn {
  width: 100%;
  background: #f5a623;
  color: #000;
  border: none;
  border-radius: 8px;
  padding: 10px 0;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  letter-spacing: .08em;
  transition: background .2s;
}
.produit-btn:hover {
  background: #d4891a;
}
@media(max-width:700px) {
  .produits-grid { grid-template-columns: 1fr; }
}

/* ── DASHBOARD NAV BUTTON ──────────────────────────── */
.nav-btn-dashboard {
  background: linear-gradient(135deg, #0891B2, #1E40AF) !important;
  color: #fff !important;
  border: 1px solid rgba(8, 145, 178, 0.5) !important;
  border-radius: 8px !important;
  padding: 6px 16px !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 0 12px rgba(8, 145, 178, 0.3);
  animation: dashboardGlow 2s ease-in-out infinite alternate;
}
.nav-btn-dashboard:hover {
  background: linear-gradient(135deg, #06B6D4, #2563EB) !important;
  box-shadow: 0 0 20px rgba(8, 145, 178, 0.6) !important;
  transform: scale(1.05);
}
@keyframes dashboardGlow {
  from { box-shadow: 0 0 8px rgba(8, 145, 178, 0.3); }
  to { box-shadow: 0 0 18px rgba(8, 145, 178, 0.6); }
}

/* ── TIKOMES NAV BUTTON ──────────────────────────── */
.nav-btn-tikomes {
  background: linear-gradient(135deg, #FFB628, #E89520) !important;
  color: #1A0F0A !important;
  border: 1px solid rgba(255, 182, 40, 0.5) !important;
  border-radius: 8px !important;
  padding: 6px 16px !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 0 12px rgba(255, 182, 40, 0.3);
  animation: tikomesGlow 2s ease-in-out infinite alternate;
}
.nav-btn-tikomes:hover {
  background: linear-gradient(135deg, #FFCB5C, #FFB628) !important;
  box-shadow: 0 0 20px rgba(255, 182, 40, 0.6) !important;
  transform: scale(1.05);
}
@keyframes tikomesGlow {
  from { box-shadow: 0 0 8px rgba(255, 182, 40, 0.3); }
  to { box-shadow: 0 0 18px rgba(255, 182, 40, 0.6); }
}
