/* ═══════════════════════════════════════════════════════════════════════════════
   KEYNOVA - ULTRA MODERN DIGITAL PRODUCTS STORE
   CSS Variables | Dark/Light Mode | Glassmorphism | Responsive
   ═══════════════════════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────────────────────────────────────
   CSS VARIABLES - Design Tokens (Standardized)
   ───────────────────────────────────────────────────────────────────────────── */
:root {
  /* ── Primary & Brand Colors (Standardized: --primary = #00E676) ── */
  --primary: #00E676;
  --primary-dark: #00C853;
  --primary-hover: #00C853;
  --primary-dim: rgba(0,230,118,0.08);
  --primary-glow: rgba(0,230,118,0.15);

  --brand-primary: #00E676;      /* Alias for backward compat */
  --brand-secondary: #7C3AED;    /* Electric Purple */
  --brand-accent: #FF2D92;       /* Hot Pink */
  --brand-success: #00E676;      /* Green */
  --brand-warning: #FFC107;      /* Amber */
  --brand-danger: #FF4757;       /* Red */

  /* Grid columns - forced to 4 */
  --product-cols: 4 !important;

  --secondary: #7C3AED;
  --accent-blue: #00B0FF;
  --accent-yellow: #FFC107;
  --accent-red: #FF4757;
  --accent-orange: #FF6B35;

  /* ── Semantic aliases ── */
  --danger: #FF4757;
  --success: #00E676;
  --warning: #FFC107;
  --info: #00B0FF;

  /* ── Background Colors - Dark Mode Default ── */
  --bg-base: #0a0a14;
  --bg-primary: #0f0f1a;
  --bg-secondary: #161625;
  --bg-surface: #0f0f1a;
  --bg-card: #1a1a2e;
  --bg-card-hover: #22223a;
  --bg-elevated: rgba(255,255,255,0.02);
  --bg-input: #1a1a2e;
  --bg-hover: rgba(255,255,255,0.04);

  /* ── Glassmorphism Overlays ── */
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-shine: rgba(255, 255, 255, 0.1);

  /* ── Text Colors ── */
  --text-primary: #f0f0f5;
  --text-secondary: #a0a0b8;
  --text-muted: #6b6b80;
  --text-inverse: #0a0a14;
  --text-hover: #f0f0f5;

  /* ── Border & Lines ── */
  --border: rgba(255,255,255,0.08);
  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-default: rgba(255, 255, 255, 0.1);
  --border-hover: rgba(255, 255, 255, 0.15);

  /* ── Gradients ── */
  --gradient-brand: linear-gradient(135deg, var(--primary), var(--brand-secondary));
  --gradient-card: linear-gradient(145deg, rgba(0,230,118,0.08), rgba(124,58,237,0.04));
  --gradient-glow: radial-gradient(ellipse at center, rgba(0,230,118,0.15), transparent 70%);
  --grad-primary: linear-gradient(135deg, #00E676, #00B0FF);
  --grad-green: linear-gradient(135deg, #00E676, #00C853);
  --grad-purple: linear-gradient(135deg, #7C3AED, #A855F7);
  --grad-blue: linear-gradient(135deg, #00B0FF, #2196F3);
  --grad-red: linear-gradient(135deg, #FF4757, #FF6B81);
  --grad-orange: linear-gradient(135deg, #FF6B35, #FFA726);

  /* ── Shadows ── */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.2);
  --shadow-card: 0 4px 16px rgba(0,0,0,0.25);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.35);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.45);
  --shadow-glow-primary: 0 0 32px rgba(0,230,118,0.25);
  --shadow-glow-secondary: 0 0 32px rgba(124,58,237,0.25);

  /* ── Spacing ── */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;

  /* ── Border Radius ── */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 18px;
  --radius-2xl: 24px;
  --radius-full: 9999px;

  /* ── Product Grid ── */
  --product-cols: 4;            /* Ürün grid sütun sayısı — TÜM sayfalarda geçerli */

  /* ── Layout (Standardized) ── */
  --header-height: 72px;        /* Fixed header row height */
  --announcement-bar-height: 44px; /* Announcement bar height */
  --topbar-height: 34px;        /* Top info bar height */
  --nav-bar-height: 48px;       /* Nav bar height */
  --header-total: 154px;        /* header-height + topbar-height + nav-bar-height */
  --container-max: 1400px;      /* Max content width */
  --sidebar-width: 280px;
  /* Aliases for compatibility */
  --container-w: 1400px;
  --header-h: 154px;            /* Total header height for sticky positioning */

  /* ── Transitions ── */
  --transition: 0.3s ease;
  --transition-fast: 0.15s ease;
  --transition-normal: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);

  /* ── Z-Index Scale (100-700) ── */
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-fixed: 300;
  --z-modal-backdrop: 400;
  --z-modal: 500;
  --z-popover: 600;
  --z-tooltip: 700;
}

/* ─────────────────────────────────────────────────────────────────────────────
   LIGHT MODE OVERRIDES
   ───────────────────────────────────────────────────────────────────────────── */
html.light {
  --bg-base: #f5f5fa;
  --bg-primary: #ffffff;
  --bg-secondary: #f0f0f5;
  --bg-surface: #ffffff;
  --bg-card: #ffffff;
  --bg-card-hover: #f5f5fa;
  --bg-input: #f5f5fa;
  --bg-elevated: rgba(0,0,0,0.02);
  --bg-hover: rgba(0,0,0,0.03);

  --glass-bg: rgba(255, 255, 255, 0.8);
  --glass-border: rgba(0, 0, 0, 0.08);
  --glass-shine: rgba(255, 255, 255, 0.5);

  --text-primary: #1A1A2E;
  --text-secondary: #555570;
  --text-muted: #8888a0;
  --text-inverse: #FFFFFF;
  --text-hover: #1a1a2e;

  --border: rgba(0,0,0,0.08);
  --border-subtle: rgba(0, 0, 0, 0.06);
  --border-default: rgba(0, 0, 0, 0.1);
  --border-hover: rgba(0, 0, 0, 0.15);

  --gradient-card: linear-gradient(145deg, #FFFFFF, #F8F9FC);

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-card: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.1);
  --shadow-glow-primary: 0 0 30px rgba(0, 230, 118, 0.2);
  --shadow-glow-secondary: 0 0 30px rgba(124, 58, 237, 0.2);
}

/* ─────────────────────────────────────────────────────────────────────────────
   THEME TRANSITION
   ───────────────────────────────────────────────────────────────────────────── */
html.theme-transitioning,
html.theme-transitioning *,
html.theme-transitioning *::before,
html.theme-transitioning *::after {
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.2s ease !important;
}

/* ─────────────────────────────────────────────────────────────────────────────
   LIGHT MODE — PRODUCT CARD OVERRIDES
   ───────────────────────────────────────────────────────────────────────────── */

/* Card elevation: invisible border in light mode → proper shadow */
html.light .product-card {
  background: rgba(255,255,255,0.85);
  border-color: rgba(0,0,0,0.08);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

html.light .product-card:hover {
  background: rgba(255,255,255,0.95);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1), 0 4px 12px rgba(0,230,118,0.1);
  border-color: rgba(0,230,118,0.3);
}

html.light .product-image {
  background: linear-gradient(135deg, #e8e8f0, #d0d0e8);
}

html.light .product-platform {
  background: rgba(255,255,255,0.7);
  border-color: rgba(0,0,0,0.08);
  color: #555570;
}

html.light .product-fav {
  background: rgba(255,255,255,0.6);
  border-color: rgba(0,0,0,0.1);
  color: #8888a0;
}

/* Image area placeholder background — light versions of game gradients */
html.light .game-gradient-steam {
  background: linear-gradient(135deg, #d4ede4 0%, #a8d5bc 100%);
}
html.light .game-gradient-playstation {
  background: linear-gradient(135deg, #d0e4f7 0%, #a5c8f0 100%);
}
html.light .game-gradient-xbox {
  background: linear-gradient(135deg, #cceedd 0%, #96dbb0 100%);
}
html.light .game-gradient-1 {
  background: linear-gradient(135deg, #e8e0f8 0%, #cebcf0 100%);
}
html.light .game-gradient-2 {
  background: linear-gradient(135deg, #d8eefa 0%, #aad4f5 100%);
}
html.light .game-gradient-3 {
  background: linear-gradient(135deg, #fde9d4 0%, #f9c89c 100%);
}
html.light .game-gradient-4 {
  background: linear-gradient(135deg, #d4e8fc 0%, #9fc9f7 100%);
}
html.light .game-gradient-5 {
  background: linear-gradient(135deg, #d4f0e0 0%, #9addb9 100%);
}

/* Placeholder icon: white was invisible on light gradients → use dark */
html.light .product-image .fa-gamepad,
html.light .product-image i {
  color: rgba(0,0,0,0.18) !important;
}

/* Product badges: glassmorphism badge on dark bg → slightly opaque on light */
html.light .product-badge:not(.hot):not(.new):not(.sale) {
  background: rgba(0,0,0,0.08);
  border-color: rgba(0,0,0,0.12);
  color: #333;
}

/* Fav button: near-invisible on light gradients */
html.light .product-fav {
  background: rgba(255,255,255,0.85);
  border-color: rgba(0,0,0,0.1);
  color: var(--text-secondary);
  backdrop-filter: blur(4px);
}

/* Divider between image and info */
html.light .product-info {
  border-top: 1px solid rgba(0,0,0,0.06);
}

/* ─────────────────────────────────────────────────────────────────────────────
   CSS RESET & BASE STYLES
   ───────────────────────────────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  height: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.6;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  /* Dynamically pushed down by sticky header now */
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Adjust when top-bar is hidden on mobile */
@media (max-width: 768px) {
  body {
    /* No fixed padding needed, header is sticky */
  }
}

/* Selection */
::selection {
  background: var(--brand-primary);
  color: var(--text-inverse);
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-surface);
}

::-webkit-scrollbar-thumb {
  background: var(--border-default);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--border-hover);
}

/* Focus Styles */
:focus-visible {
  outline: 2px solid var(--brand-primary);
  outline-offset: 2px;
}

/* Links */
a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

/* Images */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Buttons Reset */
button {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
}

/* Lists */
ul, ol {
  list-style: none;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.125rem; }
h5 { font-size: 1rem; }
h6 { font-size: 0.875rem; }

/* ─────────────────────────────────────────────────────────────────────────────
   UTILITY CLASSES
   ───────────────────────────────────────────────────────────────────────────── */
.container {
  max-width: var(--container-max) !important;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  width: 100%;
}

main.container,
.main-content {
  flex: 1;
}

.container-sm { max-width: 800px; margin: 0 auto; padding: 0 var(--space-md); width: 100%; }
.container-md { max-width: 1000px; margin: 0 auto; padding: 0 var(--space-md); width: 100%; }
.container-lg { max-width: 1200px; margin: 0 auto; padding: 0 var(--space-md); width: 100%; }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }

.grid { display: grid; gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }
.grid-6 { display: grid; grid-template-columns: repeat(6, 1fr); gap: 24px; }

.text-center { text-align: center; }
.text-gradient {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }

/* ─────────────────────────────────────────────────────────────────────────────
   HEADER & NAVIGATION (Complete)
   ───────────────────────────────────────────────────────────────────────────── */

/* ══════ TOP BAR (Info Bar) ══════ */
.top-bar {
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
  font-size: .75rem;
  height: auto;
  padding: 0;
}

.top-bar-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px var(--space-lg);
  width: 100%;
}

.top-bar-left {
  display: flex;
  gap: 10px;
}

.tb-social {
  color: var(--text-muted);
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  font-size: .8rem;
}

.tb-social:hover {
  color: var(--primary);
}

.top-bar-links {
  display: flex;
  gap: 18px;
  flex: 1;
  justify-content: center;
}

.tb-link {
  color: var(--text-muted);
  font-weight: 500;
  font-size: .72rem;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 4px;
}

.tb-link:hover {
  color: var(--text-primary);
}

.tb-link i {
  margin-right: 4px;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tb-balance {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-weight: 700;
  font-size: .78rem;
  opacity: .9;
}

.tb-balance-group {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 3px 10px 3px 8px;
  background: rgba(0,230,118,.06);
  border: 1px solid rgba(0,230,118,.18);
  border-radius: 20px;
}

.tb-topup-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 2px 8px;
  background: var(--primary);
  border-radius: 12px;
  font-size: .72rem;
  font-weight: 700;
  color: #000;
  text-decoration: none;
  transition: filter .18s;
}

.tb-topup-btn:hover {
  filter: brightness(1.1);
  color: #000;
}

.tb-topup-btn i {
  font-size: .65rem;
}

.tb-lang {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--text-muted);
  font-weight: 500;
  font-size: .72rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.tb-lang:hover {
  color: var(--text-primary);
}

/* ══════ MAIN HEADER ══════ */
.header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: auto;           /* Auto height to accommodate top-bar + header-inner + nav-bar */
  z-index: var(--z-sticky);
  background: rgba(10, 10, 20, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  transition: box-shadow var(--transition-normal);
}

html.light .header {
  background: rgba(255, 255, 255, 0.97);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  padding: 0 var(--space-lg);
  max-width: var(--container-max);
  margin: 0 auto;
  width: 100%;
  position: relative;
}

/* ══════════════════════════════════════════════════════════════
   KN SEARCH — Ultra Modern Autocomplete
   ══════════════════════════════════════════════════════════════ */

/* Wrapper — perfectly centered without transform */
.kns {
  position: relative;
  flex: 1;
  margin: 0 auto;
  width: 100%;
  max-width: 520px;
  z-index: 1000;
}

/* Backdrop — full-page click catcher (invisible) */
.kns-backdrop {
  position: fixed;
  inset: 0;
  background: transparent;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
}
.kns--open .kns-backdrop { opacity: 1; pointer-events: all; }

/* Form */
.kns-form { position: relative; z-index: 1001; }

/* ── Input pill bar ── */
.kns-field {
  display: flex;
  align-items: center;
  background: var(--bg-card);
  border: 1.5px solid var(--border-default);
  border-radius: var(--radius-full);
  height: 46px;
  padding: 0 6px 0 14px;
  gap: 8px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.kns-field:hover { border-color: var(--border-hover); }
.kns--open .kns-field,
.kns-field:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-glow), 0 8px 32px rgba(0, 0, 0, 0.35);
  background: var(--bg-card-hover);
}

/* Left icon */
.kns-icon {
  font-size: .88rem;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: color 0.2s ease, transform 0.2s ease;
}
.kns--open .kns-icon,
.kns-field:focus-within .kns-icon { color: var(--primary); transform: scale(1.1); }

/* Input */
.kns-input {
  flex: 1;
  min-width: 0;
  border: none;
  background: transparent;
  color: var(--text-primary);
  font-size: .9rem;
  font-family: inherit;
  outline: none;
  caret-color: var(--primary);
}
.kns-input::-webkit-search-cancel-button,
.kns-input::-webkit-search-decoration { display: none; }
.kns-input::placeholder { color: var(--text-muted); font-size: .87rem; }

/* Clear button */
.kns-clear {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border: none;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  color: var(--text-muted);
  cursor: pointer;
  flex-shrink: 0;
  font-size: .7rem;
  padding: 0;
  transition: all 0.15s ease;
}
.kns-clear:hover { background: rgba(255, 255, 255, 0.13); color: var(--text-primary); }
.kns-clear[hidden] { display: none !important; }

/* Keyboard shortcut badge */
.kns-kbd {
  display: inline-flex;
  align-items: center;
  padding: 2px 7px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 5px;
  font-size: .61rem;
  color: var(--text-muted);
  font-family: inherit;
  white-space: nowrap;
  flex-shrink: 0;
  pointer-events: none;
  transition: opacity 0.15s ease;
}
.kns-kbd.kns-kbd--hidden { opacity: 0; }

/* Submit button */
.kns-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: var(--primary);
  border: none;
  border-radius: 50%;
  color: #000;
  font-size: .82rem;
  font-weight: 700;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.15s ease;
}
.kns-submit:hover { background: var(--primary-dark); transform: scale(1.06); }

/* ═══════ Results panel ═══════ */
.kns-panel {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: 20px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.65), 0 0 0 1px rgba(0, 230, 118, 0.05);
  z-index: 1002;
  overflow: hidden;
  max-height: min(520px, 72vh);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}
.kns-panel.kns-panel--open {
  display: block;
  animation: knsPanelIn .2s cubic-bezier(0.34, 1.3, 0.64, 1);
}
.kns-panel::-webkit-scrollbar { width: 4px; }
.kns-panel::-webkit-scrollbar-track { background: transparent; }
.kns-panel::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }

@keyframes knsPanelIn {
  from { opacity: 0; transform: translateY(-10px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0)     scale(1);    }
}

/* ── Panel sections ── */
.kns-section { padding: 10px 0 4px; }
.kns-section + .kns-section { border-top: 1px solid var(--border); }
.kns-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2px 16px 8px;
  font-size: .64rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
}
.kns-section-count { font-weight: 500; text-transform: none; letter-spacing: 0; font-size: .7rem; }

/* ── Chips — popular + history ── */
.kns-chips { display: flex; flex-wrap: wrap; gap: 6px; padding: 0 14px 10px; }
.kns-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 11px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: .76rem;
  color: var(--text-secondary);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.15s ease;
  font-family: inherit;
}
.kns-chip:hover {
  background: var(--primary-dim);
  border-color: rgba(0, 230, 118, 0.25);
  color: var(--primary);
}
.kns-chip i { font-size: .63rem; opacity: .7; }
.kns-chip-del {
  margin-left: 3px;
  border: none;
  background: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: .8rem;
  padding: 0;
  line-height: 1;
  opacity: .55;
  transition: opacity 0.1s ease;
}
.kns-chip-del:hover { opacity: 1; color: var(--accent-red); }

/* ── Product result items ── */
.kns-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 16px;
  text-decoration: none;
  color: var(--text-primary);
  transition: background 0.1s ease;
  position: relative;
}
.kns-item:hover,
.kns-item.kns-item--active { background: rgba(255, 255, 255, 0.038); }
.kns-item.kns-item--active::before {
  content: '';
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 55%;
  background: var(--primary);
  border-radius: 2px;
}
.kns-item.kns-item--outstock { opacity: .38; }

