@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Rajdhani:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* ═══════════════════════════════════════════
   HITMAN STORE — Premium Red Theme
   Glassmorphism · Micro-animations · Fancy
   ═══════════════════════════════════════════ */

:root {
  --red: #dc2626;
  --red-bright: #ef4444;
  --red-glow: #ff3333;
  --red-dark: #991b1b;
  --red-deeper: #7f1d1d;
  --red-subtle: rgba(220, 38, 38, 0.08);
  --red-glass: rgba(220, 38, 38, 0.12);
  --red-border: rgba(220, 38, 38, 0.25);

  --bg-body: #08080d;
  --bg-primary: #0a0a10;
  --bg-secondary: #101018;
  --bg-card: rgba(18, 18, 28, 0.75);
  --bg-card-solid: #12121c;
  --bg-card-hover: rgba(24, 24, 38, 0.85);

  --text-primary: #f5f5f7;
  --text-secondary: #a3a3b3;
  --text-muted: #636375;

  --border: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(220, 38, 38, 0.4);

  --gold: #fbbf24;
  --gold-glow: rgba(251, 191, 36, 0.5);

  --glass-blur: 16px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-card-hover: 0 16px 48px rgba(220, 38, 38, 0.15), 0 8px 24px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 40px rgba(220, 38, 38, 0.2);

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--red-dark) var(--bg-body);
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-body);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
  min-height: 100vh;
}

/* Custom scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-body); }
::-webkit-scrollbar-thumb { background: var(--red-dark); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--red); }

/* ═══════════════════════════════════════════
   BACKGROUND EFFECTS
   ═══════════════════════════════════════════ */

.store-bg {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  overflow: hidden;
}
.store-bg::before {
  content: '';
  position: absolute; top: -50%; left: -50%;
  width: 200%; height: 200%;
  background:
    radial-gradient(ellipse 800px 600px at 20% 10%, rgba(220, 38, 38, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse 600px 500px at 80% 30%, rgba(153, 27, 27, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse 900px 700px at 50% 80%, rgba(220, 38, 38, 0.04) 0%, transparent 55%);
  animation: bgDrift 25s ease-in-out infinite alternate;
}
@keyframes bgDrift {
  0% { transform: translate(0, 0) rotate(0deg); }
  100% { transform: translate(-3%, -2%) rotate(2deg); }
}

/* Floating particles */
.store-particles {
  position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden;
}
.particle {
  position: absolute;
  width: 3px; height: 3px;
  background: var(--red-bright);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat 8s infinite;
  box-shadow: 0 0 8px var(--red-glow);
}
@keyframes particleFloat {
  0% { opacity: 0; transform: translateY(100vh) scale(0); }
  15% { opacity: 0.6; }
  85% { opacity: 0.6; }
  100% { opacity: 0; transform: translateY(-20vh) scale(1.2); }
}

/* ═══════════════════════════════════════════
   SVG ICON SYSTEM
   ═══════════════════════════════════════════ */

.icon {
  width: 1em; height: 1em;
  vertical-align: -0.15em;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ═══════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════ */

.store-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0.85rem 2rem;
  background: rgba(8, 8, 13, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition-smooth);
}
.store-nav.scrolled {
  background: rgba(8, 8, 13, 0.95);
  box-shadow: 0 4px 30px rgba(220, 38, 38, 0.08);
}
.store-nav-inner {
  max-width: 1400px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.store-nav-logo {
  display: flex; align-items: center; gap: 0.75rem;
  text-decoration: none;
}
.store-nav-logo img {
  height: 38px; width: 38px; border-radius: 10px;
  box-shadow: 0 0 20px rgba(220, 38, 38, 0.3);
  transition: var(--transition-smooth);
}
.store-nav-logo:hover img {
  box-shadow: 0 0 30px rgba(220, 38, 38, 0.5);
  transform: scale(1.05);
}
.store-nav-logo .logo-text {
  font-family: 'Orbitron', monospace;
  font-weight: 900; font-size: 1.2rem;
  color: var(--red-bright);
  text-shadow: 0 0 20px rgba(220, 38, 38, 0.4);
}
.store-nav-logo .logo-text span { color: var(--text-primary); }

.store-nav-links {
  display: flex; align-items: center; gap: 1.5rem;
  list-style: none;
}
.store-nav-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600; font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: var(--transition-fast);
  position: relative;
  padding: 0.3rem 0;
}
.store-nav-links a::after {
  content: '';
  position: absolute; bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--red-bright), var(--red));
  transition: width 0.3s ease;
  border-radius: 1px;
}
.store-nav-links a:hover { color: var(--red-bright); }
.store-nav-links a:hover::after { width: 100%; }

