/* ============================================================
   KALYRA RP — BOUTIQUE · style.css
   Thème : Dark Gaming / Electric Blue / Inter
   ============================================================ */

/* ── RESET & BASE ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:         #020617;
  --bg-card:    #0f172a;
  --bg-card2:   #0a1120;
  --bg-hover:   #111827;
  --border:     #1e293b;
  --border-hov: #2563eb44;
  --blue:       #2563eb;
  --blue-light: #3b82f6;
  --blue-glow:  #2563eb33;
  --blue-glow2: #3b82f622;
  --text:       #f1f5f9;
  --text-muted: #94a3b8;
  --text-dim:   #64748b;
  --gold:       #f59e0b;
  --silver:     #94a3b8;
  --bronze:     #b45309;
  --green:      #22c55e;
  --red:        #ef4444;
  --radius:     0.75rem;
  --radius-sm:  0.5rem;
  --shadow:     0 4px 24px rgba(0,0,0,0.4);
  --shadow-blue:0 0 24px rgba(37,99,235,0.18);
  --font:       'Inter', system-ui, sans-serif;
  --transition: 0.2s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; }

/* ── SCROLLBAR ──────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-card); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 3px; }

/* ── NAVBAR ─────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(2, 6, 23, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.navbar.scrolled { background: rgba(2, 6, 23, 0.97); }

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}
.nav-logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 0 8px rgba(37, 99, 235, 0.7));
  transition: filter var(--transition), transform var(--transition);
}
.nav-logo:hover .nav-logo-img {
  filter: drop-shadow(0 0 14px rgba(59, 130, 246, 1));
  transform: scale(1.08);
}
.logo-text {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #fff;
}
.logo-rp {
  color: var(--blue-light);
  margin-left: 1px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0.25rem;
  margin-left: auto;
}
.nav-links a {
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover { color: var(--text); background: var(--bg-hover); }
.nav-links a.nav-active {
  color: var(--blue-light);
  background: var(--blue-glow2);
  font-weight: 600;
}

.nav-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  white-space: nowrap;
  padding: 0.3rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 100px;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
}
.dot.pulse { animation: dotPulse 2s infinite; }
@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.5); }
  50%       { box-shadow: 0 0 0 5px rgba(34,197,94,0); }
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text-muted);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-mobile-menu {
  display: none;
  border-top: 1px solid var(--border);
  padding: 0.75rem 1.5rem;
}
.nav-mobile-menu ul { list-style: none; }
.nav-mobile-menu li a {
  display: block;
  padding: 0.6rem 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.nav-mobile-menu li:last-child a { border-bottom: none; }
.nav-mobile-menu li a.active { color: var(--blue-light); }

@media (max-width: 900px) {
  .nav-links, .nav-status { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile-menu.open { display: block; }
}

/* ── SHOP HERO ──────────────────────────────────────────────── */
.shop-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 1.5rem 0;
  overflow: hidden;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37,99,235,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,99,235,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse at center top, rgba(37,99,235,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--blue-light);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.hero-title {
  font-family: 'Bebas Neue', var(--font);
  font-size: clamp(3.5rem, 8vw, 6rem);
  line-height: 0.95;
  color: #fff;
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}
.hero-accent {
  background: linear-gradient(135deg, var(--blue-light), #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

.hero-badges {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--blue-light);
  background: var(--blue-glow2);
  border: 1px solid var(--blue-glow);
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
}

.hero-stats {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(15,23,42,0.8);
  border: 1px solid var(--border);
  border-bottom: none;
  border-radius: 1rem 1rem 0 0;
  padding: 1.25rem 3rem;
  margin-top: auto;
  backdrop-filter: blur(8px);
}

.hstat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 2.5rem;
}
.hstat-num {
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.hstat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.25rem;
}
.hstat-sep {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ── NOTICE BAND ────────────────────────────────────────────── */
.notice-band {
  background: rgba(234,179,8,0.08);
  border-top: 1px solid rgba(234,179,8,0.2);
  border-bottom: 1px solid rgba(234,179,8,0.2);
  color: #fbbf24;
  text-align: center;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
}
.notice-icon { margin-right: 0.5rem; }
.notice-band strong { font-weight: 700; }

/* ── HOW IT WORKS ───────────────────────────────────────────── */
.how-it-works {
  background: linear-gradient(180deg, var(--bg-card2) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
  padding: 4rem 1.5rem;
}
.hiw-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--blue-light);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.hiw-title {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 2.5rem;
}
.hiw-steps {
  display: flex;
  align-items: center;
  gap: 0;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}
.hiw-step {
  flex: 1;
  min-width: 200px;
  max-width: 240px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  position: relative;
}
.hiw-step-num {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--blue-light);
  margin-bottom: 0.5rem;
}
.hiw-step-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}
.hiw-step h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.4rem;
}
.hiw-step p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.hiw-step strong { color: var(--text); }
.hiw-arrow {
  font-size: 1.5rem;
  color: var(--border);
  flex-shrink: 0;
}
.btn-hiw-discord {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #5865F2;
  color: #fff;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 700;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 16px rgba(88,101,242,0.35);
}
.btn-hiw-discord:hover {
  background: #4752c4;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(88,101,242,0.5);
}