/* Thumbnail */
.kns-thumb { position: relative; flex-shrink: 0; width: 48px; height: 38px; }
.kns-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--border);
  display: block;
}
.kns-thumb-ph {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  color: var(--text-muted);
}
.kns-badge {
  position: absolute;
  top: -4px;
  right: -5px;
  font-size: .54rem;
  font-weight: 800;
  padding: 1px 4px;
  border-radius: 4px;
  background: var(--accent-red);
  color: #fff;
  line-height: 1.4;
  white-space: nowrap;
}
.kns-badge--new { background: var(--primary); color: #000; }
.kns-badge--hot { background: var(--accent-orange); color: #fff; }

/* Item info column */
.kns-iinfo { flex: 1; min-width: 0; }
.kns-ititle {
  font-size: .84rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3;
}
.kns-imeta {
  font-size: .69rem;
  color: var(--text-muted);
  margin-top: 2px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.kns-imeta-dot { width: 2px; height: 2px; border-radius: 50%; background: currentColor; opacity: .4; }

/* Price column */
.kns-iprice { text-align: right; flex-shrink: 0; }
.kns-iprice-cur { font-size: .87rem; font-weight: 800; color: var(--primary); display: block; white-space: nowrap; }
.kns-iprice-old { font-size: .66rem; color: var(--text-muted); text-decoration: line-through; display: block; white-space: nowrap; }

/* ═══════ Skeleton loading ═══════ */
.kns-skeleton-list { padding: 6px 0; }
.kns-skel-item { display: flex; align-items: center; gap: 12px; padding: 9px 16px; }
.kns-skel-img  { width: 48px; height: 38px; border-radius: 8px; flex-shrink: 0; }
.kns-skel-lines { flex: 1; display: flex; flex-direction: column; gap: 7px; }
.kns-skel-line  { height: 10px; border-radius: 6px; }
.kns-skel-line--sm { width: 55%; }
.kns-skel-price { width: 52px; height: 14px; border-radius: 6px; flex-shrink: 0; }

.kns-skel-img,
.kns-skel-line,
.kns-skel-price { background: rgba(255, 255, 255, 0.04); position: relative; overflow: hidden; }

.kns-skel-img::after,
.kns-skel-line::after,
.kns-skel-price::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.07) 50%, transparent);
  background-size: 200% 100%;
  animation: knsSkelShimmer 1.4s ease infinite;
}
@keyframes knsSkelShimmer {
  0%   { background-position: -200% 0; }
  100% { background-position:  200% 0; }
}