.store-nav-badge {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 1rem; border-radius: var(--radius-sm);
  background: var(--red-glass);
  border: 1px solid var(--red-border);
  cursor: pointer;
  transition: var(--transition-smooth);
  font-family: 'Orbitron', monospace;
  font-size: 0.8rem; color: var(--red-bright);
  text-decoration: none;
}
.store-nav-badge:hover {
  background: rgba(220, 38, 38, 0.2);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.2);
}

/* Hamburger */
.store-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.store-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--text-primary);
  transition: var(--transition-smooth);
  border-radius: 1px;
}
.store-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.store-hamburger.active span:nth-child(2) { opacity: 0; }
.store-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ═══════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════ */

.store-hero {
  position: relative;
  padding: 10rem 2rem 5rem;
  text-align: center;
  overflow: hidden;
  z-index: 1;
}
.store-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 700px 500px at 50% 30%, rgba(220, 38, 38, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.45rem 1.2rem;
  border-radius: 999px;
  background: rgba(220, 38, 38, 0.1);
  border: 1px solid rgba(220, 38, 38, 0.3);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700; font-size: 0.8rem;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--red-bright);
  margin-bottom: 1.5rem;
  animation: badgePulse 2s ease-in-out infinite;
}
@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 15px rgba(220, 38, 38, 0.2); }
  50% { box-shadow: 0 0 30px rgba(220, 38, 38, 0.4); }
}

.store-hero h1 {
  font-family: 'Orbitron', monospace;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}
.store-hero h1 .red-gradient {
  background: linear-gradient(135deg, var(--red-bright), #ff7a7a, var(--red-bright));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3s linear infinite;
  text-shadow: none;
}
@keyframes shimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.store-hero-sub {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 550px;
  margin: 0 auto 1.5rem;
  line-height: 1.7;
}

/* Hero server logo */
.hero-logo-wrap {
  margin-bottom: 1.25rem;
}
.hero-server-logo {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  box-shadow: 0 0 40px rgba(220, 38, 38, 0.35), 0 0 80px rgba(220, 38, 38, 0.15);
  animation: logoPulse 3s ease-in-out infinite;
}
@keyframes logoPulse {
  0%, 100% { box-shadow: 0 0 40px rgba(220, 38, 38, 0.35), 0 0 80px rgba(220, 38, 38, 0.15); }
  50% { box-shadow: 0 0 60px rgba(220, 38, 38, 0.5), 0 0 120px rgba(220, 38, 38, 0.25); transform: scale(1.03); }
}

/* Hero stats row */
.hero-stats-row {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 0.6rem 1.5rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
  margin-top: 0.5rem;
}
.hero-stat {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.hero-stat-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
  animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-stat-text {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-secondary);
}
.hero-stat-divider {
  width: 1px;
  height: 16px;
  background: var(--border);
}


/* ═══════════════════════════════════════════
   CATEGORY TABS
   ═══════════════════════════════════════════ */

.store-tabs {
  position: relative; z-index: 1;
  display: flex; justify-content: center;
  gap: 0.5rem;
  padding: 0 2rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}
.store-tab {
  padding: 0.65rem 1.5rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700; font-size: 0.9rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-smooth);
}
.store-tab:hover {
  color: var(--red-bright);
  border-color: var(--red-border);
  background: var(--red-subtle);
}
.store-tab.active {
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border-color: var(--red);
  box-shadow: 0 4px 20px rgba(220, 38, 38, 0.35);
}

/* ═══════════════════════════════════════════
   CATEGORY HEADERS
   ═══════════════════════════════════════════ */

.store-category {
  position: relative; z-index: 1;
  max-width: 1400px;
  margin: 0 auto 3rem;
  padding: 0 2rem;
}
.store-category[data-category] {
  animation: categoryIn 0.4s ease;
}
.store-category.hidden {
  display: none;
}
@keyframes categoryIn {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

.category-header {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(220, 38, 38, 0.15);
}
.category-icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.15), rgba(220, 38, 38, 0.05));
  border: 1px solid rgba(220, 38, 38, 0.25);
  color: var(--red-bright);
  font-size: 1.4rem;
  flex-shrink: 0;
}
.category-title {
  font-family: 'Orbitron', monospace;
  font-weight: 800; font-size: 1.15rem;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-primary);
}
.category-count {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600; font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 1px;
}