/* ── MAIN SHOP LAYOUT ───────────────────────────────────────── */
.shop-main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 3rem 1.5rem 5rem;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 3rem;
  align-items: start;
}

/* ── SIDEBAR ────────────────────────────────────────────────── */
.shop-sidebar {
  position: sticky;
  top: 80px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sidebar-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--text-dim);
  text-transform: uppercase;
  padding: 0 0.5rem;
  margin-bottom: 0.25rem;
}

.sidebar-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.cat-btn {
  width: 100%;
  text-align: left;
  padding: 0.65rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  background: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font);
}
.cat-btn:hover {
  color: var(--text);
  background: var(--bg-card);
  border-color: var(--border);
}
.cat-btn.active {
  color: var(--blue-light);
  background: var(--blue-glow2);
  border-color: var(--blue-glow);
  font-weight: 600;
}

/* Payment Methods */
.sidebar-info {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
}
.si-title {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--text-dim);
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.payment-methods { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 0.75rem; }
.pay-method {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0.75rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.pay-method-icon { flex-shrink: 0; }
.pay-method-info {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.pay-method-name { font-size: 0.85rem; font-weight: 600; color: var(--text); }
.pay-method-sub  { font-size: 0.72rem; color: var(--text-muted); }
.pay-method-check { color: var(--green); font-size: 0.85rem; font-weight: 700; }
.pay-notice {
  font-size: 0.75rem;
  color: #fbbf24;
  background: rgba(234,179,8,0.06);
  border: 1px solid rgba(234,179,8,0.15);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.75rem;
}

/* Delivery block */
.sidebar-delivery {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
}
.delivery-icon { font-size: 1.75rem; margin-bottom: 0.5rem; }
.delivery-title { font-size: 0.9rem; font-weight: 700; color: #fff; margin-bottom: 0.4rem; }
.delivery-desc { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; margin-bottom: 1rem; }
.delivery-desc strong { color: var(--text); }

.btn-discord {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #5865F2;
  color: #fff;
  padding: 0.65rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 700;
  transition: background var(--transition), transform var(--transition);
  width: 100%;
}
.btn-discord:hover { background: #4752c4; transform: translateY(-1px); }

/* ── SECTION HEADER ─────────────────────────────────────────── */
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  margin-top: 3rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.section-header:first-child { margin-top: 0; }

.section-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--blue-light);
  background: var(--blue-glow2);
  border: 1px solid var(--blue-glow);
  padding: 0.25rem 0.65rem;
  border-radius: 100px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.section-title {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}

/* ── PRODUCTS GRID ──────────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-bottom: 0.5rem;
}

/* ── PRODUCT CARD ───────────────────────────────────────────── */
.product-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.product-card:hover {
  border-color: var(--blue-glow);
  transform: translateY(-4px);
  box-shadow: var(--shadow-blue);
}
.product-card.featured {
  border-color: var(--blue);
  box-shadow: 0 0 0 1px var(--blue), var(--shadow-blue);
}
.product-card.featured:hover {
  box-shadow: 0 0 0 1px var(--blue-light), 0 8px 32px rgba(37,99,235,0.3);
}

/* Ribbon */
.card-ribbon {
  position: absolute;
  top: 0.75rem; right: 0.75rem;
  background: var(--blue);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 0.2rem 0.55rem;
  border-radius: 100px;
  z-index: 2;
  text-transform: uppercase;
}
.card-ribbon.best {
  background: linear-gradient(135deg, #f59e0b, #ef4444);
}

/* Image area */
.card-img-wrap {
  position: relative;
  width: 100%;
  height: 180px;
  background: var(--bg-card2);
  overflow: hidden;
  flex-shrink: 0;
}
.product-card.small .card-img-wrap { height: 140px; }

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, opacity var(--transition);
  opacity: 0;
}
.card-img.loaded { opacity: 1; }
.product-card:hover .card-img { transform: scale(1.05); }

.card-img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(15,23,42,0.8), color-mix(in srgb, var(--ph-color, var(--blue)) 15%, var(--bg-card2)));
  transition: opacity var(--transition);
}
.card-img-wrap.no-img .card-img { display: none; }
.card-img-wrap:not(.no-img) .card-img.loaded + .card-img-placeholder { opacity: 0; }

.tier-bronze { --ph-color: #b45309; background: linear-gradient(135deg, #0a1120, #2a1200) !important; }
.tier-silver { --ph-color: #94a3b8; background: linear-gradient(135deg, #0a1120, #1a2030) !important; }
.tier-gold   { --ph-color: #f59e0b; background: linear-gradient(135deg, #0a1120, #2a1800) !important; }

.card-placeholder-icon { font-size: 3rem; filter: drop-shadow(0 0 12px rgba(255,255,255,0.3)); }
.product-card.small .card-placeholder-icon { font-size: 2.25rem; }

/* Card body */
.card-body {
  padding: 1.25rem 1.25rem 0.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.card-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.card-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
}
.product-card.small .card-name { font-size: 0.95rem; }

/* Tier badges */
.card-tier {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 0.2rem 0.5rem;
  border-radius: 100px;
  text-transform: uppercase;
  flex-shrink: 0;
}
.tier-bronze-badge { background: rgba(180,83,9,0.2); color: #fbbf24; border: 1px solid rgba(180,83,9,0.4); }
.tier-silver-badge { background: rgba(148,163,184,0.15); color: #cbd5e1; border: 1px solid rgba(148,163,184,0.3); }
.tier-gold-badge   { background: rgba(245,158,11,0.15); color: #fbbf24; border: 1px solid rgba(245,158,11,0.35); }

.card-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.card-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-top: 0.25rem;
}
.card-perks li {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.perk-check {
  color: var(--blue-light);
  font-weight: 700;
  flex-shrink: 0;
}

/* Card footer */
.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.25rem 1.1rem;
  border-top: 1px solid var(--border);
  gap: 0.75rem;
  margin-top: auto;
}

.card-price {
  display: flex;
  flex-direction: column;
}
.price-old {
  font-size: 0.78rem;
  color: var(--text-dim);
  text-decoration: line-through;
}
.price-amount {
  font-size: 1.3rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.product-card.small .price-amount { font-size: 1.1rem; }
.price-period {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 400;
}

.btn-buy {
  background: var(--blue);
  color: #fff;
  border: none;
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}
.btn-buy:hover {
  background: var(--blue-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(37,99,235,0.4);
}
.btn-buy.bought {
  background: var(--green);
  transform: none;
}

/* ── MODAL ──────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2,6,23,0.85);
  backdrop-filter: blur(8px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 24px 64px rgba(0,0,0,0.6), 0 0 0 1px rgba(37,99,235,0.1);
  animation: modalIn 0.3s ease;
}
@keyframes modalIn {
  from { transform: translateY(16px) scale(0.98); opacity: 0; }
  to   { transform: translateY(0) scale(1);      opacity: 1; }
}

.modal-close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text-muted);
  width: 32px; height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.8rem;
  display: grid;
  place-items: center;
  transition: color var(--transition), background var(--transition);
  z-index: 1;
}
.modal-close:hover { color: #fff; background: var(--border); }

.modal-header {
  text-align: center;
  padding: 2rem 2rem 1.25rem;
  border-bottom: 1px solid var(--border);
}
.modal-icon { font-size: 2.5rem; margin-bottom: 0.5rem; }
.modal-header h2 {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.25rem;
}
.modal-product-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue-light);
}
.modal-product-price {
  font-size: 1.6rem;
  font-weight: 900;
  color: #fff;
  margin-top: 0.25rem;
}

.modal-section {
  padding: 1.25rem 2rem;
  border-bottom: 1px solid var(--border);
}
.modal-section:last-child { border-bottom: none; }
.modal-section-title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}

/* Payment options in modal */
.modal-pay-options {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.modal-pay-opt {
  display: block;
  cursor: pointer;
}
.modal-pay-opt input { display: none; }
.modal-pay-inner {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition), background var(--transition);
}
.modal-pay-opt input:checked + .modal-pay-inner {
  border-color: var(--blue);
  background: var(--blue-glow2);
}
.modal-pay-opt:hover .modal-pay-inner { border-color: var(--blue-glow); }
.pay-opt-name { display: block; font-size: 0.9rem; font-weight: 700; color: #fff; }
.pay-opt-sub  { display: block; font-size: 0.75rem; color: var(--text-muted); }

/* Instructions */
.modal-instr-box {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.modal-instr-box p { font-size: 0.85rem; color: var(--text-muted); }
.modal-email {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--blue-light);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.85rem;
  font-family: monospace;
  user-select: all;
}
.modal-instr-note {
  font-size: 0.78rem !important;
  color: #fbbf24 !important;
  background: rgba(234,179,8,0.06);
  border: 1px solid rgba(234,179,8,0.15);
  border-radius: 6px;
  padding: 0.5rem 0.75rem;
}
.hidden { display: none !important; }

/* Discord block in modal */
.modal-discord-box {
  background: rgba(88,101,242,0.06);
  border: 1px solid rgba(88,101,242,0.2);
  border-radius: var(--radius-sm);
  padding: 1rem;
}
.modal-discord-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}
.modal-discord-text strong { color: var(--text); }
.modal-discord-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1rem;
}
.modal-discord-list li {
  font-size: 0.83rem;
  color: var(--text-muted);
}
.btn-modal-discord {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: #5865F2;
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 700;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  width: 100%;
  margin-bottom: 0.75rem;
  box-shadow: 0 4px 16px rgba(88,101,242,0.3);
}
.btn-modal-discord:hover {
  background: #4752c4;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(88,101,242,0.5);
}
.modal-delay {
  font-size: 0.75rem;
  color: var(--text-dim);
  text-align: center;
}

.modal-footer-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 0.78rem;
  color: var(--text-dim);
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-radius: 0 0 1rem 1rem;
}

/* ── FOOTER ─────────────────────────────────────────────────── */
.shop-footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.footer-logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(37, 99, 235, 0.6));
}
.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--text); }
.footer-pay-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.fpay {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  font-size: 0.8rem;
}
.footer-legal {
  font-size: 0.75rem;
  color: var(--text-dim);
}

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .shop-main { grid-template-columns: 230px 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  .shop-main {
    grid-template-columns: 1fr;
    padding: 1.5rem 1rem 3rem;
  }
  .shop-sidebar {
    position: static;
    top: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .sidebar-nav { grid-column: 1 / -1; flex-direction: row; flex-wrap: wrap; }
  .cat-btn { flex: 1; min-width: 120px; text-align: center; }
  .hero-stats {
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-radius: 0;
    border: none;
    border-top: 1px solid var(--border);
    background: var(--bg-card);
  }
  .hstat-sep { display: none; }
  .hstat { padding: 0 1rem; }
  .hiw-arrow { font-size: 1.2rem; }
  .products-grid { grid-template-columns: 1fr; }
  .shop-sidebar { grid-template-columns: 1fr; }
  .modal { margin: 0.5rem; max-height: 95vh; }
  .modal-section { padding: 1rem 1.25rem; }
  .modal-header { padding: 1.5rem 1.25rem 1rem; }
}
@media (max-width: 480px) {
  .hero-badges { flex-direction: column; align-items: center; }
  .hstat-num { font-size: 1.4rem; }
  .hiw-steps { flex-direction: column; align-items: stretch; }
  .hiw-arrow { display: none; }
  .hiw-step { max-width: 100%; }
}