/* ═══════ Empty state ═══════ */
.kns-empty { padding: 32px 20px; text-align: center; color: var(--text-muted); }
.kns-empty-icon {
  width: 52px; height: 52px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px;
  font-size: 1.1rem;
}
.kns-empty-title { font-size: .9rem; font-weight: 600; color: var(--text-secondary); margin-bottom: 4px; }
.kns-empty-sub   { font-size: .77rem; line-height: 1.5; }

/* ═══════ Footer "see all" ═══════ */
.kns-footer { padding: 10px 14px 12px; }
.kns-footer-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 16px;
  background: var(--primary-dim);
  border: 1px solid rgba(0, 230, 118, 0.14);
  border-radius: var(--radius-full);
  color: var(--primary);
  font-size: .81rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.15s ease;
}
.kns-footer-btn:hover { background: rgba(0, 230, 118, 0.12); border-color: rgba(0, 230, 118, 0.28); }
.kns-footer-btn i { font-size: .72rem; }

/* ═══════ Highlight mark ═══════ */
mark.kns-hl { background: rgba(0, 230, 118, 0.2); color: var(--primary); border-radius: 3px; font-style: normal; }

/* ══════ HEADER ACTIONS (Buttons) ══════ */
.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-left: auto;
}

.icon-btn {
  position: relative;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition-fast);
  font-size: .95rem;
}

.icon-btn:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(0,230,118,0.2);
  color: var(--text-primary);
}

.badge-dot {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  background: var(--primary);
  border-radius: 50%;
  font-size: .6rem;
  font-weight: 700;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 8px rgba(0,230,118,0.3);
}

/* ══════ USER PILL ══════ */
.user-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px 6px 6px;
  background: var(--bg-secondary);
  border: 1px solid rgba(0,230,118,0.15);
  border-radius: 20px;
  cursor: pointer;
  transition: var(--transition);
  margin-left: 6px;
}

.user-pill:hover {
  border-color: rgba(0,230,118,0.3);
  background: rgba(0,230,118,0.03);
}

.user-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-weight: 700;
  font-size: .75rem;
  flex-shrink: 0;
  overflow: hidden;
}

.user-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.user-info {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.user-label {
  font-size: .7rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.user-name {
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.2;
}

/* ══════ HEADER NAV BAR ══════ */
.header-nav-bar {
  border-top: 1px solid var(--border);
  background: var(--bg-primary);
  min-height: 48px;
  padding: 0;
  width: 100%;
  position: relative;
  z-index: 100;
  overflow: visible;
}

.header-nav-inner {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 6px 40px;
  width: 100%;
  gap: 16px;
  position: relative;
  overflow: visible;
}

/* ── Left group: scrollable nav links ── */
.hnav-left {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 8px;
  flex: 1;
  min-width: 0;
  overflow: visible;
  scrollbar-width: none;
}

.hnav-left::-webkit-scrollbar {
  display: none;
}

/* ── Right group: balance + cta ── */
.hnav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  padding-left: 16px;
  margin-top: 2px;
  border-left: 1px solid var(--border);
}

.hnav-topup-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  padding: 4px 12px 4px 6px;
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.025));
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px;
  color: var(--text-primary);
  text-decoration: none;
  font-size: .79rem;
  font-weight: 700;
  letter-spacing: .01em;
  white-space: nowrap;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
  transition: background .18s, border-color .18s, transform .18s, box-shadow .18s, color .18s;
}

.hnav-topup-btn:hover {
  background: linear-gradient(180deg, rgba(0,230,118,.12), rgba(255,255,255,.04));
  border-color: rgba(0,230,118,.28);
  color: var(--text-primary);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0,0,0,.18), inset 0 1px 0 rgba(255,255,255,.06);
}

.hnav-topup-btn i {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: .68rem;
  color: var(--primary);
  background: rgba(0,230,118,.12);
  border: 1px solid rgba(0,230,118,.24);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
}

/* ── Balance pill ── */
.hnav-balance-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 13px;
  background: rgba(0,230,118,.06);
  border: 1px solid rgba(0,230,118,.22);
  border-radius: 20px;
  font-size: .8rem;
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
  text-decoration: none;
  transition: background .18s, border-color .18s, transform .18s;
  letter-spacing: .01em;
}

.hnav-balance-pill:hover {
  background: rgba(0,230,118,.13);
  border-color: rgba(0,230,118,.45);
  color: var(--primary);
  transform: translateY(-1px);
}

.hnav-balance-pill i {
  font-size: .72rem;
  opacity: .9;
}

/* ── Live Support button ── */
.hnav-support-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 6px 15px;
  background: var(--primary);
  border-radius: 20px;
  font-size: .8rem;
  font-weight: 700;
  color: #000;
  white-space: nowrap;
  text-decoration: none;
  position: relative;
  transition: filter .18s, transform .18s, box-shadow .18s;
}

.hnav-support-btn:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(0,230,118,.35);
  color: #000;
}

.hnav-support-btn i {
  font-size: .78rem;
}

/* ── Pulse dot inside support button ── */
.hnav-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(0,0,0,.55);
  flex-shrink: 0;
  position: relative;
}

.hnav-pulse::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid rgba(0,0,0,.3);
  animation: hnavPulse 1.6s ease-in-out infinite;
}

@keyframes hnavPulse {
  0%, 100% { transform: scale(1); opacity: .6; }
  50%       { transform: scale(1.5); opacity: 0; }
}

/* ── Regular nav link ── */
.hnav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 14px;
  font-size: .83rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  border-radius: 8px;
  position: relative;
}

.hnav-link:hover,
.hnav-link.active {
  color: var(--primary);
  background: rgba(0,230,118,0.08);
  transform: translateY(-1px);
}

.hnav-link.hnav-all {
  font-weight: 700;
  color: var(--text-primary);
}

.hnav-link i {
  font-size: .85rem;
}

/* ══════ MOBILE MENU TOGGLE ══════ */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 10px;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

/* ══════ FOOTER ══════ */
.footer {
  background: var(--bg-primary);
  border-top: 1px solid var(--border);
  padding-top: 0;
  padding-bottom: var(--space-lg);
  width: 100%;
  margin-top: auto;
  flex-shrink: 0;
}

.footer-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  gap: 12px;
  flex-wrap: wrap;
}

.ftb-text {
  font-size: .83rem;
  color: var(--text-secondary);
}

.footer-inner {
  width: 100%;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding: 40px 0;
}

.footer-brand .footer-logo {
  margin-bottom: 16px;
}

.footer-desc {
  font-size: .83rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.social-btn-group {
  display: flex;
  gap: 8px;
}

.social-btn {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0,230,118,0.15);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  transition: var(--transition-fast);
}

.social-btn:hover {
  color: var(--primary);
  border-color: rgba(0,230,118,0.3);
  background: rgba(0,230,118,0.06);
}

.footer-heading {
  font-size: .8rem;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  font-size: .83rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-fast);
}

.footer-link:hover {
  color: var(--primary);
}

.footer-link i {
  font-size: .55rem;
  color: var(--text-muted);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .83rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.footer-contact-item i {
  color: var(--primary);
  width: 16px;
  text-align: center;
  font-size: .85rem;
}

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-input {
  flex: 1;
  min-width: 0;
  padding: 10px 14px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: .83rem;
}

.newsletter-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,230,118,0.1);
  outline: none;
}

@media (max-width: 480px) {
  .newsletter-form {
    flex-direction: column;
  }
  .newsletter-form .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════════
   NEWSLETTER SECTION
   ═══════════════════════════════════════════════════════════════════════════════ */
.newsletter-wrapper {
  padding: var(--space-3xl) 0;
}

.newsletter-section {
  position: relative;
  background: linear-gradient(135deg,
    rgba(0,230,118,.05) 0%,
    rgba(0,30,15,.8) 30%,
    rgba(0,10,25,.9) 70%,
    rgba(124,58,237,.05) 100%);
  border: 1px solid rgba(0,230,118,.15);
  border-radius: 28px;
  padding: 72px 48px;
  text-align: center;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255,255,255,.03),
              0 40px 100px rgba(0,0,0,.4),
              inset 0 1px 0 rgba(255,255,255,.05);
}

/* Decorative glowing orbs */
.nl-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(60px);
  opacity: .35;
}

.nl-orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #00E676, transparent 70%);
  top: -150px;
  left: -100px;
  animation: pulse 5s ease-in-out infinite;
}

.nl-orb-2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, #7C3AED, transparent 70%);
  bottom: -120px;
  right: -80px;
  animation: pulse 6s ease-in-out infinite reverse;
}

.nl-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.nl-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  font-family: 'Space Grotesk', sans-serif;
  margin: 0 0 14px;
  background: linear-gradient(135deg, #fff 40%, rgba(0,230,118,.9) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.15;
}

.nl-subtitle {
  font-size: .97rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 28px;
}

.nl-pills {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}

.nl-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50px;
  font-size: .75rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.nl-pill i {
  color: var(--primary);
}

.newsletter-form-hero {
  display: flex;
  gap: 10px;
  max-width: 520px;
  margin: 0 auto 16px;
}

.nl-input-wrap {
  flex: 1;
  position: relative;
}

.nl-input-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: .85rem;
  pointer-events: none;
}

.nl-input {
  width: 100%;
  height: 52px;
  padding: 0 16px 0 44px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  color: var(--text-primary);
  font-size: .95rem;
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
  backdrop-filter: blur(4px);
}

.nl-input::placeholder {
  color: var(--text-muted);
}