/* ═══════════════════════════════════════════
   PRODUCT GRID
   ═══════════════════════════════════════════ */

.store-grid {
  display: grid;
  gap: 1.5rem;
}
.store-grid-5 { grid-template-columns: repeat(5, 1fr); }
.store-grid-4 { grid-template-columns: repeat(4, 1fr); }
.store-grid-3 { grid-template-columns: repeat(3, 1fr); }

@media (max-width: 1200px) {
  .store-grid-5,
  .store-grid-4 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .store-grid-5,
  .store-grid-4,
  .store-grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .store-grid-5,
  .store-grid-4,
  .store-grid-3 { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════
   PRODUCT CARDS (glassmorphism)
   ═══════════════════════════════════════════ */

.product-card {
  position: relative;
  background: var(--bg-card);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem 1.75rem;
  text-align: center;
  transition: var(--transition-smooth);
  overflow: hidden;
  display: flex; flex-direction: column;
}
.product-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% -20%, rgba(220, 38, 38, 0.08), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-card-hover);
}
.product-card:hover::before { opacity: 1; }

/* Popular badge */
.product-card.popular {
  border-color: var(--red);
  background: rgba(220, 38, 38, 0.06);
}
.product-card.popular::after {
  content: 'POPULAR';
  position: absolute; top: 16px; right: -30px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: white;
  padding: 0.2rem 2.5rem;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 800; font-size: 0.65rem;
  letter-spacing: 1.5px;
  transform: rotate(45deg);
  box-shadow: 0 2px 10px rgba(220, 38, 38, 0.4);
}

/* Product icon */
.product-icon {
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
  margin-bottom: 1.25rem;
  color: var(--red-bright);
  position: relative;
}
.product-icon .icon {
  width: 2.5rem; height: 2.5rem;
  filter: drop-shadow(0 0 12px rgba(220, 38, 38, 0.4));
  transition: var(--transition-smooth);
}
.product-card:hover .product-icon .icon {
  filter: drop-shadow(0 0 20px rgba(220, 38, 38, 0.6));
  transform: scale(1.1);
}

/* MC item images (enchanted glow) */
.product-icon .mc-item {
  width: 64px; height: 64px;
  image-rendering: pixelated;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
  filter:
    drop-shadow(0 0 6px rgba(186, 110, 255, 0.85))
    drop-shadow(0 0 14px rgba(140, 70, 220, 0.55))
    drop-shadow(0 0 22px rgba(120, 50, 200, 0.35));
  animation: enchantPulse 2.6s ease-in-out infinite;
}
@keyframes enchantPulse {
  0%, 100% {
    filter:
      drop-shadow(0 0 6px rgba(186, 110, 255, 0.85))
      drop-shadow(0 0 14px rgba(140, 70, 220, 0.55))
      drop-shadow(0 0 22px rgba(120, 50, 200, 0.35));
  }
  50% {
    filter:
      drop-shadow(0 0 9px rgba(210, 150, 255, 1.0))
      drop-shadow(0 0 20px rgba(160, 90, 240, 0.7))
      drop-shadow(0 0 30px rgba(140, 70, 220, 0.45));
  }
}