.nl-input:focus {
  border-color: var(--primary);
  background: rgba(0,230,118,.06);
  box-shadow: 0 0 0 4px rgba(0,230,118,.12);
  outline: none;
}

.nl-submit {
  height: 52px;
  padding: 0 28px;
  border-radius: 14px;
  white-space: nowrap;
  flex-shrink: 0;
  font-weight: 700;
  letter-spacing: .02em;
}

.nl-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: .78rem;
  color: var(--text-muted);
}

.nl-note i {
  color: var(--primary);
  opacity: .7;
}

@media (max-width: 600px) {
  .newsletter-section {
    padding: 48px 24px;
  }
  .newsletter-form-hero {
    flex-direction: column;
  }
  .nl-submit {
    width: 100%;
    justify-content: center;
  }
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  font-size: .8rem;
  color: var(--text-muted);
  width: 100%;
}

.payment-icons {
  display: flex;
  gap: 12px;
}

.pay-icon {
  font-size: .7rem;
  font-weight: 700;
  color: var(--text-muted);
}

/* ══════ MOBILE NAV ══════ */
.mobile-nav {
  position: fixed;
  top: 0;           /* JS should push it below header, or use top: 154px */
  left: 0;
  width: 300px;
  max-width: 85vw;
  height: 100vh;
  background: var(--bg-primary);
  border-right: 1px solid var(--border);
  z-index: var(--z-modal);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}

.mobile-nav.open {
  transform: translateX(0);
}

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: calc(var(--z-modal) - 1);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-nav-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}

.mobile-nav-close {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition-fast);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
}

.mobile-nav-close:hover {
  color: var(--accent-red);
  background: rgba(255,71,87,0.1);
}

.mobile-nav-links {
  padding: 12px 0;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition-fast);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--primary);
  background: rgba(0,230,118,0.05);
}

.mobile-nav-link i {
  width: 20px;
  text-align: center;
  font-size: .85rem;
}

.mobile-nav-divider {
  height: 1px;
  background: var(--border);
  margin: 8px 16px;
}

button.mobile-nav-link {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

@media (max-width: 576px) {
  .top-bar {
    display: none;
  }

  /* ── Header inner: single row ── */
  .header-inner {
    flex-wrap: nowrap;
    height: 56px;
    padding: 0 var(--space-md);
    gap: 8px;
  }

  /* Logo compact */
  .header-inner .logo {
    order: 1;
    font-size: 1.2rem;
    flex-shrink: 0;
  }
  .header-inner .logo-icon {
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
  }

  /* Hide search on mobile */
  .kns {
    display: none !important;
  }

  /* Header actions: compact */
  .header-actions {
    order: 2;
    gap: 6px;
    margin-left: auto;
  }

  /* Resize all icon-btns for mobile */
  .header-actions .icon-btn {
    width: 36px;
    height: 36px;
    font-size: 0.88rem;
  }

  /* Hide icon-btns by default — specific ones re-shown below */
  .header-actions > .icon-btn {
    display: none !important;
  }

  /* Show notification bell (logged-in wrapper) */
  .header-actions .notification-wrapper {
    display: block !important;
  }
  .header-actions .notification-wrapper .icon-btn {
    display: flex !important;
  }

  /* Show notification bell (non-logged-in direct link) */
  .header-actions > a.icon-btn[data-tip="Bildirimler"] {
    display: flex !important;
  }

  /* Show cart icon */
  .header-actions > a.icon-btn[data-tip="Sepet"] {
    display: flex !important;
  }

  /* Hide user pill, theme toggle on mobile (accessible via hamburger) */
  .user-pill {
    display: none !important;
  }
  .theme-toggle-btn {
    display: none !important;
  }

  /* Hamburger - sadece mobilde göster */
  .menu-toggle {
    display: none;
  }

  /* Nav bar: hidden on mobile */
  .header-nav-bar {
    display: block;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-brand);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-inverse);
  font-weight: 900;
  font-size: 1rem;
  box-shadow: var(--shadow-glow-primary);
}

.logo-text {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─────────────────────────────────────────────────────────────────────────────
   HERO SECTION
   ───────────────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-total));
  display: flex;
  align-items: center;
  padding: 120px 0 var(--space-3xl) 0;
  overflow: hidden;
  margin-top: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at 30% 30%, rgba(0, 255, 163, 0.15) 0%, transparent 50%),
              radial-gradient(ellipse at 70% 70%, rgba(123, 47, 255, 0.1) 0%, transparent 50%);
  animation: heroFloat 20s ease-in-out infinite;
}

@keyframes heroFloat {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(30px, -30px) rotate(120deg); }
  66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: var(--glass-bg);
  border: 1px solid var(--brand-primary);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--brand-primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: var(--space-lg);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 255, 163, 0.4); }
  50% { box-shadow: 0 0 0 10px rgba(0, 255, 163, 0); }
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: var(--space-lg);
}

.hero-title .gradient {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  margin-bottom: var(--space-xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* ─────────────────────────────────────────────────────────────────────────────
   BUTTONS
   ───────────────────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xl);
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition-normal);
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
}

.btn-primary {
  background: var(--gradient-brand);
  color: var(--text-inverse);
  box-shadow: var(--shadow-glow-primary);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 255, 163, 0.4);
}

.btn-secondary {
  background: var(--glass-bg);
  border: 1px solid var(--border-default);
  color: var(--text-primary);
}

.btn-secondary:hover {
  background: var(--bg-card);
  border-color: var(--brand-primary);
  color: var(--brand-primary);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--border-default);
  color: var(--text-primary);
}

.btn-outline:hover {
  border-color: var(--brand-primary);
  color: var(--brand-primary);
  background: rgba(0, 255, 163, 0.05);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
}

.btn-ghost:hover {
  color: var(--brand-primary);
  background: rgba(0, 255, 163, 0.1);
}

.btn-sm {
  padding: var(--space-sm) var(--space-md);
  font-size: 0.85rem;
}

.btn-icon {
  width: auto;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.btn-lg {
  padding: var(--space-lg) var(--space-2xl);
  font-size: 1rem;
}

/* ─────────────────────────────────────────────────────────────────────────────
   CARDS
   ───────────────────────────────────────────────────────────────────────────── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition-normal);
}

.card:hover {
  border-color: var(--border-default);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   PRODUCT CARD — GLASS NEUMORPHISM
   ═══════════════════════════════════════════════════════════════════════════════ */
.gc-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-elevated, rgba(255,255,255,0.05));
  border: 1px solid var(--border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

/* Light mode adjustments */
html.light .gc-card {
  background: rgba(255,255,255,0.8);
  border-color: rgba(0,0,0,0.08);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

html.light .gc-card:hover {
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
  border-color: var(--primary);
}

.gc-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,230,118,0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  z-index: 1;
}

.gc-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,230,118,0.15);
  border-color: var(--primary);
}

/* Light mode hover */
html.light .gc-card:hover {
  box-shadow: 0 16px 48px rgba(0,230,118,0.2);
}

.gc-card:hover::before {
  opacity: 1;
}

/* Glass Card Image */
.gc-img {
  display: block;
  position: relative;
  aspect-ratio: 1/1;
  background: var(--bg-secondary);
  overflow: hidden;
}

html.light .gc-img {
  background: #f0f0f5;
}

.gc-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.gc-card:hover .gc-img img {
  transform: scale(1.05);
}

.gc-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-secondary);
}

html.light .gc-placeholder {
  background: #e8e8f0;
}

/* ── Badge ── */
.gc-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--primary);
  color: #000;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  z-index: 2;
}

.gc-badge-new {
  background: var(--secondary);
  color: #fff;
}

/* ── Platform chip ── */
.gc-platform {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 2;
}

html.light .gc-platform {
  background: rgba(255,255,255,0.95);
  color: #333;
}

/* ── Body ── */
.gc-body {
  padding: 16px;
  position: relative;
  z-index: 2;
}

.gc-category {
  font-size: 0.7rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.gc-title {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
  margin-bottom: 8px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s;
}

.gc-title:hover {
  color: var(--primary);
}

/* ── Rating ── */
.gc-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}

.gc-stars {
  color: #FFD700;
  font-size: 0.75rem;
  letter-spacing: 1px;
}

.gc-review-count {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* ── Footer ── */
.gc-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  margin-top: auto;
}

html.light .gc-footer {
  border-top-color: rgba(0,0,0,0.08);
}

.gc-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.gc-price-current {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-primary);
}

.gc-price-original {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.gc-btn {
  width: 36px;
  height: 36px;
  background: var(--primary);
  color: #000;
  border: none;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s;
}

.gc-btn:hover {
  background: var(--primary-dark);
  transform: scale(1.1);
}

.gc-btn-disabled {
  background: rgba(255,255,255,0.1);
  color: var(--text-muted);
  cursor: not-allowed;
}

.gc-btn-disabled:hover {
  transform: none;
}

/* ── Grid Layout ── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  align-items: stretch;
}

.product-grid .gc-card {
  width: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.product-grid .gc-card::before {
  z-index: 0;
}

.product-grid .gc-card > * {
  position: relative;
  z-index: 1;
}

/* Compact card */
.product-grid .gc-body {
  padding: 8px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-grid .gc-title {
  font-size: 0.75rem;
  line-height: 1.2;
  margin-bottom: 4px;
}

.product-grid .gc-category {
  font-size: 0.55rem;
  margin-bottom: 3px;
}

.product-grid .gc-rating {
  margin-bottom: 6px;
}

.product-grid .gc-stars {
  font-size: 0.6rem;
}

.product-grid .gc-review-count {
  font-size: 0.65rem;
}

.product-grid .gc-footer {
  padding-top: 6px;
  border-top: 1px solid var(--border);
  margin-top: auto;
}

.product-grid .gc-price-current {
  font-size: 0.9rem;
  font-weight: 800;
}

.product-grid .gc-price-original {
  font-size: 0.65rem;
}

.product-grid .gc-btn {
  width: 28px;
  height: 28px;
  font-size: 0.75rem;
  border-radius: 6px;
}

.product-grid .gc-img {
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-grid .gc-badge {
  font-size: 0.6rem;
  padding: 3px 8px;
}

.product-grid .gc-platform {
  font-size: 0.6rem;
  padding: 3px 8px;
}

.product-grid .gc-platform i {
  font-size: 0.65rem;
}

/* ── List view ── */
.gc-card.list-view {
  display: flex;
  flex-direction: row;
}

.gc-card.list-view .gc-img {
  width: 200px;
  min-width: 200px;
  aspect-ratio: 1 / 1;
}

.gc-card.list-view .gc-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gc-card.list-view .gc-footer {
  margin-top: auto;
}

@media (max-width: 480px) {
  .gc-card.list-view {
    flex-direction: column;
  }
  .gc-card.list-view .gc-img {
    width: 100%;
    min-width: unset;
  }
}

/* ── Light mode ── */
html.light .gc-card {
  background: linear-gradient(145deg, rgba(0,0,0,0.05), rgba(0,0,0,0.02));
  border-color: rgba(0,0,0,0.08);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0,230,118,0.12), 0 8px 24px rgba(0,0,0,0.4);
  border-color: rgba(0,230,118,0.25);
}

/* ── Image + glow area ── */
.product-image {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--bg-secondary);
  overflow: hidden;
  display: block;
  text-decoration: none;
}

.product-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.product-card:hover .product-image::after {
  opacity: 1;
}

.product-card:hover .product-image img {
  transform: scale(1.08);
}

/* Glow blobs */
.card-glow {
  position: absolute;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.45;
  pointer-events: none;
}
.card-glow.g1 { top: -25px; left: -25px; }
.card-glow.g2 { bottom: -25px; right: -25px; }

/* Placeholder icon when no image */
.product-placeholder-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(255,255,255,0.12);
}

/* ── Badges ── */
.product-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  gap: 5px;
  z-index: 2;
}

.product-badge {
  padding: 4px 10px;
  border-radius: 30px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.product-badge.new {
  background: rgba(0,230,118,0.15);
  border: 1px solid rgba(0,230,118,0.3);
  color: var(--brand-primary);
}

.product-badge.hot {
  background: rgba(255,71,87,0.15);
  border: 1px solid rgba(255,71,87,0.3);
  color: var(--brand-danger);
}

.product-badge.sale {
  background: rgba(255,193,7,0.15);
  border: 1px solid rgba(255,193,7,0.3);
  color: var(--brand-warning);
}

.product-badge.out {
  background: rgba(255,71,87,0.15);
  border: 1px solid rgba(255,71,87,0.3);
  color: var(--brand-danger);
}

/* ── Favourite button ── */
.product-fav {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--text-secondary);
  cursor: pointer;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.2s ease;
}

.product-fav:hover {
  background: rgba(255,45,146,0.2);
  color: var(--brand-accent);
  border-color: rgba(255,45,146,0.35);
}

.product-fav.active {
  background: rgba(255,45,146,0.2);
  color: var(--brand-accent);
  border-color: rgba(255,45,146,0.35);
}

/* ── Platform chip (bottom-right of image) ── */
.product-platform {
  position: absolute;
  bottom: 12px;
  right: 12px;
  z-index: 2;
  padding: 4px 10px;
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 7px;
  font-size: 0.63rem;
  font-weight: 700;
  color: var(--text-secondary);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ── Info body ── */
.product-info {
  padding: 14px 16px 16px;
  position: relative;
  z-index: 1;
}

.product-category {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--brand-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 5px;
}

.product-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-decoration: none;
}

.product-title:hover { color: var(--brand-primary); }

.product-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 14px;
}

.stars {
  color: var(--brand-warning);
  font-size: 0.65rem;
  display: flex;
  gap: 2px;
}

.rating-count {
  font-size: 0.68rem;
  color: var(--text-muted);
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-price {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.price-current {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--brand-primary);
  font-family: 'SF Pro Display', sans-serif;
  line-height: 1;
}

.price-original {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-decoration: line-through;
  line-height: 1;
}

.product-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: linear-gradient(135deg, var(--brand-primary), #00B8D4);
  border: none;
  border-radius: 30px;
  color: #000;
  font-weight: 700;
  font-size: 0.75rem;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
  white-space: nowrap;
}

.product-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0,230,118,0.35);
}

.product-btn.disabled {
  background: rgba(255,255,255,0.06);
  color: var(--text-muted);
  cursor: not-allowed;
  opacity: 0.6;
}

.product-btn.disabled:hover {
  transform: none;
  box-shadow: none;
}

/* ── List view override ── */
.product-card.list-view {
  display: flex;
  flex-direction: row;
  border-radius: 14px;
}

.product-card.list-view .product-image {
  width: 180px;
  flex-shrink: 0;
  height: auto;
  min-height: 130px;
}

.product-card.list-view .product-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ─────────────────────────────────────────────────────────────────────────────
   SECTIONS
   ───────────────────────────────────────────────────────────────────────────── */
.section {
  padding: var(--space-3xl) 0;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.section-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: var(--space-sm);
}

.section-subtitle {
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.section-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-xl);
}

.section-title-lg {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: var(--space-md);
}

/* ─────────────────────────────────────────────────────────────────────────────
   CATEGORY CARDS
   ───────────────────────────────────────────────────────────────────────────── */
/* Kategori grid - 4 sütun */
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xs);
  margin-bottom: var(--space-md);
}

.category-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  text-decoration: none;
  transition: all var(--transition-normal);
  display: block;
}

.category-card:hover {
  border-color: var(--brand-primary);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.category-card-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.category-card-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 230, 118, 0.1), rgba(0, 230, 118, 0.02));
}

.category-card-placeholder i {
  font-size: 3rem;
  color: var(--primary);
  opacity: 0.3;
}

.category-card-body {
  padding: var(--space-lg);
}

.category-card-top {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-sm);
}

.category-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(0, 230, 118, 0.15), rgba(0, 230, 118, 0.05));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--primary);
  flex-shrink: 0;
}

.category-card:hover .category-icon {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(0, 230, 118, 0.2);
}

.category-card-info {
  flex: 1;
  min-width: 0;
}

.category-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 var(--space-xs);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.category-count {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.category-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.category-card:hover .category-card-overlay {
  transform: scaleX(1);
}

/* ─────────────────────────────────────────────────────────────────────────────
   BANNER / PROMO
   ───────────────────────────────────────────────────────────────────────────── */
.promo-banner {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  margin-bottom: var(--space-2xl);
}

.promo-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
  opacity: 0.9;
}

.promo-content {
  position: relative;
  z-index: 1;
  padding: var(--space-3xl);
  text-align: center;
  color: #fff;
}

.promo-title {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 900;
  margin-bottom: var(--space-md);
}

.promo-subtitle {
  font-size: 1.1rem;
  margin-bottom: var(--space-lg);
  opacity: 0.9;
}

/* ─────────────────────────────────────────────────────────────────────────────
   RESPONSIVE DESIGN
   ───────────────────────────────────────────────────────────────────────────── */

/* Tablet/Laptop - 4 sütun */
@media (max-width: 1200px) {
  .product-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }
}

/* Küçük tablet - 4 sütun */
@media (max-width: 992px) {
  .product-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }

  .cc-grid,
  .category-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }

  .cc-grid-compact {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-banner {
    display: none;
  }
}

/* Mobil landscape - 3 sütun */
@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .cc-grid,
  .category-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .cc-grid-compact {
    grid-template-columns: repeat(3, 1fr);
  }

  .section {
    padding: var(--space-lg) 0;
  }
}

/* Mobil - 2 sütun */
@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .cc-grid,
  .category-grid,
  .cc-grid-compact {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .product-grid .gc-body {
    padding: 8px;
  }

  .product-grid .gc-title {
    font-size: 0.75rem;
  }

  .product-grid .gc-price-current {
    font-size: 0.9rem;
  }

  .product-grid .gc-btn {
    width: 28px;
    height: 28px;
  }
}

/* ─────────────────────────────────────────────────────────────────────────────
    RESPONSIVE (480px altı)
    ───────────────────────────────────────────────────────────────────────────── */
@media (max-width: 480px) {
  .menu-toggle {
    display: flex;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ─────────────────────────────────────────────────────────────────────────────
   RESPONSIVE (768px altı)
   ───────────────────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero {
    padding: var(--space-2xl) 0;
  }

  .hero-title {
    font-size: 2rem;
  }

  .section {
    padding: var(--space-2xl) 0;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }

  .hero-actions {
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }
}

/* ─────────────────────────────────────────────────────────────────────────────
   RESPONSIVE (480px altı)
   ───────────────────────────────────────────────────────────────────────────── */
@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: 1fr;
  }

  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ─────────────────────────────────────────────────────────────────────────────
   ANIMATIONS
   ───────────────────────────────────────────────────────────────────────────── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.animate-in {
  animation: fadeInUp 0.6s ease-out forwards;
}

.animate-in:nth-child(1) { animation-delay: 0.1s; }
.animate-in:nth-child(2) { animation-delay: 0.2s; }
.animate-in:nth-child(3) { animation-delay: 0.3s; }
.animate-in:nth-child(4) { animation-delay: 0.4s; }

/* ─────────────────────────────────────────────────────────────────────────────
   LOADING SKELETON
   ───────────────────────────────────────────────────────────────────────────── */
.skeleton {
  background: linear-gradient(90deg, var(--bg-card) 25%, var(--bg-card-hover) 50%, var(--bg-card) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-md);
}

/* ─────────────────────────────────────────────────────────────────────────────
   UTILITY: Text Gradient
   ───────────────────────────────────────────────────────────────────────────── */
.gradient-text-primary {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─────────────────────────────────────────────────────────────────────────────
   GLASS EFFECT CARD
   ───────────────────────────────────────────────────────────────────────────── */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
}

/* ─────────────────────────────────────────────────────────────────────────────
   GLOW BUTTONS
   ───────────────────────────────────────────────────────────────────────────── */
.glow-btn {
  position: relative;
  overflow: hidden;
}

.glow-btn::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: var(--gradient-brand);
  border-radius: inherit;
  z-index: -1;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.glow-btn:hover::before {
  opacity: 0.5;
  filter: blur(8px);
}