/* Product name */
.product-name {
  font-family: 'Orbitron', monospace;
  font-weight: 800; font-size: 1.1rem;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

/* Product description */
.product-desc {
  color: var(--text-secondary);
  font-size: 0.88rem;
  margin-bottom: 1.25rem;
  min-height: 44px;
  line-height: 1.5;
}

/* Price */
.product-price {
  font-family: 'Orbitron', monospace;
  font-size: 1.8rem; font-weight: 900;
  margin-bottom: 0.25rem;
}
.product-price.real-money {
  color: var(--red-bright);
  text-shadow: 0 0 20px rgba(220, 38, 38, 0.3);
}
.product-price.in-game {
  color: var(--gold);
  text-shadow: 0 0 20px var(--gold-glow);
  font-size: 1.5rem;
}
.product-price-note {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-bottom: 1.25rem;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Perks list */
.product-perks {
  list-style: none;
  text-align: left;
  margin-bottom: 1.75rem;
  flex: 1;
}
.product-perks li {
  padding: 0.35rem 0;
  color: var(--text-secondary);
  font-size: 0.85rem;
  display: flex; align-items: flex-start; gap: 0.6rem;
  line-height: 1.4;
}
.product-perks li::before {
  content: '';
  display: inline-block;
  width: 16px; height: 16px;
  min-width: 16px;
  margin-top: 2px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border-radius: 50%;
  position: relative;
}
.product-perks li::after {
  content: '✓';
  position: absolute;
  margin-left: -13.5px;
  margin-top: 2px;
  font-size: 0.6rem;
  color: white;
  font-weight: 900;
  line-height: 16px;
  width: 16px;
  text-align: center;
}

/* Buy button */
.product-btn {
  display: flex; align-items: center; justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-md);
  border: none;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 800; font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-decoration: none;
  margin-top: auto;
}
.product-btn-primary {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: white;
  box-shadow: 0 4px 20px rgba(220, 38, 38, 0.3);
}
.product-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(220, 38, 38, 0.5);
}
.product-btn-secondary {
  background: var(--red-subtle);
  border: 1px solid var(--red-border);
  color: var(--text-primary);
}
.product-btn-secondary:hover {
  background: rgba(220, 38, 38, 0.15);
  border-color: var(--red);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.15);
}

/* ═══════════════════════════════════════════
   BUY MODAL
   ═══════════════════════════════════════════ */

.buy-overlay {
  position: fixed; inset: 0; z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 1.5rem;
  opacity: 1;
  transition: opacity 0.25s ease;
}
.buy-overlay.hidden { display: none; opacity: 0; pointer-events: none; }

.buy-card {
  background: linear-gradient(160deg, var(--bg-card-solid), var(--bg-body));
  border: 1px solid rgba(220, 38, 38, 0.3);
  border-radius: var(--radius-lg);
  padding: 2rem;
  width: 100%; max-width: 520px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), var(--shadow-glow);
  animation: modalPop 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes modalPop {
  from { transform: translateY(20px) scale(0.95); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}

.buy-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 0.75rem;
}
.buy-header h3 {
  font-family: 'Orbitron', monospace;
  font-weight: 800; font-size: 1.2rem;
  letter-spacing: 1px; margin: 0;
}
.buy-close {
  background: transparent; border: 0; cursor: pointer;
  color: var(--text-secondary); font-size: 1.6rem; line-height: 1;
  padding: 0.25rem 0.5rem;
  border-radius: 8px;
  transition: var(--transition-fast);
}
.buy-close:hover { color: var(--red-bright); background: rgba(220, 38, 38, 0.1); }

.buy-sub {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin: 0 0 1.5rem;
}
.buy-sub strong { color: var(--red-bright); font-weight: 700; }

.buy-steps {
  list-style: none; padding: 0; margin: 0 0 1.5rem;
  display: flex; flex-direction: column; gap: 0.75rem;
}
.buy-step {
  display: flex; align-items: flex-start; gap: 0.85rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  transition: var(--transition-fast);
}
.buy-step:hover {
  border-color: var(--red-border);
  background: var(--red-subtle);
}
.buy-step-num {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
  font-family: 'Orbitron', monospace;
  font-weight: 800; font-size: 0.8rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4);
}
.buy-step-title { font-weight: 600; font-size: 0.95rem; margin-bottom: 0.15rem; }
.buy-step-title code,
.buy-step-text code {
  background: rgba(220, 38, 38, 0.12);
  color: var(--red-bright);
  padding: 0.1rem 0.45rem;
  border-radius: 6px;
  font-family: 'Rajdhani', monospace;
  font-size: 0.9em; font-weight: 600;
}
.buy-step-text {
  color: var(--text-muted); font-size: 0.85rem;
}
.buy-step-text a {
  color: var(--red-bright);
  text-decoration: none; font-weight: 600;
}
.buy-step-text a:hover { text-decoration: underline; }

.buy-cta {
  display: flex; align-items: center; justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.95rem;
  border-radius: var(--radius-md);
  border: none;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: white;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 800; font-size: 1rem;
  letter-spacing: 2px; text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 20px rgba(220, 38, 38, 0.35);
}
.buy-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(220, 38, 38, 0.5);
}

/* ═══════════════════════════════════════════
   FEATURES STRIP
   ═══════════════════════════════════════════ */