/* ─────────────────────────────────────────────────────────────────────────────
   NOTIFICATION / TOAST
   ───────────────────────────────────────────────────────────────────────────── */
#toast-container {
  position: fixed;
  top: calc(var(--header-height) + 20px);
  right: 20px;
  z-index: var(--z-tooltip);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  pointer-events: none;
}

.toast {
  padding: var(--space-md) var(--space-lg);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: var(--space-md);
  pointer-events: all;
  animation: slideInRight 0.3s ease;
}

.toast.success {
  border-left: 3px solid var(--brand-success);
}

.toast.error {
  border-left: 3px solid var(--brand-danger);
}

.toast.info {
  border-left: 3px solid var(--brand-secondary);
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* ─────────────────────────────────────────────────────────────────────────────
   COOKIE BANNER
   ───────────────────────────────────────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  box-shadow: var(--shadow-lg);
  z-index: var(--z-modal);
  display: none;
  max-width: 90vw;
  width: 500px;
}

.cookie-banner.show {
  display: block;
}

/* ─────────────────────────────────────────────────────────────────────────────
   BACK TO TOP
   ───────────────────────────────────────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--gradient-brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-inverse);
  box-shadow: var(--shadow-glow-primary);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-normal);
  z-index: var(--z-sticky);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-4px);
}

/* ─────────────────────────────────────────────────────────────────────────────
   STAT COUNTERS
   ───────────────────────────────────────────────────────────────────────────── */
.stat-item {
  text-align: center;
  padding: var(--space-xl);
}

.stat-number {
  font-size: 3rem;
  font-weight: 900;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* ─────────────────────────────────────────────────────────────────────────────
   FEATURE CARDS
   ───────────────────────────────────────────────────────────────────────────── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
}

.feature-card {
  padding: var(--space-xl);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  text-align: center;
  transition: all var(--transition-normal);
}

.feature-card:hover {
  border-color: var(--brand-primary);
  transform: translateY(-4px);
}

.feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto var(--space-md);
  background: var(--gradient-brand);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.feature-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.feature-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* ─────────────────────────────────────────────────────────────────────────────
   BADGES
   ───────────────────────────────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-primary {
  background: var(--brand-primary);
  color: var(--text-inverse);
}

.badge-secondary {
  background: var(--brand-secondary);
  color: #fff;
}

.badge-success {
  background: var(--brand-success);
  color: var(--text-inverse);
}

.badge-warning {
  background: var(--brand-warning);
  color: var(--text-inverse);
}

.badge-danger {
  background: var(--brand-danger);
  color: #fff;
}

/* ─────────────────────────────────────────────────────────────────────────────
   INPUT FIELDS
   ───────────────────────────────────────────────────────────────────────────── */
.input {
  width: 100%;
  padding: var(--space-md);
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.input:focus {
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 4px rgba(0, 255, 163, 0.1);
}

.input::placeholder {
  color: var(--text-muted);
}

/* ─────────────────────────────────────────────────────────────────────────────
   TABLES
   ───────────────────────────────────────────────────────────────────────────── */
.table {
  width: 100%;
  border-collapse: collapse;
}

.table th,
.table td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--border-subtle);
}

.table th {
  font-weight: 600;
  color: var(--text-secondary);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.table tr:hover {
  background: var(--bg-surface);
}

/* ─────────────────────────────────────────────────────────────────────────────
   PAGINATION
   ───────────────────────────────────────────────────────────────────────────── */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-xl);
}

.page-link {
  min-width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.page-link:hover {
  border-color: var(--brand-primary);
  color: var(--brand-primary);
}

.page-link.active {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  color: var(--text-inverse);
}

/* ─────────────────────────────────────────────────────────────────────────────
   EMPTY STATE
   ───────────────────────────────────────────────────────────────────────────── */
.empty-state {
  text-align: center;
  padding: var(--space-3xl);
}

.empty-icon {
  font-size: 4rem;
  margin-bottom: var(--space-lg);
  opacity: 0.5;
}

.empty-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.empty-text {
  color: var(--text-secondary);
}

/* ─────────────────────────────────────────────────────────────────────────────
   SPINNERS
   ───────────────────────────────────────────────────────────────────────────── */
.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--border-subtle);
  border-top-color: var(--brand-primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ─────────────────────────────────────────────────────────────────────────────
   OVERLAYS
   ───────────────────────────────────────────────────────────────────────────── */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
  z-index: var(--z-modal-backdrop);
}

/* ─────────────────────────────────────────────────────────────────────────────
   MODAL
   ───────────────────────────────────────────────────────────────────────────── */
.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-2xl);
  max-width: 90vw;
  max-height: 90vh;
  z-index: var(--z-modal);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg);
  border-bottom: 1px solid var(--border-subtle);
}

.modal-title {
  font-size: 1.25rem;
  font-weight: 700;
}

.modal-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  cursor: pointer;
}

.modal-body {
  padding: var(--space-lg);
  max-height: 60vh;
  overflow-y: auto;
}

.modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: var(--space-md);
  padding: var(--space-lg);
  border-top: 1px solid var(--border-subtle);
}

/* ─────────────────────────────────────────────────────────────────────────────
   TABS
   ───────────────────────────────────────────────────────────────────────────── */
.tabs {
  display: flex;
  gap: var(--space-xs);
  padding: var(--space-xs);
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-lg);
}

.tab {
  padding: var(--space-sm) var(--space-md);
  background: transparent;
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.tab:hover {
  color: var(--text-primary);
}

.tab.active {
  background: var(--gradient-brand);
  color: var(--text-inverse);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

/* ─────────────────────────────────────────────────────────────────────────────
   BREADCRUMB
   ───────────────────────────────────────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.breadcrumb a {
  color: var(--text-secondary);
}

.breadcrumb a:hover {
  color: var(--brand-primary);
}

.breadcrumb-separator {
  color: var(--border-subtle);
}

/* ─────────────────────────────────────────────────────────────────────────────
   CATEGORY CARDS — GLASS NEUMORPHISM
   ───────────────────────────────────────────────────────────────────────────── */
.category-section {
  margin-bottom: var(--space-2xl);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.cc-card {
  position: relative;
  background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.cc-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,230,118,0.08), transparent);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.cc-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: 0 16px 48px rgba(0,230,118,0.12);
}

.cc-card:hover::before {
  opacity: 1;
}

.cc-img {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #1a1a2e, #16162a);
  overflow: hidden;
}

.cc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.cc-card:hover .cc-img img {
  transform: scale(1.08);
}

.cc-placeholder {
  width: 100%;
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0,230,118,0.08), rgba(0,230,118,0.02));
}

.cc-placeholder i {
  font-size: 2.5rem;
  color: var(--primary);
  opacity: 0.4;
}

.cc-icon {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1rem;
  z-index: 2;
}

.cc-body {
  padding: 12px;
  position: relative;
  z-index: 2;
}

.cc-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cc-count {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.cc-count span {
  color: var(--primary);
  font-weight: 600;
}

/* Compact category grid */
.cc-grid-compact {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.cc-card-compact {
  background: linear-gradient(145deg, rgba(255,255,255,0.06), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 12px;
  text-decoration: none;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cc-card-compact:hover {
  background: linear-gradient(145deg, rgba(0,230,118,0.1), rgba(0,230,118,0.03));
  border-color: var(--primary);
  transform: translateY(-2px);
}

.cc-card-compact .cc-icon-sm {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, rgba(0,230,118,0.15), rgba(0,230,118,0.05));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1rem;
  flex-shrink: 0;
}

.cc-card-compact .cc-info {
  flex: 1;
  min-width: 0;
}

.cc-card-compact .cc-name {
  font-size: 0.8rem;
  margin-bottom: 2px;
}

.cc-card-compact .cc-count {
  font-size: 0.7rem;
}

.form-label {
  display: block;
  margin-bottom: var(--space-sm);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.form-input,
.form-select,
.form-textarea,
.form-control {
  width: 100%;
  padding: var(--space-md);
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus,
.form-control:focus {
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 4px rgba(0, 255, 163, 0.1);
  outline: none;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

/* ─────────────────────────────────────────────────────────────────────────────
   ALERTS
   ───────────────────────────────────────────────────────────────────────────── */
.alert {
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.alert-success {
  background: rgba(0, 255, 148, 0.1);
  border: 1px solid rgba(0, 255, 148, 0.2);
  color: var(--brand-success);
}

.alert-error {
  background: rgba(255, 71, 87, 0.1);
  border: 1px solid rgba(255, 71, 87, 0.2);
  color: var(--brand-danger);
}

.alert-warning {
  background: rgba(255, 214, 0, 0.1);
  border: 1px solid rgba(255, 214, 0, 0.2);
  color: var(--brand-warning);
}

.alert-info {
  background: rgba(123, 47, 255, 0.1);
  border: 1px solid rgba(123, 47, 255, 0.2);
  color: var(--brand-secondary);
}

/* ─────────────────────────────────────────────────────────────────────────────
   DROPDOWN
   ───────────────────────────────────────────────────────────────────────────── */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: var(--space-xs);
  z-index: var(--z-dropdown);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all var(--transition-fast);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: var(--space-sm) var(--space-md);
  color: var(--text-secondary);
  font-size: 0.9rem;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.dropdown-item:hover {
  background: var(--bg-surface);
  color: var(--text-primary);
}

.dropdown-divider {
  height: 1px;
  background: var(--border-subtle);
  margin: var(--space-xs) 0;
}

/* ─────────────────────────────────────────────────────────────────────────────
   PRICE DISPLAY
   ───────────────────────────────────────────────────────────────────────────── */
.price {
  font-family: 'SF Pro Display', sans-serif;
  font-weight: 700;
}

.price-lg {
  font-size: 1.5rem;
}

.price-xl {
  font-size: 2rem;
}

.price-original {
  text-decoration: line-through;
  color: var(--text-muted);
  font-size: 0.85em;
}

.discount {
  color: var(--brand-success);
  font-weight: 700;
}

/* ─────────────────────────────────────────────────────────────────────────────
   RATING STARS
   ───────────────────────────────────────────────────────────────────────────── */
.rating {
  display: flex;
  gap: 2px;
}

.star {
  color: var(--brand-warning);
}

.star.empty {
  color: var(--border-subtle);
}

/* ─────────────────────────────────────────────────────────────────────────────
   PLATFORM ICONS
   ───────────────────────────────────────────────────────────────────────────── */
.platform-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  font-size: 1rem;
}

/* ─────────────────────────────────────────────────────────────────────────────
   GAME CARD GRADIENT BACKGROUNDS
   ───────────────────────────────────────────────────────────────────────────── */
.game-gradient-1 {
  background: linear-gradient(135deg, #1a1a4e 0%, #2d1b69 100%);
}

.game-gradient-2 {
  background: linear-gradient(135deg, #0d1b2a 0%, #1b3a5c 100%);
}

.game-gradient-3 {
  background: linear-gradient(135deg, #1a0a00 0%, #4a1800 100%);
}

.game-gradient-4 {
  background: linear-gradient(135deg, #00102a 0%, #001f5c 100%);
}

.game-gradient-5 {
  background: linear-gradient(135deg, #0a1a00 0%, #1a3a00 100%);
}

.game-gradient-steam {
  background: linear-gradient(135deg, #1a281f 0%, #2a4f35 100%);
}

.game-gradient-playstation {
  background: linear-gradient(135deg, #003791 0%, #0096d6 100%);
}

.game-gradient-xbox {
  background: linear-gradient(135deg, #107C10 0%, #228a2c 100%);
}

/* ═════════════════════════════════════════════════════════════════════════════
   END OF MAIN CSS
   ═════════════════════════════════════════════════════════════════════════════ */


/* ═══════════════════════════════════════════════════════════════════════════
   MOBILE RESPONSIVE - HERO SECTION FIX
   ═══════════════════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
  .hero {
    padding: 80px 0 60px 0 !important;
    min-height: auto !important;
  }
  
  .hero-content {
    padding: 0 var(--space-md);
  }
  
  .hero-badge {
    font-size: 0.7rem;
    padding: 6px 12px;
    margin-bottom: var(--space-md);
  }
  
  .hero-title {
    font-size: 2rem !important;
    line-height: 1.2;
  }
  
  .hero-subtitle {
    font-size: 1rem !important;
    line-height: 1.6;
  }
  
  .hero-ctas {
    flex-direction: column;
    gap: 12px;
  }
  
  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 70px 0 40px 0 !important;
  }
  
  .hero-title {
    font-size: 1.75rem !important;
  }
  
  .hero-subtitle {
    font-size: 0.9rem !important;
  }
}

/* ── Homepage Contact Section Mobile ── */
@media (max-width: 768px) {
  .contact-home-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  .contact-form-row {
    grid-template-columns: 1fr !important;
  }
}


/* ═══════════════════════════════════════════════════════════════════════════
   PRODUCTS LAYOUT & SIDEBAR
   ═══════════════════════════════════════════════════════════════════════════ */

.products-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  align-items: start;
}

.sidebar {
  position: sticky;
  top: calc(var(--header-height) + var(--topbar-height) + var(--nav-bar-height) + 20px);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  max-height: calc(100vh - var(--header-height) - var(--topbar-height) - var(--nav-bar-height) - 40px);
  overflow-y: auto;
}

.sidebar::-webkit-scrollbar {
  width: 6px;
}

.sidebar::-webkit-scrollbar-track {
  background: transparent;
}

.sidebar::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.15);
  border-radius: 3px;
}

.products-main {
  flex: 1;
  min-width: 0;
}

.filter-group {
  margin-bottom: 24px;
}

.filter-group-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.filter-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.filter-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.filter-option:hover {
  background: var(--bg-hover);
  color: var(--text-primary);
}

.filter-option input[type="radio"],
.filter-option input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.filter-option input[type="radio"]:checked + span,
.filter-option input[type="checkbox"]:checked + span {
  color: var(--primary);
  font-weight: 600;
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Mobile Responsive */
@media (max-width: 1200px) {
  .products-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
}

@media (max-width: 992px) {
  .products-layout {
    grid-template-columns: 1fr;
  }
  
  .sidebar {
    position: static;
    max-height: none;
    margin-bottom: 24px;
  }
  
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   CATEGORY LAYOUT
   ═══════════════════════════════════════════════════════════════════════════ */

.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.cat-banner {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 32px;
  text-align: center;
}

.cat-banner h1 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.cat-banner p {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .cat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .cat-banner {
    padding: 24px 16px;
  }
  
  .cat-banner h1 {
    font-size: 1.5rem;
  }
  
  .cat-banner p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .cat-grid {
    grid-template-columns: 1fr;
  }
}


/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE SIDEBAR LAYOUTS — ALL PAGES
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Cart Page (.cart-layout: 1fr 380px) ── */
@media (max-width: 992px) {
  .cart-layout {
    grid-template-columns: 1fr;
  }
  .cart-summary {
    position: static;
  }
}

/* ── Checkout/Payment Page (.checkout-layout: 1fr 360px) ── */
@media (max-width: 992px) {
  .checkout-layout {
    grid-template-columns: 1fr;
  }
  .order-summary-card {
    position: static;
  }
}

/* ── Account Page (.account-layout: 260px 1fr) ── */
@media (max-width: 992px) {
  .account-layout {
    grid-template-columns: 1fr;
  }
  .account-sidebar {
    position: static;
  }
}

/* ── Product Detail Page (.detail-layout: 1fr 420px) ── */
@media (max-width: 1024px) {
  .detail-layout {
    grid-template-columns: 1fr 320px;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .detail-layout {
    grid-template-columns: 1fr;
  }
  .sticky-sidebar {
    position: static;
  }
}

/* ── SSS (FAQ) Page (.sss-layout: 220px 1fr) ── */
@media (max-width: 992px) {
  .sss-layout {
    grid-template-columns: 1fr;
  }
  .sss-nav {
    position: static;
    margin-bottom: 24px;
  }
}

/* ── Blog Listing Page (.blog-layout: 1fr 300px) ── */
@media (max-width: 992px) {
  .blog-layout {
    grid-template-columns: 1fr;
  }
}

/* ── Blog Detail / Article Page (.article-layout: 1fr 300px) ── */
@media (max-width: 992px) {
  .article-layout {
    grid-template-columns: 1fr;
  }
  .toc-card {
    position: static;
    margin-bottom: 24px;
  }
}

/* ── Orders Page (.orders-layout: 240px 1fr) ── */
@media (max-width: 992px) {
  .orders-layout {
    grid-template-columns: 1fr;
  }
}

/* ── Order Detail Page (.od-grid: 1fr 360px) ── */
@media (max-width: 992px) {
  .od-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Balance Top-up Page (.bakiye-layout: 1fr 360px) ── */
@media (max-width: 992px) {
  .bakiye-layout {
    grid-template-columns: 1fr;
  }
  .bakiye-layout .summary-card {
    position: static;
  }
}

/* ── Search Results Page (.results-layout: 280px 1fr) ── */
@media (max-width: 992px) {
  .results-layout {
    grid-template-columns: 1fr;
  }
  .search-sidebar {
    position: static;
    margin-bottom: 24px;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════════
   SECTION ACTIONS (Blog heading + button row)
   ═══════════════════════════════════════════════════════════════════════════════ */
.section-actions-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.section-actions-title {
  font-size: 1.8rem;
  font-weight: 900;
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   COVER ART — blog placeholder gradients
   ═══════════════════════════════════════════════════════════════════════════════ */
.cover-art {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cover-art.g1 { background: linear-gradient(135deg, #1a0b40 0%, #3d1a7a 100%); }
.cover-art.g2 { background: linear-gradient(135deg, #0d2040 0%, #0d5073 100%); }
.cover-art.g4 { background: linear-gradient(135deg, #0d2a0d 0%, #1a5a20 100%); }
.cover-art.g7 { background: linear-gradient(135deg, #402010 0%, #7a3a10 100%); }

/* ═══════════════════════════════════════════════════════════════════════════════
   BLOG CARDS
   ═══════════════════════════════════════════════════════════════════════════════ */
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform .35s cubic-bezier(.16,1,.3,1),
              border-color .25s ease,
              box-shadow .35s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0,230,118,.3);
  box-shadow: 0 24px 64px rgba(0,0,0,.35), 0 0 0 1px rgba(0,230,118,.06);
}

.blog-card-img {
  position: relative;
  height: 180px;
  overflow: hidden;
  background: linear-gradient(135deg, #0d0d1a, #1a1040);
  flex-shrink: 0;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
  display: block;
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.07);
}

.blog-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,15,30,.75) 0%, transparent 55%);
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
}

.blog-card:hover .blog-card-img::after {
  opacity: 1;
}

.blog-card-body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.blog-card-cat {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  background: var(--primary);
  color: #000;
  flex-shrink: 0;
}

.blog-card-date {
  font-size: .72rem;
  color: var(--text-muted);
}

.blog-card-title {
  font-size: .97rem;
  font-weight: 700;
  line-height: 1.45;
  margin: 0 0 8px;
  color: var(--text-primary);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color .2s ease;
}

.blog-card:hover .blog-card-title {
  color: var(--primary);
}

.blog-card-excerpt {
  font-size: .82rem;
  color: var(--text-secondary);
  line-height: 1.65;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 16px;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  margin-top: auto;
  transition: gap .2s ease;
  letter-spacing: .02em;
}

.blog-read-more:hover {
  gap: 12px;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   TESTIMONIAL CARDS
   ═══════════════════════════════════════════════════════════════════════════════ */
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .35s cubic-bezier(.16,1,.3,1),
              border-color .25s ease,
              box-shadow .35s ease;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-brand);
  opacity: 0;
  transition: opacity .3s ease;
}

.testimonial-card::after {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(0,230,118,.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0,230,118,.25);
  box-shadow: 0 24px 64px rgba(0,0,0,.28), 0 0 0 1px rgba(0,230,118,.05);
}

.testimonial-card:hover::before {
  opacity: 1;
}

.quote-icon {
  color: var(--primary);
  font-size: 1.8rem;
  opacity: .25;
  margin-bottom: 14px;
  display: block;
  line-height: 1;
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 14px;
  color: #FFD700;
  font-size: .85rem;
}

.testimonial-text {
  font-size: .92rem;
  color: var(--text-secondary);
  line-height: 1.8;
  flex: 1;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 18px;
  margin-top: auto;
}

.author-ava {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  font-weight: 800;
  font-family: 'Space Grotesk', sans-serif;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(0,0,0,.25);
}

.author-name {
  font-size: .9rem;
  font-weight: 700;
  color: var(--text-primary);
}

.author-info {
  font-size: .75rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   SOCIAL MEDIA SECTION
   ═══════════════════════════════════════════════════════════════════════════════ */
.social-section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.social-section-left {
  display: flex;
  flex-direction: column;
}

.social-section-title {
  font-size: 2.2rem;
  font-weight: 900;
  margin: 14px 0 14px;
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1.2;
}

.social-section-desc {
  color: var(--text-secondary);
  font-size: .92rem;
  line-height: 1.75;
  margin-bottom: 28px;
}

.social-cards-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.social-big-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  text-decoration: none;
  transition: transform .3s cubic-bezier(.16,1,.3,1),
              border-color .25s ease,
              box-shadow .3s ease;
  position: relative;
  overflow: hidden;
}

.social-big-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}

.social-big-card:nth-child(1)::before {
  background: linear-gradient(135deg, rgba(64,93,230,.04), rgba(225,48,108,.04), rgba(247,119,55,.04));
}

.social-big-card:nth-child(2)::before {
  background: linear-gradient(135deg, rgba(24,119,242,.06), transparent);
}

.social-big-card:hover {
  transform: translateX(6px);
  box-shadow: 0 12px 40px rgba(0,0,0,.25);
}

.social-big-card:nth-child(1):hover { border-color: rgba(225,48,108,.35); }
.social-big-card:nth-child(2):hover { border-color: rgba(24,119,242,.35); }
.social-big-card:hover::before { opacity: 1; }

.social-big-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  flex-shrink: 0;
}

.social-ig {
  background: linear-gradient(135deg, #405DE6 0%, #E1306C 50%, #F77737 100%);
  box-shadow: 0 6px 20px rgba(225,48,108,.35);
}

.social-fb {
  background: #1877F2;
  box-shadow: 0 6px 20px rgba(24,119,242,.35);
}

.social-big-info {
  flex: 1;
  min-width: 0;
}

.social-big-name {
  font-size: .97rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 3px;
}

.social-big-handle {
  font-size: .78rem;
  color: var(--text-muted);
}

.social-big-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  background: rgba(0,230,118,.1);
  border: 1px solid rgba(0,230,118,.2);
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
  flex-shrink: 0;
  transition: background .2s ease, gap .2s ease;
}

.social-big-card:hover .social-big-btn {
  background: rgba(0,230,118,.18);
  gap: 10px;
}

/* Right side — Instagram grid mockup */
.social-section-right {
  position: relative;
}

.social-ig-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  border-radius: 20px;
  overflow: hidden;
}

.social-ig-cell {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: rgba(255,255,255,.5);
  transition: transform .3s ease, color .3s ease;
}

.social-ig-cell:hover {
  transform: scale(1.04);
  color: #fff;
}

.ig-cell-1 { background: linear-gradient(135deg, #405DE6, #E1306C); color: rgba(255,255,255,.9); }
.ig-cell-2 { background: linear-gradient(135deg, #1a0b40, #3d1a7a); }
.ig-cell-3 { background: linear-gradient(135deg, #0d2a0d, #1a5a20); }
.ig-cell-4 { background: linear-gradient(135deg, #403010, #7a5a10); }
.ig-cell-5 { background: linear-gradient(135deg, #0d2040, #0d5073); }
.ig-cell-6 { background: linear-gradient(135deg, #2a0d40, #5a1a7a); }

.social-ig-follow-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  padding: 14px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
}

.social-ig-badge-avatar {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #405DE6, #E1306C, #F77737);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
}

.social-ig-badge-name {
  font-size: .88rem;
  font-weight: 700;
  color: var(--text-primary);
}

.social-ig-badge-sub {
  font-size: .72rem;
  color: var(--text-muted);
  margin-top: 1px;
}

@media (max-width: 768px) {
  .social-section-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .social-section-right {
    display: none;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   SECTION-TAG  (used across all homepage sections)
   ═══════════════════════════════════════════════════════════════════════════ */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  background: rgba(0,230,118,.08);
  border: 1px solid rgba(0,230,118,.2);
  border-radius: var(--radius-full);
  font-size: .72rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   HOMEPAGE FAQ SECTION
   ═══════════════════════════════════════════════════════════════════════════ */
.faq-layout {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: start;
}

.faq-info {
  position: sticky;
  top: calc(var(--header-h) + 32px);
}

.faq-info-title {
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1.15;
  margin: 14px 0 18px;
  font-family: 'Space Grotesk', sans-serif;
}

.faq-info-desc {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 28px;
  font-size: .95rem;
}

.faq-deco {
  margin-top: 44px;
  position: relative;
  display: inline-block;
}

.faq-deco-glow {
  position: absolute;
  inset: -30px;
  background: radial-gradient(circle at center, rgba(0,230,118,.18) 0%, rgba(124,58,237,.08) 50%, transparent 70%);
  border-radius: 50%;
  animation: pulse 3.5s ease-in-out infinite;
  pointer-events: none;
}

.faq-deco-card {
  width: 190px;
  height: 190px;
  background: linear-gradient(135deg, rgba(26,16,64,.9), rgba(42,26,96,.85));
  border-radius: 28px;
  border: 1px solid rgba(124,58,237,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  position: relative;
  z-index: 1;
  animation: float 4s ease-in-out infinite;
  box-shadow: 0 24px 64px rgba(0,0,0,.45), 0 0 0 1px rgba(255,255,255,.04), inset 0 1px 0 rgba(255,255,255,.06);
}

.faq-deco-badge {
  position: absolute;
  bottom: -10px;
  right: -14px;
  background: var(--primary);
  color: #000;
  font-size: .68rem;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 50px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0,230,118,.35);
  z-index: 2;
  letter-spacing: .02em;
}

/* FAQ accordion items */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color .25s ease, box-shadow .25s ease, transform .2s ease;
  cursor: pointer;
}

.faq-item:hover {
  border-color: rgba(0,230,118,.25);
  box-shadow: 0 4px 28px rgba(0,0,0,.2);
  transform: translateY(-1px);
}

.faq-item.open {
  border-color: rgba(0,230,118,.35);
  box-shadow: 0 8px 40px rgba(0,230,118,.07), 0 2px 8px rgba(0,0,0,.15);
}

.faq-q {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 22px;
  user-select: none;
}

.faq-num {
  font-size: .68rem;
  font-weight: 800;
  color: var(--primary);
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: .06em;
  opacity: .5;
  flex-shrink: 0;
  width: 22px;
  transition: opacity .25s ease;
}

.faq-item.open .faq-num {
  opacity: 1;
}

.faq-q-text {
  flex: 1;
  font-size: .93rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.45;
}

.faq-q-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  flex-shrink: 0;
  transition: all .3s cubic-bezier(.16,1,.3,1);
  color: var(--text-muted);
  background: rgba(255,255,255,.03);
}

.faq-item:hover .faq-q-icon {
  border-color: rgba(0,230,118,.4);
  color: var(--primary);
}

.faq-item.open .faq-q-icon {
  border-color: var(--primary);
  background: rgba(0,230,118,.12);
  color: var(--primary);
  transform: rotate(180deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s cubic-bezier(.16,1,.3,1);
}

.faq-a-inner {
  padding: 14px 22px 20px 58px;
  font-size: .88rem;
  color: var(--text-secondary);
  line-height: 1.8;
  border-top: 1px solid var(--border);
}

.faq-item.open .faq-a {
  max-height: 500px;
}

@media (max-width: 992px) {
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .faq-info {
    position: static;
  }
  .faq-deco {
    display: none;
  }
}

/* =========================================================================
   MOBILE FIXES FOR SECTION ACTIONS
   ========================================================================= */
@media (max-width: 768px) {
  .section-actions {
    margin-bottom: var(--space-lg);
  }
  .section-title-lg {
    font-size: 1.8rem;
  }
}
@media (max-width: 480px) {
  .section-actions {
    flex-wrap: nowrap !important;
    gap: 10px;
    align-items: center;
  }
  .section-actions > div {
    flex: 1 1 auto;
    min-width: 0;
  }
  .section-actions .section-title-lg, .section-actions .section-actions-title {
    font-size: 1.35rem !important;
    line-height: 1.2;
    margin-bottom: 0 !important;
    margin-top: 4px !important;
  }
  .section-actions .badge {
    font-size: 0.65rem !important;
    padding: 2px 6px;
  }
  .section-actions .btn {
    width: auto !important;
    padding: 8px 12px !important;
    font-size: 0.75rem !important;
    flex-shrink: 0;
    white-space: nowrap;
  }
}

/* Breadcrumbs Fix */
.breadcrumb-nav { margin-bottom: 20px; }
.breadcrumb-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.breadcrumb-item a { color: var(--text-secondary); text-decoration: none; transition: color 0.2s; }
.breadcrumb-item a:hover { color: var(--primary); }
.breadcrumb-item.active { color: var(--text-primary); font-weight: 500; }
.breadcrumb-sep { color: var(--border); font-size: 0.70rem; }

/* ─────────────────────────────────────────────────────────────────────────────
   ACCESSIBILITY: Reduced Motion
   ───────────────────────────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  .reveal,
  .product-card,
  .category-card,
  .feature-card,
  .hero-content,
  .hero-badge,
  .hero-title,
  .hero-subtitle,
  .hero-cta,
  .hero-image,
  .floating-cards .mini-stat-card,
  .floating-cards .mini-product-card {
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
  
  .skip-link {
    transition: none !important;
  }
}

/* ─────────────────────────────────────────────────────────────────────────────
   ACCESSIBILITY: Visually Hidden (Screen Reader Only)
   ───────────────────────────────────────────────────────────────────────────── */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Focus visible for keyboard navigation */
:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}