.store-features {
  position: relative; z-index: 1;
  max-width: 1100px;
  margin: 0 auto 4rem;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.feature-item {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  transition: var(--transition-smooth);
}
.feature-item:hover {
  border-color: var(--red-border);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}
.feature-icon {
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.15), rgba(220, 38, 38, 0.05));
  border: 1px solid rgba(220, 38, 38, 0.2);
  color: var(--red-bright);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.feature-icon .icon { width: 1.2rem; height: 1.2rem; }
.feature-text {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700; font-size: 0.9rem;
  color: var(--text-primary);
  letter-spacing: 0.5px;
}
.feature-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  margin-top: 0.15rem;
}

@media (max-width: 900px) {
  .store-features { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .store-features { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */

.store-footer {
  position: relative; z-index: 1;
  border-top: 1px solid var(--border);
  padding: 3rem 2rem 2rem;
  margin-top: 4rem;
}
.store-footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}
.store-footer p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}
.store-footer a {
  color: var(--red-bright);
  text-decoration: none;
  font-weight: 600;
}
.store-footer a:hover { text-decoration: underline; }

/* ═══════════════════════════════════════════
   TOAST
   ═══════════════════════════════════════════ */

.store-toast {
  position: fixed; bottom: 2rem; left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700; font-size: 0.95rem;
  letter-spacing: 0.5px;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 9999;
  pointer-events: none;
  display: flex; align-items: center; gap: 0.5rem;
  box-shadow: 0 8px 30px rgba(220, 38, 38, 0.4);
}
.store-toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ═══════════════════════════════════════════
   REVEAL ANIMATION
   ═══════════════════════════════════════════ */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════
   MOBILE RESPONSIVE
   ═══════════════════════════════════════════ */

@media (max-width: 768px) {
  .store-nav { padding: 0.6rem 1rem; }
  .store-nav-links {
    position: fixed;
    top: 58px; left: 0; right: 0;
    background: rgba(8, 8, 13, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 1rem;
    border-bottom: 1px solid var(--border);
    transform: translateY(-110%);
    transition: var(--transition-smooth);
    z-index: 999;
  }
  .store-nav-links.open { transform: translateY(0); }
  .store-hamburger { display: flex; }
  .store-nav-badge { padding: 0.4rem 0.75rem; font-size: 0.7rem; }

  .store-hero { padding: 7rem 1.25rem 2.5rem; }
  .store-hero h1 { font-size: clamp(1.8rem, 8vw, 3rem); letter-spacing: 1px; }
  .store-hero-sub { font-size: 0.92rem; max-width: 100%; padding: 0 0.5rem; }

  .hero-server-logo { width: 60px; height: 60px; border-radius: 14px; }
  .hero-logo-wrap { margin-bottom: 1rem; }

  .hero-stats-row {
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-md);
  }
  .hero-stat-divider { width: 40px; height: 1px; }

  .store-tabs { padding: 0 0.75rem; gap: 0.35rem; }
  .store-tab { padding: 0.45rem 0.85rem; font-size: 0.75rem; letter-spacing: 0.5px; }

  .store-category { padding: 0 0.75rem; }
  .category-header { gap: 0.75rem; }
  .category-title { font-size: 1.1rem; }

  .product-card { padding: 1.5rem 1.25rem 1.25rem; }
  .product-name { font-size: 0.95rem; }
  .product-price { font-size: 1.35rem; }
  .product-desc { font-size: 0.82rem; min-height: auto; }
  .product-perks { font-size: 0.78rem; }
  .product-perks li { padding: 0.3rem 0; }
  .product-icon .icon { width: 2rem; height: 2rem; }
  .product-icon .mc-item { width: 48px; height: 48px; }

  .product-btn { padding: 0.7rem 1.25rem; font-size: 0.8rem; }

  .buy-overlay { padding: 1rem; }
  .buy-card { padding: 1.25rem; max-width: 100%; }
  .buy-card h3 { font-size: 1.1rem; }

  .money-card-inner { flex-direction: column; }
  .money-card-left { flex-direction: column; text-align: center; padding: 1.5rem 1.25rem; gap: 1rem; }
  .money-card-right { flex: auto; border-left: none; border-top: 1px solid var(--border); padding: 1.5rem 1.25rem; }
  .money-info { text-align: center; }
  .money-info .product-name { text-align: center; }
  .money-info .product-desc { text-align: center; }
  .money-icon { width: 64px; height: 64px; }
  .money-icon .mc-item { width: 40px; height: 40px; }
  .money-presets { gap: 0.3rem; }
  .money-preset { font-size: 0.75rem; padding: 0.35rem 0.4rem; }
  .money-qty-btn { width: 42px; height: 42px; }
  .money-qty-input { font-size: 1.1rem; }

  .store-footer { padding: 2rem 1rem; }
}

@media (max-width: 480px) {
  .store-hero { padding: 6.5rem 1rem 2rem; }
  .store-hero h1 { font-size: 1.6rem; }
  .store-hero-sub { font-size: 0.85rem; }
  .hero-badge { font-size: 0.65rem; letter-spacing: 1.5px; padding: 0.35rem 0.9rem; }
  .hero-server-logo { width: 50px; height: 50px; border-radius: 12px; }
  .hero-stats-row { padding: 0.6rem 1rem; }
  .hero-stat-text { font-size: 0.7rem; }

  .store-tabs { gap: 0.25rem; }
  .store-tab { padding: 0.4rem 0.7rem; font-size: 0.7rem; }

  .product-card { padding: 1.25rem 1rem 1rem; border-radius: var(--radius-md); }
  .product-name { font-size: 0.9rem; }
  .product-price { font-size: 1.2rem; }
  .product-desc { font-size: 0.78rem; margin-bottom: 0.75rem; }
  .product-perks { margin-bottom: 1rem; }

  .category-header { padding: 0.5rem 0; }
  .category-icon { width: 36px; height: 36px; }
}

/* ═══════════════════════════════════════════
   MONEY SECTION
   ═══════════════════════════════════════════ */

.store-grid-1 {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 900px;
  margin: 0 auto;
}

.money-card {
  padding: 0 !important;
  overflow: hidden;
}

.money-card-inner {
  display: flex;
  gap: 0;
}

.money-card-left {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem 2rem;
}

.money-icon {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(5, 150, 105, 0.08));
  border: 1px solid rgba(16, 185, 129, 0.25);
}

.money-icon .mc-item {
  width: 48px;
  height: 48px;
}

.money-info {
  text-align: left;
}

.money-info .product-name {
  color: #10b981;
  text-align: left;
}

.money-info .product-desc {
  text-align: left;
}

.money-rate {
  font-family: 'Orbitron', monospace;
  font-size: 0.75rem;
  font-weight: 700;
  color: #10b981;
  letter-spacing: 0.5px;
  margin-top: 0.5rem;
  padding: 0.4rem 0.75rem;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-sm);
  display: inline-block;
}

.money-card-right {
  flex: 0 0 320px;
  padding: 2rem;
  border-left: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.money-qty-label {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
}

.money-qty-wrap {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(255,255,255,0.02);
}

.money-qty-btn {
  width: 48px;
  height: 48px;
  border: none;
  background: rgba(255,255,255,0.04);
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.money-qty-btn:hover {
  background: rgba(220,38,38,0.15);
  color: var(--red-bright);
}

.money-qty-btn .icon {
  width: 1rem;
  height: 1rem;
}

.money-qty-input {
  flex: 1;
  text-align: center;
  border: none;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  background: transparent;
  color: var(--text-primary);
  font-family: 'Orbitron', monospace;
  font-weight: 900;
  font-size: 1.3rem;
  padding: 0.5rem;
  outline: none;
  -moz-appearance: textfield;
}

.money-qty-input::-webkit-outer-spin-button,
.money-qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.money-presets {
  display: flex;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.money-preset {
  flex: 1;
  min-width: 44px;
  padding: 0.4rem 0.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.02);
  color: var(--text-secondary);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  cursor: pointer;
  transition: var(--transition-fast);
  text-align: center;
}

.money-preset:hover {
  background: rgba(220,38,38,0.1);
  border-color: var(--red-border);
  color: var(--red-bright);
}

.money-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  background: rgba(220,38,38,0.06);
  border: 1px solid rgba(220,38,38,0.15);
}

.money-total-label {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-secondary);
}

.money-total-price {
  font-family: 'Orbitron', monospace;
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--red-bright);
}

.money-receive {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
}

.money-receive strong {
  color: #10b981;
  font-size: 0.95rem;
}

.money-buy-btn {
  width: 100%;
  margin-top: 0.25rem;
}
