:root {
  /* ITEMSATIŞ BENZERİ PROFESYONEL RENK PALETİ */
  --primary-blue: #1e40af; /* Ana mavi - itemsatış benzeri */
  --primary-blue-light: #3b82f6; /* Açık mavi */
  --primary-blue-dark: #1e3a8a; /* Koyu mavi */
  --accent-orange: #ea580c; /* Turuncu vurgu - itemsatış benzeri */
  --accent-orange-light: #fb923c; /* Açık turuncu */
  --accent-teal: #0d9488; /* Teal vurgu */
  --accent-green: #16a34a; /* Yeşil vurgu */

  /* ZENGİN GRİ TEMA - DESENLİ */
  --bg-primary: #252525; /* Ana arka plan */
  --bg-secondary: #1a1a1a; /* İkincil arka plan - koyu gri */
  --bg-card: #2a2a2a; /* Kart arka planı */
  --bg-hover: #303030; /* Hover arka planı */
  --bg-dark: #151515; /* Koyu arka plan (header/footer) */
  --bg-dark-card: #222222; /* Koyu kart */
  --bg-gradient: #1e40af;

  /* TEXT COLORS - GRİ TEMA */
  --text-primary: #e5e5e5; /* Ana metin - açık gri */
  --text-secondary: #b0b0b0; /* İkincil metin */
  --text-light: #ffffff; /* Açık metin */
  --text-gray: #888888; /* Gri metin */
  --text-muted: #666666; /* Soluk metin */

  /* BORDER COLORS - GRİ TEMA */
  --border-light: #404040; /* Açık border */
  --border-medium: #4a4a4a; /* Orta border */
  --border-dark: #555555; /* Koyu border */

  /* STATUS COLORS */
  --success: #16a34a; /* Yeşil - başarı */
  --error: #dc2626; /* Kırmızı - hata */
  --warning: #ea580c; /* Turuncu - uyarı */
  --info: #3b82f6; /* Mavi - bilgi */

  /* SADE RENKLER - GRADIENT YOK */
  --gradient-primary: #1e40af;
  --gradient-hero: #1e40af;
  --gradient-accent: #ea580c;
  --gradient-success: #16a34a;
  --gradient-dark: #1a1a1a;

  /* ITEMSATIŞ BENZERİ SHADOWS - YUMUŞAK */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 10px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 30px rgba(0, 0, 0, 0.12);
  --shadow-primary: 0 8px 20px -5px rgba(30, 64, 175, 0.25);
  --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.06);

  /* LEGACY SUPPORT */
  --primary-purple: var(--primary-blue);
  --primary-indigo: var(--primary-blue);
  --primary-violet: var(--primary-blue-light);
  --accent-pink: var(--accent-orange);
  --accent-amber: var(--accent-orange);
  --accent-emerald: var(--accent-green);
  --primary-cyan: var(--primary-blue-light);
  --primary-gold: var(--accent-orange);
  --primary-orange: var(--accent-orange);
  --primary-red: var(--error);
  --dark-bg: var(--bg-dark);
  --dark-card: var(--bg-dark-card);
  --dark-hover: var(--bg-hover);
  --text-light: var(--text-light);
  --text-gray: var(--text-gray);
  --text-dark-gray: var(--text-muted);
  --border-dark: var(--border-dark);
  --gradient-fire: var(--gradient-primary);
  --gradient-epin: var(--gradient-primary);
  --gradient-premium: var(--gradient-primary);
  --shadow-gold: var(--shadow-primary);
  --shadow-blue: var(--shadow-primary);
  --shadow-premium: var(--shadow-primary);
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  /* Custom property for viewport height (fixes mobile browser address bar issue) */
  --vh: 1vh;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: 
    /* Base gradient - chill tonlar */
    linear-gradient(135deg, #1a1a1a 0%, #1d1d22 25%, #1a1a1a 50%, #1d1d22 75%, #1a1a1a 100%),
    /* Animated gradient orbs - daha yumuşak tonlar */
    radial-gradient(circle at 15% 30%, rgba(30, 64, 175, 0.12) 0%, transparent 60%),
    radial-gradient(circle at 85% 70%, rgba(59, 130, 246, 0.1) 0%, transparent 60%),
    radial-gradient(circle at 50% 10%, rgba(30, 64, 175, 0.08) 0%, transparent 55%),
    radial-gradient(circle at 25% 80%, rgba(99, 102, 241, 0.08) 0%, transparent 55%),
    radial-gradient(circle at 75% 50%, rgba(30, 64, 175, 0.1) 0%, transparent 50%),
    /* Dotted pattern - daha hafif */
    radial-gradient(circle at 2px 2px, rgba(59, 130, 246, 0.08) 1px, transparent 0),
    /* Grid pattern - daha hafif */
    linear-gradient(rgba(30, 64, 175, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 64, 175, 0.04) 1px, transparent 1px);
  background-size: 
    200% 200%,
    100% 100%,
    100% 100%,
    100% 100%,
    100% 100%,
    100% 100%,
    100% 100%,
    100% 100%,
    20px 20px,
    60px 60px,
    60px 60px;
  background-attachment: fixed;
  background-position: 
    0% 0%,
    0 0,
    0 0,
    0 0,
    0 0,
    0 0,
    0 0,
    0 0,
    0 0,
    0 0,
    0 0;
  animation: none !important;
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-weight: 400;
  letter-spacing: 0;
  position: relative;
}

@keyframes backgroundMove {
  0%, 100% {
    background-position: 
      0% 0%,
      0 0,
      0 0,
      0 0,
      0 0,
      0 0,
      0 0,
      0 0,
      0 0;
  }
  50% {
    background-position: 
      100% 100%,
      20px 20px,
      -20px -20px,
      30px 30px,
      -30px -30px,
      0 0,
      10px 10px,
      0 0,
      0 0;
  }
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    /* Diagonal gradients - chill tonlar */
    linear-gradient(135deg, rgba(30, 64, 175, 0.08) 0%, transparent 35%, rgba(99, 102, 241, 0.06) 100%),
    linear-gradient(45deg, rgba(59, 130, 246, 0.06) 0%, transparent 45%, rgba(30, 64, 175, 0.08) 100%),
    linear-gradient(225deg, rgba(139, 92, 246, 0.04) 0%, transparent 55%),
    linear-gradient(315deg, rgba(59, 130, 246, 0.04) 0%, transparent 50%),
    /* Noise texture - daha belirgin */
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(30, 64, 175, 0.03) 2px,
      rgba(30, 64, 175, 0.03) 4px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 2px,
      rgba(59, 130, 246, 0.03) 2px,
      rgba(59, 130, 246, 0.03) 4px
    );
  pointer-events: none;
  z-index: 0;
  animation: none !important;
  opacity: 0.95;
}

body::after {
  content: "";
  position: fixed;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: 
    /* Chill dönen gradient'ler */
    radial-gradient(circle at 30% 30%, rgba(30, 64, 175, 0.06) 0%, transparent 65%),
    radial-gradient(circle at 70% 70%, rgba(59, 130, 246, 0.05) 0%, transparent 65%),
    radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  animation: none !important;
  opacity: 0.6;
}

@keyframes backgroundShift {
  0%, 100% {
    opacity: 1;
    transform: translate(0, 0);
  }
  50% {
    opacity: 0.8;
    transform: translate(20px, 20px);
  }
}

@keyframes rotateBackground {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

body > * {
  position: relative;
  z-index: 1;
}

/* Sade Başlıklar */
h1, h2, h3, h4, h5, h6 {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.4;
  color: var(--text-primary);
}

/* Tüm yazılar belirli olacak */
p, span, div, li, td, th, label {
  color: var(--text-primary);
}

a {
  color: var(--text-primary);
}

a:hover {
  color: var(--primary-blue);
}

h1 {
  font-size: 2.5em;
  font-weight: 700;
}

h2 {
  font-size: 2em;
  font-weight: 600;
}

h3 {
  font-size: 1.5em;
  font-weight: 600;
}

.container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1280px;
    width: 100%;
    padding: 0 24px;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1400px;
    width: 100%;
    padding: 0 30px;
  }
}

@media (min-width: 1920px) {
  .container {
    max-width: 1600px;
    padding: 0 40px;
  }
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Flash Messages - Premium Design */
.flash-message {
  position: fixed;
  top: 100px;
  right: 20px;
  padding: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.95) 100%);
  border: 2px solid rgba(99, 102, 241, 0.3);
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(99, 102, 241, 0.2),
    0 0 60px rgba(99, 102, 241, 0.15);
  z-index: 10000;
  animation: slideInRight 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  overflow: hidden;
  max-width: 420px;
  min-width: 320px;
}

.flash-message::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, 
    rgba(99, 102, 241, 0.8) 0%,
    rgba(139, 92, 246, 0.8) 50%,
    rgba(99, 102, 241, 0.8) 100%);
  background-size: 200% 100%;
  animation: none !important;
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.flash-success {
  border-color: rgba(16, 185, 129, 0.4);
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(16, 185, 129, 0.3),
    0 0 60px rgba(16, 185, 129, 0.2);
}

.flash-success::before {
  background: linear-gradient(90deg, 
    rgba(16, 185, 129, 0.8) 0%,
    rgba(5, 150, 105, 0.8) 50%,
    rgba(16, 185, 129, 0.8) 100%);
}

.flash-error {
  border-color: rgba(239, 68, 68, 0.4);
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(239, 68, 68, 0.3),
    0 0 60px rgba(239, 68, 68, 0.2);
}

.flash-error::before {
  background: linear-gradient(90deg, 
    rgba(239, 68, 68, 0.8) 0%,
    rgba(220, 38, 38, 0.8) 50%,
    rgba(239, 68, 68, 0.8) 100%);
}

.flash-warning {
  border-color: rgba(245, 158, 11, 0.4);
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(245, 158, 11, 0.3),
    0 0 60px rgba(245, 158, 11, 0.2);
}

.flash-warning::before {
  background: linear-gradient(90deg, 
    rgba(245, 158, 11, 0.8) 0%,
    rgba(217, 119, 6, 0.8) 50%,
    rgba(245, 158, 11, 0.8) 100%);
}

.flash-info {
  border-color: rgba(59, 130, 246, 0.4);
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(59, 130, 246, 0.3),
    0 0 60px rgba(59, 130, 246, 0.2);
}

.flash-info::before {
  background: linear-gradient(90deg, 
    rgba(59, 130, 246, 0.8) 0%,
    rgba(37, 99, 235, 0.8) 50%,
    rgba(59, 130, 246, 0.8) 100%);
}

.flash-content {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  position: relative;
  z-index: 1;
}

/* Floating messages bubble (left) */
.floating-message-bubble {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 999999;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  color: var(--text-light);
  box-shadow: 0 8px 24px rgba(30, 64, 175, 0.4), 0 0 0 4px rgba(30, 64, 175, 0.1);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 28px;
  border: 3px solid rgba(255, 255, 255, 0.2);
}

.floating-message-bubble:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(30, 64, 175, 0.5), 0 0 0 6px rgba(30, 64, 175, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.floating-message-bubble i {
  font-size: 28px;
}

.floating-message-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--primary-red);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
}

/* Responsive behavior */
@media (max-width: 768px) {
  .floating-message-bubble {
    left: 16px;
    bottom: 16px;
    width: 64px;
    height: 64px;
    font-size: 24px;
  }

  .floating-message-bubble i {
    font-size: 24px;
  }

  .floating-message-badge {
    top: -4px;
    right: -4px;
    min-width: 20px;
    height: 20px;
    font-size: 11px;
  }
}
.flash-content i {
  font-size: 28px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.flash-success i {
  color: white;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  animation: pulseIcon 2s ease-in-out infinite;
}

.flash-error i {
  color: white;
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  animation: pulseIcon 2s ease-in-out infinite;
}

.flash-warning i {
  color: white;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  animation: pulseIcon 2s ease-in-out infinite;
}

.flash-info i {
  color: white;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  animation: pulseIcon 2s ease-in-out infinite;
}

@keyframes pulseIcon {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
  }
}

.flash-content > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 0;
}

.flash-content strong {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.flash-content span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  font-weight: 500;
}

/* Close button for flash message */
.flash-message .flash-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
  z-index: 2;
}

.flash-message .flash-close:hover {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  transform: rotate(90deg);
}

@media (max-width: 768px) {
  .flash-message {
    top: 90px;
    right: 15px;
    left: 15px;
    max-width: none;
    min-width: auto;
  }
  
  .flash-content {
    padding: 16px 20px;
    gap: 12px;
  }
  
  .flash-content i {
    width: 40px;
    height: 40px;
    font-size: 22px;
  }
  
  .flash-content strong {
    font-size: 13px;
  }
  
  .flash-content span {
    font-size: 13px;
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(400px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Grey Header */
.main-header {
  background: var(--bg-dark);
  border-bottom: 1px solid var(--border-dark);
  position: sticky;
  top: 0;
  z-index: 9999;
  box-shadow: var(--shadow-md);
  overflow: visible;
  isolation: isolate;
}

.main-header::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(30, 64, 175, 0.06) 0%, transparent 70%);
  animation: float 10s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.main-header::after {
  content: "";
  position: absolute;
  bottom: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
  animation: float 14s ease-in-out infinite reverse;
  pointer-events: none;
  z-index: 0;
}

.main-header > * {
  position: relative;
  z-index: 1;
}

.header-top {
  background: var(--bg-dark);
  padding: 10px 0;
  border-bottom: 1px solid var(--border-dark);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: visible;
  z-index: 1001;
}

.header-top::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(30, 64, 175, 0.05) 0%, transparent 70%);
  animation: float 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.header-top > .container {
  position: relative;
  z-index: 1;
  overflow: visible;
}

.header-top-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  flex-wrap: wrap;
  gap: 8px;
  min-height: 40px;
  overflow: visible;
}

.header-left-links {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  flex: 1;
  min-width: 0;
}

.header-link-btn {
  color: var(--text-light);
  font-size: 11px;
  padding: 6px 12px;
  border-radius: 6px;
  border: 1px solid var(--border-medium);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  flex-shrink: 0;
  gap: 5px;
  background: var(--bg-card);
  font-weight: 500;
  min-height: 32px;
}

.header-link-btn:hover {
  border-color: var(--primary-blue);
  color: var(--text-light);
  background: var(--primary-blue);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
}

.header-link-btn i {
  font-size: 14px;
}

.language-selector {
  position: relative;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 20px;
  border: 1px solid var(--border-dark);
  background: transparent;
  color: var(--text-gray);
  font-size: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lang-btn:hover {
  border-color: var(--accent-orange);
  color: var(--accent-orange);
}

.lang-btn i {
  font-size: 13px;
}

.header-auth {
  display: flex;
  gap: 10px;
  align-items: center;
  position: relative;
  overflow: visible;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.auth-link {
  color: var(--text-gray);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.auth-link:hover {
  color: var(--accent-orange);
}

.btn-register {
  background: var(--gradient-primary);
  color: var(--text-light);
  font-weight: 500;
}

.btn-register:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-primary);
}

/* User Menu */
.user-menu-wrapper {
  position: relative;
  z-index: 10000;
}

/* Simple Profile Button */
.user-profile-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(139, 92, 246, 0.15));
  border: 1px solid rgba(99, 102, 241, 0.3);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  color: var(--text-primary);
}

.user-profile-btn:hover {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.25), rgba(139, 92, 246, 0.25));
  border-color: rgba(99, 102, 241, 0.5);
}

.user-profile-btn.active {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.3), rgba(139, 92, 246, 0.3));
  border-color: rgba(99, 102, 241, 0.6);
}

.user-profile-btn img,
.user-profile-btn .user-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
}

.user-profile-text {
  font-size: 13px;
  font-weight: 600;
  max-width: 100px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.user-profile-btn i {
  font-size: 10px;
  color: rgba(139, 92, 246, 0.8);
  transition: transform 0.2s ease;
}

.user-profile-btn.active i {
  transform: rotate(180deg);
}

.header-actions {
  position: relative;
  z-index: 2147483647;
  isolation: isolate;
}

/* Premium Login/Register Button */
.user-button {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 12px;
  color: var(--text-light);
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 50%, rgba(139, 92, 246, 0.9) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 4px 16px rgba(30, 64, 175, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  z-index: 1;
}

.user-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transition: left 0.6s ease;
  z-index: 1;
}

.user-button:hover::before {
  left: 100%;
}

.user-button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.user-button i {
  font-size: 18px;
  z-index: 2;
  position: relative;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
  transition: transform 0.3s ease;
}

.user-button span {
  z-index: 2;
  position: relative;
  line-height: 1.3;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.user-button span strong {
  display: block;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.2px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.user-button span em {
  display: block;
  font-size: 10px;
  opacity: 0.9;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.1px;
  transition: all 0.3s ease;
}

.user-button:hover span strong {
  transform: translateX(2px);
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.user-button:hover span em {
  opacity: 1;
  transform: translateX(2px);
}

.user-button:hover {
  background: linear-gradient(135deg, var(--primary-blue-light) 0%, var(--primary-blue) 50%, rgba(139, 92, 246, 1) 100%);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 
    0 8px 24px rgba(30, 64, 175, 0.5),
    0 0 0 2px rgba(255, 255, 255, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    0 0 30px rgba(139, 92, 246, 0.3);
  border-color: rgba(255, 255, 255, 0.2);
}

.user-button:hover i {
  transform: scale(1.1) rotate(5deg);
}

.user-button:active {
  transform: translateY(0) scale(0.98);
}

/* ============================================
   PREMIUM USER PROFILE BUTON - YENİ TASARIM
   ============================================ */
.user-profile-button {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 16px;
  color: var(--text-primary);
  background: 
    linear-gradient(135deg, 
      rgba(99, 102, 241, 0.2) 0%,
      rgba(139, 92, 246, 0.18) 25%,
      rgba(59, 130, 246, 0.2) 50%,
      rgba(168, 85, 247, 0.18) 75%,
      rgba(99, 102, 241, 0.2) 100%);
  border: 2px solid transparent;
  background-clip: padding-box;
  position: relative;
  cursor: pointer;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  overflow: visible;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 100;
  pointer-events: auto !important;
}

/* Ensure all children don't block clicks */
.user-profile-button * {
  pointer-events: none;
}

/* Animated Gradient Border */
.user-profile-button::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 16px;
  padding: 2px;
  background: linear-gradient(
    135deg,
    #6366f1 0%,
    #8b5cf6 20%,
    #3b82f6 40%,
    #a855f7 60%,
    #6366f1 80%,
    #8b5cf6 100%
  );
  background-size: 300% 300%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: gradientRotate 4s ease infinite;
  z-index: -1;
  pointer-events: none;
}

@keyframes gradientRotate {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* Shimmer Effect */
.user-profile-button::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.2) 30%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0.2) 70%,
    transparent 100%
  );
  transition: left 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  z-index: 1;
  pointer-events: none;
}

.user-profile-button:hover::after {
  left: 100%;
}

.user-profile-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(255, 255, 255, 0.15) 30%,
    rgba(255, 255, 255, 0.25) 50%,
    rgba(255, 255, 255, 0.15) 70%,
    transparent 100%);
  transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

.user-profile-button::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, 
    rgba(30, 64, 175, 0.2) 0%, 
    rgba(59, 130, 246, 0.1) 30%,
    transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
  pointer-events: none;
}

.user-profile-button:hover::before {
  left: 100%;
}

.user-profile-button:hover::after {
  opacity: 1;
}

/* Premium Avatar Design */
.user-profile-avatar {
  position: relative;
  flex-shrink: 0;
  z-index: 2;
  width: 36px;
  height: 36px;
  pointer-events: none;
}

/* Pulsing Glow Effect */
.user-profile-avatar::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6366f1, #8b5cf6, #3b82f6, #a855f7);
  background-size: 400% 400%;
  opacity: 0;
  filter: blur(12px);
  animation: pulseGlow 3s ease-in-out infinite;
  z-index: -1;
  transition: opacity 0.5s ease;
}

@keyframes pulseGlow {
  0%, 100% {
    opacity: 0;
    transform: scale(0.95);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.05);
  }
}

/* Outer Ring */
.user-profile-avatar::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 3px solid transparent;
  background: linear-gradient(135deg, #6366f1, #8b5cf6, #3b82f6, #a855f7) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.8;
  z-index: 0;
  transition: all 0.5s ease;
}

.user-profile-avatar img,
.user-profile-avatar div {
  width: 36px !important;
  height: 36px !important;
  border-radius: 50% !important;
  border: 3px solid rgba(255, 255, 255, 0.3) !important;
  box-shadow: 
    0 8px 24px rgba(99, 102, 241, 0.4),
    0 0 0 2px rgba(139, 92, 246, 0.2),
    inset 0 2px 4px rgba(255, 255, 255, 0.2),
    inset 0 -2px 4px rgba(0, 0, 0, 0.1) !important;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1)) !important;
}

/* Hover Avatar Effects */
.user-profile-button:hover .user-profile-avatar::before {
  opacity: 0.8;
  animation: pulseGlow 1.5s ease-in-out infinite;
}

.user-profile-button:hover .user-profile-avatar::after {
  opacity: 1;
  transform: scale(1.1);
  border-width: 4px;
}

.user-profile-button:hover .user-profile-avatar img,
.user-profile-button:hover .user-profile-avatar div {
  transform: scale(1.08) rotate(5deg) !important;
  border-color: rgba(255, 255, 255, 0.5) !important;
  box-shadow: 
    0 12px 40px rgba(99, 102, 241, 0.6),
    0 0 0 4px rgba(139, 92, 246, 0.3),
    inset 0 2px 6px rgba(255, 255, 255, 0.3),
    inset 0 -2px 6px rgba(0, 0, 0, 0.15),
    0 0 30px rgba(139, 92, 246, 0.5) !important;
  filter: brightness(1.15) contrast(1.05);
}

/* Premium Info Section */
.user-profile-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  flex: 1;
  min-width: 0;
  z-index: 2;
  position: relative;
  pointer-events: none;
}

.user-profile-label {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  background: linear-gradient(135deg, #a855f7, #6366f1, #3b82f6);
  -webkit-background-clip: text;
  pointer-events: none;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  line-height: 1.2;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
}

.user-profile-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  pointer-events: none;
  text-overflow: ellipsis;
  max-width: 110px;
  line-height: 1.3;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.user-profile-arrow {
  font-size: 10px;
  color: rgba(139, 92, 246, 0.8);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  z-index: 2;
  pointer-events: none;
  filter: drop-shadow(0 2px 4px rgba(139, 92, 246, 0.3));
}

/* Premium Hover Effects */
.user-profile-button:hover {
  transform: translateY(-4px) scale(1.03);
  background: 
    linear-gradient(135deg, 
      rgba(99, 102, 241, 0.3) 0%,
      rgba(139, 92, 246, 0.28) 25%,
      rgba(59, 130, 246, 0.3) 50%,
      rgba(168, 85, 247, 0.28) 75%,
      rgba(99, 102, 241, 0.3) 100%);
  box-shadow: 
    0 16px 48px rgba(99, 102, 241, 0.5),
    0 0 0 2px rgba(139, 92, 246, 0.4),
    inset 0 2px 2px rgba(255, 255, 255, 0.2),
    0 8px 24px rgba(0, 0, 0, 0.3),
    0 0 40px rgba(139, 92, 246, 0.4);
  border-color: rgba(139, 92, 246, 0.5);
}

.user-profile-button:hover::before {
  animation: gradientRotate 2s ease infinite;
}

.user-profile-button:hover .user-profile-label {
  background: linear-gradient(135deg, #c084fc, #818cf8, #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transform: translateX(4px);
  filter: drop-shadow(0 0 8px rgba(139, 92, 246, 0.6));
}

.user-profile-button:hover .user-profile-name {
  color: #ffffff;
  transform: translateX(3px);
  text-shadow: 
    0 0 10px rgba(139, 92, 246, 0.5),
    0 2px 8px rgba(0, 0, 0, 0.3);
}

.user-profile-button:hover .user-profile-arrow {
  color: #c084fc;
  transform: translateY(5px) rotate(180deg);
  filter: drop-shadow(0 0 8px rgba(139, 92, 246, 0.6));
}

/* Active State */
.user-profile-button:active {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 
    0 8px 24px rgba(99, 102, 241, 0.4),
    0 0 0 2px rgba(139, 92, 246, 0.3),
    inset 0 4px 8px rgba(0, 0, 0, 0.15),
    0 0 20px rgba(139, 92, 246, 0.3);
}

/* Focus State */
.user-profile-button:focus {
  outline: none;
  box-shadow: 
    0 8px 32px rgba(99, 102, 241, 0.3),
    0 0 0 3px rgba(139, 92, 246, 0.3),
    inset 0 1px 1px rgba(255, 255, 255, 0.15),
    0 4px 16px rgba(0, 0, 0, 0.2);
}

/* ============================================
   MINIMAL & ÇEŞİTLİ USER DROPDOWN MENU
   ============================================ */
.user-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: rgba(20, 20, 30, 0.98);
  border: 1px solid rgba(99, 102, 241, 0.3);
  border-radius: 12px;
  min-width: 220px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  visibility: hidden;
  opacity: 0;
  z-index: 999999;
  padding: 8px 0;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transform: translateY(-10px);
  transition: all 0.2s ease;
  pointer-events: none;
}

/* Minimal Top Accent */
.user-dropdown::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, 
    #6366f1 0%, 
    #8b5cf6 30%,
    #ec4899 60%,
    #8b5cf6 100%);
  z-index: 10;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 2px 10px rgba(99, 102, 241, 0.4);
}

.user-dropdown.active {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

@keyframes dropdownSlideInMinimal {
  0% {
    transform: translateY(-10px) scale(0.96);
    opacity: 0;
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

/* Minimal Dropdown Header */
.user-dropdown-header-minimal {
  padding: 14px 16px;
  border-bottom: 2px solid rgba(99, 102, 241, 0.2);
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.05) 100%);
  position: relative;
  border-radius: 16px 16px 0 0;
}

.profile-minimal-top {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.profile-minimal-avatar {
  position: relative;
  flex-shrink: 0;
}

.profile-minimal-avatar img,
.profile-minimal-avatar div {
  width: 40px !important;
  height: 40px !important;
  border-radius: 10px !important;
  border: 2px solid rgba(99, 102, 241, 0.4) !important;
  box-shadow: 0 2px 8px rgba(99, 102, 241, 0.3), 0 0 12px rgba(99, 102, 241, 0.1) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  position: relative;
  z-index: 1;
}

.profile-minimal-avatar:hover img,
.profile-minimal-avatar:hover div {
  transform: scale(1.05) !important;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4), 0 0 20px rgba(99, 102, 241, 0.2) !important;
}

.profile-minimal-info {
  flex: 1;
  min-width: 0;
}

.profile-minimal-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: capitalize;
  line-height: 1.3;
}

.profile-minimal-balance {
  font-size: 15px;
  font-weight: 800;
  background: linear-gradient(135deg, #818cf8 0%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.2px;
  text-shadow: 0 0 20px rgba(129, 140, 248, 0.3);
  line-height: 1.2;
}

.user-dropdown-menu-minimal {
  padding: 8px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.menu-item-minimal {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  color: var(--text-primary);
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 13px;
  font-weight: 600;
  position: relative;
  background: rgba(99, 102, 241, 0.03);
  border: 1px solid transparent;
  overflow: hidden;
}

.menu-item-minimal::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: currentColor;
  transform: scaleY(0);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 0 3px 3px 0;
}

/* Çeşitli İkon Renkleri */
.menu-item-minimal:nth-child(1) i { color: #60a5fa; } /* Panelim - Mavi */
.menu-item-minimal:nth-child(2) i { color: #34d399; } /* İlan Ekle - Yeşil */
.menu-item-minimal:nth-child(3) i { color: #a78bfa; } /* İlanlarım - Mor */
.menu-item-minimal:nth-child(4) i { color: #fbbf24; } /* Satışlarım - Sarı */
.menu-item-minimal:nth-child(5) i { color: #fb7185; } /* Siparişlerim - Pembe */
.menu-item-minimal:nth-child(6) i { color: #38bdf8; } /* Mesajlarım - Açık Mavi */
.menu-item-minimal:nth-child(7) i { color: #f59e0b; } /* Bildirimler - Turuncu */
.menu-item-minimal:nth-child(8) i { color: #10b981; } /* Bakiyem - Yeşil */
.menu-item-minimal:nth-child(9) i { color: #8b5cf6; } /* Profilim - Mor */

.menu-item-minimal i {
  width: 18px;
  height: 18px;
  font-size: 14px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(99, 102, 241, 0.1);
  border-radius: 6px;
  padding: 3px;
}

.menu-item-minimal span {
  flex: 1;
  transition: all 0.2s ease;
}

.menu-item-minimal:hover {
  background: rgba(99, 102, 241, 0.15);
  border-color: rgba(99, 102, 241, 0.3);
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
}

.menu-item-minimal:hover::before {
  transform: scaleY(1);
}

.menu-item-minimal:hover i {
  transform: scale(1.15) rotate(5deg);
  background: rgba(99, 102, 241, 0.2);
  box-shadow: 0 2px 8px rgba(99, 102, 241, 0.3);
}

.menu-item-minimal:hover span {
  color: #ffffff;
  font-weight: 700;
}

.menu-item-minimal.admin-minimal {
  background: rgba(234, 179, 8, 0.08);
  border-left-color: #fbbf24;
}

.menu-item-minimal.admin-minimal i {
  color: #fbbf24;
}

.menu-badge-minimal {
  background: #ef4444;
  color: white;
  font-size: 9px;
  font-weight: 700;
  padding: 2px 5px;
  border-radius: 8px;
  min-width: 16px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(239, 68, 68, 0.4);
  position: relative;
  z-index: 1;
  line-height: 1.2;
}

.user-dropdown-footer-minimal {
  padding: 12px;
  border-top: 2px solid rgba(239, 68, 68, 0.2);
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.08) 0%, rgba(220, 38, 38, 0.05) 100%);
  position: relative;
  border-radius: 0 0 16px 16px;
}

.logout-btn-minimal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 16px;
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: white;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(239, 68, 68, 0.4);
  border: 1px solid rgba(239, 68, 68, 0.3);
  position: relative;
  overflow: hidden;
}

.logout-btn-minimal::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.logout-btn-minimal:hover::before {
  left: 100%;
}

.logout-btn-minimal:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.5);
  background: linear-gradient(135deg, #f87171 0%, #ef4444 100%);
}

.logout-btn-minimal:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.4);
}


.user-dropdown::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(30, 64, 175, 0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Profile Dropdown Header - Modern Design */
.user-dropdown-header {
  padding: 28px 24px;
  border-bottom: 2px solid rgba(30, 64, 175, 0.2);
  background: linear-gradient(180deg, 
    rgba(30, 64, 175, 0.12) 0%, 
    rgba(30, 64, 175, 0.06) 50%,
    rgba(15, 23, 42, 0.02) 100%);
  position: relative;
  z-index: 1;
}

.profile-header-top {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 20px;
}

.profile-avatar-wrapper {
  position: relative;
  flex-shrink: 0;
}

.profile-avatar-wrapper img,
.profile-avatar-wrapper div {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  border: 4px solid var(--primary-blue);
  box-shadow: 
    0 8px 24px rgba(30, 64, 175, 0.4),
    0 0 0 2px rgba(30, 64, 175, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.user-dropdown:hover .profile-avatar-wrapper img,
.user-dropdown:hover .profile-avatar-wrapper div {
  transform: scale(1.08) rotate(3deg);
  box-shadow: 
    0 12px 32px rgba(30, 64, 175, 0.5),
    0 0 0 3px rgba(30, 64, 175, 0.2);
}

.profile-status-indicator {
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 20px;
  height: 20px;
  background: var(--success);
  border: 3px solid rgba(15, 23, 42, 0.98);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.4);
}

.profile-status-indicator i {
  font-size: 8px;
  color: white;
  animation: pulse 2s infinite;
}

.profile-info {
  flex: 1;
  min-width: 0;
}

.profile-name {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.profile-email {
  font-size: 13px;
  color: var(--text-secondary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 10px;
}

.profile-role {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.15) 0%, rgba(59, 130, 246, 0.1) 100%);
  border: 1px solid rgba(30, 64, 175, 0.3);
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
  color: var(--primary-blue);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.profile-role i {
  font-size: 10px;
}

.profile-balance-section {
  margin-top: 20px;
}

.balance-display-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  background: linear-gradient(135deg, 
    var(--primary-blue) 0%, 
    var(--primary-blue-light) 50%,
    #6366f1 100%);
  border-radius: 18px;
  box-shadow: 
    0 8px 24px rgba(30, 64, 175, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.balance-display-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
  pointer-events: none;
  animation: rotate 20s linear infinite;
}

.balance-display-card:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 12px 32px rgba(30, 64, 175, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.balance-icon-wrapper {
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
}

.balance-details {
  flex: 1;
  position: relative;
  z-index: 1;
}

.balance-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 6px;
}

.balance-amount {
  font-size: 24px;
  font-weight: 900;
  color: white;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
}

.balance-action-btn {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.balance-action-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Quick Stats */
.user-dropdown-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 16px;
  border-bottom: 2px solid var(--border-dark);
  position: relative;
  z-index: 1;
}

.dropdown-stat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(30, 64, 175, 0.03) 100%);
  border: 2px solid var(--border-dark);
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dropdown-stat-item:hover {
  transform: translateY(-2px);
  border-color: var(--primary-blue);
  box-shadow: 0 4px 12px rgba(30, 64, 175, 0.2);
}

.stat-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.stat-icon.blue {
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.15) 0%, rgba(59, 130, 246, 0.1) 100%);
  color: var(--primary-blue);
}

.stat-icon.orange {
  background: linear-gradient(135deg, rgba(234, 179, 8, 0.15) 0%, rgba(217, 119, 6, 0.1) 100%);
  color: var(--accent-orange);
}

.stat-icon.red {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.15) 0%, rgba(220, 38, 38, 0.1) 100%);
  color: var(--error);
}

.stat-info {
  flex: 1;
  min-width: 0;
}

.stat-value {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
  display: flex;
  align-items: center;
  gap: 4px;
}

.stat-badge {
  background: linear-gradient(135deg, var(--error) 0%, #dc2626 100%);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(239, 68, 68, 0.4);
}

.stat-label {
  font-size: 11px;
  color: var(--text-secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 2px;
}

/* Sections */
.user-dropdown-section {
  padding: 16px;
  border-bottom: 2px solid var(--border-dark);
  position: relative;
  z-index: 1;
}

.user-dropdown-section:last-of-type {
  border-bottom: none;
}

.dropdown-section-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  padding-left: 4px;
}

/* Quick Actions */
.dropdown-quick-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.quick-action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 12px;
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(30, 64, 175, 0.03) 100%);
  border: 2px solid var(--border-dark);
  border-radius: 12px;
  text-decoration: none;
  color: var(--text-primary);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 12px;
  font-weight: 600;
}

.quick-action-btn i {
  font-size: 20px;
  color: var(--primary-blue);
  transition: all 0.3s ease;
}

.quick-action-btn:hover {
  transform: translateY(-2px);
  border-color: var(--primary-blue);
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.1) 0%, rgba(59, 130, 246, 0.05) 100%);
  box-shadow: 0 4px 12px rgba(30, 64, 175, 0.2);
}

.quick-action-btn:hover i {
  transform: scale(1.15);
  color: var(--primary-blue-light);
}

/* Menu Items */
.dropdown-menu-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px;
  color: var(--text-primary);
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 6px;
  text-decoration: none;
  position: relative;
  background: transparent;
}

.dropdown-menu-item:hover {
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.08) 0%, rgba(59, 130, 246, 0.03) 100%);
  transform: translateX(4px);
  padding-left: 18px;
}

.menu-item-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.menu-item-icon.blue {
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.15) 0%, rgba(59, 130, 246, 0.1) 100%);
  color: var(--primary-blue);
}

.menu-item-icon.green {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(5, 150, 105, 0.1) 100%);
  color: var(--success);
}

.menu-item-icon.orange {
  background: linear-gradient(135deg, rgba(234, 179, 8, 0.15) 0%, rgba(217, 119, 6, 0.1) 100%);
  color: var(--accent-orange);
}

.menu-item-icon.purple {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(124, 58, 237, 0.1) 100%);
  color: #8b5cf6;
}

.menu-item-icon.red {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.15) 0%, rgba(220, 38, 38, 0.1) 100%);
  color: var(--error);
}

.menu-item-icon.teal {
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.15) 0%, rgba(15, 118, 110, 0.1) 100%);
  color: #14b8a6;
}

.menu-item-icon.gold {
  background: linear-gradient(135deg, rgba(234, 179, 8, 0.2) 0%, rgba(217, 119, 6, 0.15) 100%);
  color: var(--accent-orange);
  border: 2px solid rgba(234, 179, 8, 0.3);
}

.dropdown-menu-item:hover .menu-item-icon {
  transform: scale(1.1) rotate(5deg);
}

.menu-item-content {
  flex: 1;
  min-width: 0;
}

.menu-item-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.menu-item-subtitle {
  font-size: 11px;
  color: var(--text-secondary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.menu-item-arrow {
  font-size: 12px;
  color: var(--text-secondary);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.dropdown-menu-item:hover .menu-item-arrow {
  transform: translateX(4px);
  color: var(--primary-blue);
}

.menu-item-badge {
  background: linear-gradient(135deg, var(--error) 0%, #dc2626 100%);
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(239, 68, 68, 0.4);
  flex-shrink: 0;
  animation: pulse 2s infinite;
}

.dropdown-menu-item.admin-item {
  background: linear-gradient(135deg, rgba(234, 179, 8, 0.05) 0%, rgba(217, 119, 6, 0.02) 100%);
  border: 2px solid rgba(234, 179, 8, 0.2);
}

.dropdown-menu-item.admin-item:hover {
  background: linear-gradient(135deg, rgba(234, 179, 8, 0.1) 0%, rgba(217, 119, 6, 0.05) 100%);
  border-color: rgba(234, 179, 8, 0.4);
}

/* Footer */
.user-dropdown-footer {
  padding: 16px;
  border-top: 2px solid var(--border-dark);
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.05) 0%, rgba(220, 38, 38, 0.02) 100%);
  position: relative;
  z-index: 1;
}

.dropdown-logout-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px;
  background: linear-gradient(135deg, var(--error) 0%, #dc2626 100%);
  color: white;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.dropdown-logout-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4);
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
}

.dropdown-logout-btn i {
  font-size: 16px;
}

/* Header Main */
.header-main {
  padding: 12px 0;
  background: var(--bg-dark);
  position: relative;
  z-index: 100;
  overflow: visible;
}

.header-main > .container {
  position: relative;
  z-index: 1;
  overflow: visible;
}

.header-main::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(30, 64, 175, 0.04) 0%, transparent 70%);
  animation: float 9s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.header-main::after {
  content: "";
  position: absolute;
  bottom: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.03) 0%, transparent 70%);
  animation: float 13s ease-in-out infinite reverse;
  pointer-events: none;
  z-index: 0;
}

.header-main > .container {
  position: relative;
  z-index: 1;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
  z-index: 1;
  overflow: visible;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo:hover {
  transform: translateY(-2px);
}

.logo-icon-wrapper {
  position: relative;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon-inner {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: white;
  box-shadow: 0 6px 18px rgba(30, 64, 175, 0.4), 0 0 0 2px rgba(30, 64, 175, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.logo-icon-inner::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.logo:hover .logo-icon-inner {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 32px rgba(30, 64, 175, 0.5), 0 0 0 4px rgba(30, 64, 175, 0.15);
}

.logo:hover .logo-icon-inner::before {
  opacity: 1;
}

.logo-text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.logo-text-main {
  font-size: 20px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
  line-height: 1.2;
  transition: all 0.3s ease;
}

.logo:hover .logo-text-main {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-text-subtitle {
  font-size: 11px;
  color: var(--text-secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.logo:hover .logo-text-subtitle {
  color: var(--primary-blue);
  opacity: 1;
}

.logo img {
  height: 100px !important;
  width: auto !important;
  max-width: none !important;
  max-height: none !important;
  filter: drop-shadow(0 8px 24px rgba(30, 64, 175, 0.5)) brightness(1.1) contrast(1.15);
  transition: all 0.3s ease;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  padding: 4px;
  position: static !important;
  left: auto !important;
  top: auto !important;
  transform: none !important;
  object-fit: contain !important;
}

.logo .logo-image {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  height: auto !important;
  max-height: 50px !important;
  width: auto !important;
  max-width: 200px !important;
  filter: drop-shadow(0 8px 24px rgba(30, 64, 175, 0.5)) brightness(1.1) contrast(1.15);
  transition: all 0.3s ease;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  padding: 4px;
  position: static !important;
  left: auto !important;
  top: auto !important;
  transform: none !important;
  object-fit: contain !important;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: auto;
  -ms-interpolation-mode: bicubic;
}

.logo:hover img,
.logo:hover .logo-image {
  filter: drop-shadow(0 12px 32px rgba(30, 64, 175, 0.6)) brightness(1.2) contrast(1.2);
  transform: scale(1.08);
}

/* Header Search */
.header-search {
  flex: 1;
  max-width: 700px;
  position: relative;
  z-index: 1000;
}

/* Modern Search Form */
.search-form-modern {
  position: relative;
}

.search-input-wrapper {
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(30, 64, 175, 0.05) 100%);
  border: 2px solid var(--border-light);
  border-radius: 50px;
  padding: 4px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}

.search-input-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(30, 64, 175, 0.1), transparent);
  transition: left 0.6s ease;
}

.search-form-modern:focus-within .search-input-wrapper::before {
  left: 100%;
}

.search-form-modern:focus-within .search-input-wrapper {
  border-color: var(--primary-blue);
  box-shadow: 
    0 8px 24px rgba(30, 64, 175, 0.3),
    0 0 0 4px rgba(30, 64, 175, 0.15),
    0 0 40px rgba(30, 64, 175, 0.1);
  background: linear-gradient(135deg, var(--bg-hover) 0%, rgba(30, 64, 175, 0.08) 100%);
  transform: scale(1.01);
}

.search-icon {
  color: var(--text-secondary);
  font-size: 16px;
  margin-left: 16px;
  margin-right: 8px;
  transition: color 0.3s ease;
  flex-shrink: 0;
}

.search-form-modern:focus-within .search-icon {
  color: var(--primary-blue);
}

.search-input-modern {
  flex: 1;
  padding: 12px 8px;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 15px;
  outline: none;
  font-weight: 400;
}

.search-input-modern::placeholder {
  color: var(--text-muted);
  font-weight: 400;
}

.search-submit-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-blue);
  border: none;
  border-radius: 50%;
  color: var(--text-light);
  cursor: pointer;
  transition: all 0.3s ease;
  margin-right: 4px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(30, 64, 175, 0.3);
}

.search-submit-btn:hover {
  background: var(--primary-blue-light);
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(30, 64, 175, 0.4);
}

.search-submit-btn:active {
  transform: scale(0.95);
}

.search-submit-btn i {
  font-size: 14px;
}

.search-filter-btn {
  padding: 12px;
  background: var(--bg-secondary);
  border: 2px solid var(--border-light);
  border-radius: 10px;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-filter-btn:hover {
  background: var(--bg-hover);
  border-color: var(--primary-blue);
  color: var(--primary-blue);
}

/* Modern Search Suggestions */
.search-suggestions-modern {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  margin-top: 0;
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(30, 64, 175, 0.05) 100%);
  border: 2px solid var(--border-light);
  border-radius: 16px;
  padding: 20px;
  z-index: 10002;
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(30, 64, 175, 0.2),
    0 0 30px rgba(30, 64, 175, 0.1);
  backdrop-filter: blur(15px);
  max-height: 450px;
  overflow-y: auto;
  max-width: 100%;
  position: relative;
  overflow: hidden;
}

.search-suggestions-modern::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(30, 64, 175, 0.08) 0%, transparent 70%);
  animation: float 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.search-suggestions-modern > * {
  position: relative;
  z-index: 1;
}

.search-suggestions-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--text-primary);
  margin-bottom: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(30, 64, 175, 0.2);
  position: relative;
}

.search-suggestions-header::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--primary-blue);
  border-radius: 2px;
}

.search-suggestions-header i {
  color: var(--primary-blue);
  font-size: 16px;
  animation: pulse 2s infinite;
}

.search-suggestions-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.popular-search-tag-modern {
  padding: 10px 18px;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, rgba(30, 64, 175, 0.05) 100%);
  border: 2px solid var(--border-light);
  border-radius: 25px;
  font-size: 13px;
  color: var(--text-primary);
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.popular-search-tag-modern::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.popular-search-tag-modern:hover::before {
  left: 100%;
}

.popular-search-tag-modern i {
  font-size: 10px;
  opacity: 0.6;
  color: var(--primary-blue);
}

.popular-search-tag-modern:hover {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
  border-color: var(--primary-blue);
  color: var(--text-light);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 
    0 8px 20px rgba(30, 64, 175, 0.4),
    0 0 0 3px rgba(30, 64, 175, 0.1);
}

.popular-search-tag-modern:hover i {
  opacity: 1;
  color: var(--text-light);
  transform: rotate(15deg);
}

.search-button:hover {
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #3b82f6 100%);
  filter: brightness(1.15);
  box-shadow: 0 6px 18px rgba(30, 64, 175, 0.4);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.search-button i {
  font-size: 16px;
}

.main-nav {
  flex: 1;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 5px;
}

.nav-list a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 8px;
  color: var(--text-primary);
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  border: 2px solid transparent;
}

.nav-list a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.nav-list a:hover,
.nav-list a.active {
  color: var(--primary-blue);
  background: rgba(30, 64, 175, 0.1);
  border-color: var(--primary-blue);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(30, 64, 175, 0.2);
}

.nav-list a:hover::after,
.nav-list a.active::after {
  width: 80%;
}

.btn-add-listing {
  background: var(--gradient-primary);
  color: var(--text-light) !important;
}

.btn-add-listing:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-primary);
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
  z-index: 999999999;
  isolation: isolate;
}

.header-actions > * {
  position: relative;
  z-index: 999999999;
}

/* Balance Display */
.header-balance {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  color: white;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(30, 64, 175, 0.3);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.header-balance::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.header-balance:hover::before {
  opacity: 1;
}

.header-balance:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 24px rgba(30, 64, 175, 0.4);
  border-color: rgba(255, 255, 255, 0.3);
}

.header-balance i {
  font-size: 20px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.header-balance span {
  font-weight: 800;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Notification Button */
.notification-button {
  position: relative;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.1) 0%, rgba(59, 130, 246, 0.05) 100%);
  border: 2px solid rgba(30, 64, 175, 0.3);
  border-radius: 12px;
  color: var(--primary-blue);
  font-size: 20px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(30, 64, 175, 0.15);
  text-decoration: none;
  z-index: 1;
}

.notification-button:hover {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
  color: white;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 24px rgba(30, 64, 175, 0.4);
  border-color: var(--primary-blue);
}

.notification-badge,
.message-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: white;
  min-width: 20px;
  height: 20px;
  border-radius: 10px;
  padding: 0 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  border: 2px solid var(--bg-card);
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.4);
  animation: pulse 2s ease-in-out infinite;
  z-index: 10;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

/* Cart Button */
.cart-button {
  position: relative;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.1) 0%, rgba(59, 130, 246, 0.05) 100%);
  border: 2px solid rgba(30, 64, 175, 0.3);
  border-radius: 12px;
  color: var(--primary-blue);
  font-size: 20px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(30, 64, 175, 0.15);
  text-decoration: none;
  z-index: 1;
}

.cart-button:hover {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
  color: white;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 24px rgba(30, 64, 175, 0.4);
  border-color: var(--primary-blue);
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: white;
  min-width: 20px;
  height: 20px;
  border-radius: 10px;
  padding: 0 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  border: 2px solid var(--bg-card);
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.4);
  animation: pulse 2s ease-in-out infinite;
  z-index: 10;
}

.mobile-menu-toggle {
  display: none;
  width: 45px;
  height: 45px;
  align-items: center;
  justify-content: center;
  background: var(--dark-bg);
  border: 1px solid var(--border-dark);
  border-radius: 8px;
  color: var(--accent-orange);
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: var(--dark-hover);
  border-color: var(--accent-orange);
  transform: scale(1.05);
}

.mobile-menu-toggle:active {
  transform: scale(0.95);
}

/* Hide mobile menu toggle on desktop/computer screens */
@media (min-width: 993px) {
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* Header Categories */
.header-categories {
  background: var(--bg-dark);
  border-top: 1px solid var(--border-dark);
  padding: 0;
  position: relative;
  z-index: 999;
  overflow: visible;
  display: block !important;
  visibility: visible !important;
}

.header-categories::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(30, 64, 175, 0.05) 0%, transparent 70%);
  animation: float 11s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.header-categories::after {
  content: "";
  position: absolute;
  bottom: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.04) 0%, transparent 70%);
  animation: float 15s ease-in-out infinite reverse;
  pointer-events: none;
  z-index: 0;
}

.header-categories > .container {
  position: relative;
  z-index: 1;
}

.categories-nav {
  display: flex !important;
  align-items: center;
  gap: 6px;
  overflow-x: auto;
  padding: 10px 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
  visibility: visible !important;
  opacity: 1 !important;
}

.categories-nav::-webkit-scrollbar {
  display: none;
}

.category-link {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 8px;
  color: var(--text-primary);
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  transition: all 0.3s ease;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
  visibility: visible !important;
  opacity: 1 !important;
}

.category-link span {
  color: var(--text-primary);
}

.category-link:hover {
  color: var(--primary-blue);
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.15) 0%, rgba(59, 130, 246, 0.1) 100%);
  border-color: var(--primary-blue);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 20px rgba(30, 64, 175, 0.4);
}

.category-link:hover div {
  left: 100% !important;
}

.category-link i {
  font-size: 14px;
}

.category-icon {
  width: 22px;
  height: 22px;
  object-fit: cover;
  border-radius: 5px;
  filter: brightness(0.9);
  transition: all 0.3s ease;
  border: 1px solid var(--border-light);
  flex-shrink: 0;
}

.category-link:hover .category-icon {
  filter: brightness(1.2);
  transform: scale(1.1);
}

.category-link-highlight {
  background: var(--primary-blue) !important;
  color: var(--text-light) !important;
  border: 2px solid var(--primary-blue-light) !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 16px rgba(30, 64, 175, 0.4), 0 0 0 1px rgba(30, 64, 175, 0.1) !important;
  padding: 8px 16px !important;
}

.category-link-highlight:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(30, 64, 175, 0.5), 0 0 0 4px rgba(30, 64, 175, 0.15) !important;
  filter: brightness(1.1);
  background: var(--primary-blue-light) !important;
  border-color: var(--primary-blue-light) !important;
}

/* Kategoriler link (ilk öğe) */
.category-link:first-child {
  background: var(--gradient-primary);
  color: var(--text-light) !important;
  font-weight: 700;
  border: none !important;
  box-shadow: var(--shadow-blue);
  position: relative;
}

.category-link:first-child::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: var(--gradient-primary);
  border-radius: 12px;
  z-index: -1;
  opacity: 0.5;
  filter: blur(8px);
  animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 0.8; }
}

.category-link:first-child:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: var(--shadow-blue), var(--shadow-lg);
}

/* Mobile Menu - Sol taraftan açılan drawer (mobile-menu-premium ile uyumlu) */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: auto;
  width: 300px;
  height: 100vh;
  background: var(--dark-card);
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
  z-index: 10001;
  overflow-y: auto;
  /* FOUC önleme: Sayfa yüklenirken menü gizli kalmalı */
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: var(--dark-bg);
  border-bottom: 1px solid var(--border-dark);
}

.mobile-menu-header span {
  font-size: 18px;
  font-weight: bold;
  color: var(--accent-orange);
}

.mobile-menu-header button {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark-card);
  border-radius: 8px;
  color: var(--text-light);
  font-size: 18px;
}

.mobile-nav {
  padding: 10px;
}

.mobile-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px;
  margin-bottom: 5px;
  border-radius: 8px;
  color: var(--text-gray);
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background: var(--dark-bg);
  color: var(--accent-orange);
  padding-left: 20px;
}

/* Hero Slider */
.hero-slider {
  position: relative;
  height: 500px;
  overflow: hidden;
  border-radius: 15px;
  margin: 30px 0;
}

.slider-wrapper {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease;
}

.slider-item {
  min-width: 100%;
  height: 100%;
  position: relative;
}

.slider-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-content {
  position: absolute;
  top: 50%;
  left: 50px;
  transform: translateY(-50%);
  max-width: 600px;
  z-index: 2;
}

.slider-content h2 {
  font-size: 48px;
  margin-bottom: 15px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(30, 64, 175, 0.2);
}

.slider-content p {
  font-size: 20px;
  color: var(--text-gray);
  margin-bottom: 25px;
}

.slider-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: var(--gradient-primary);
  color: var(--text-light);
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.slider-button:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-primary);
}

.slider-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(10, 10, 10, 0.9) 0%,
    rgba(10, 10, 10, 0.3) 100%
  );
}

.slider-controls {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot.active {
  width: 30px;
  border-radius: 6px;
  background: var(--accent-orange);
  box-shadow: var(--shadow-primary);
}

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 26, 26, 0.7);
  border-radius: 50%;
  color: var(--text-light);
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 3;
}

.slider-nav:hover {
  background: var(--gradient-primary);
  box-shadow: var(--shadow-primary);
}

.slider-nav.prev {
  left: 20px;
}

.slider-nav.next {
  right: 20px;
}

/* Section */
.section {
  padding: 30px 0;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.section-title {
  font-size: 22px;
  font-weight: 600;
  position: relative;
  padding-bottom: 8px;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.view-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent-orange);
  font-weight: 500;
  font-size: 13px;
  transition: all 0.3s ease;
}

.view-all:hover {
  gap: 10px;
}

/* Category Grid */
.categories-section {
  position: relative;
}

.categories-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(30, 64, 175, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.8;
  }
}

/* Category Pills - Premium Compact Design */
.category-pills-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
  align-items: center;
  justify-content: flex-start;
  padding: 16px 0;
}

.category-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(30, 64, 175, 0.05) 100%);
  border: 1.5px solid rgba(30, 64, 175, 0.2);
  border-radius: 12px;
  color: var(--text-light);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.category-pill::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(30, 64, 175, 0.2), transparent);
  transition: left 0.5s ease;
  z-index: 0;
}

.category-pill:hover::before {
  left: 100%;
}

.category-pill::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  padding: 1.5px;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.4), rgba(59, 130, 246, 0.4), rgba(139, 92, 246, 0.4));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.category-pill:hover::after {
  opacity: 1;
}

.category-pill:hover {
  transform: translateY(-2px);
  border-color: var(--primary-blue);
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.15) 0%, rgba(59, 130, 246, 0.1) 100%);
  box-shadow: 
    0 6px 20px rgba(30, 64, 175, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.category-pill-icon {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  object-fit: cover;
  position: relative;
  z-index: 1;
  filter: brightness(0.95);
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.category-pill:hover .category-pill-icon {
  filter: brightness(1.15);
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 4px 12px rgba(30, 64, 175, 0.4);
}

.category-pill-icon-fallback {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.25) 0%, rgba(59, 130, 246, 0.2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--primary-blue);
  position: relative;
  z-index: 1;
  border: 1px solid rgba(30, 64, 175, 0.3);
  box-shadow: 0 2px 6px rgba(30, 64, 175, 0.2);
  transition: all 0.4s ease;
}

.category-pill:hover .category-pill-icon-fallback {
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.4) 0%, rgba(59, 130, 246, 0.35) 100%);
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(30, 64, 175, 0.4);
  border-color: var(--primary-blue);
}

.category-pill-name {
  position: relative;
  z-index: 1;
  white-space: nowrap;
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
}

.category-pill:hover .category-pill-name {
  color: var(--text-light);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.category-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 14px;
  margin-bottom: 30px;
  visibility: visible !important;
  opacity: 1 !important;
  position: relative;
  z-index: 1;
}

.category-card {
  position: relative;
  display: block !important;
  overflow: hidden;
  border-radius: 16px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  height: 120px;
  box-shadow: 
    0 2px 12px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, 
    rgba(30, 30, 40, 0.95) 0%, 
    rgba(40, 40, 55, 0.9) 50%,
    rgba(30, 30, 40, 0.95) 100%);
  backdrop-filter: blur(20px);
  visibility: visible !important;
  opacity: 1 !important;
}

.category-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(59, 130, 246, 0.15),
    transparent
  );
  transition: left 0.5s ease;
  z-index: 3;
  pointer-events: none;
}

.category-card:hover::before {
  left: 100%;
}

.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.3),
    rgba(139, 92, 246, 0.25),
    rgba(59, 130, 246, 0.3)
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.category-card:hover::after {
  opacity: 1;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 
    0 8px 24px rgba(59, 130, 246, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  border-color: rgba(59, 130, 246, 0.3);
}

.category-image {
  position: relative;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s ease;
  filter: brightness(0.4) contrast(1.2);
  z-index: 0;
}

.category-card:hover .category-image {
  transform: scale(1.08);
  filter: brightness(0.35) contrast(1.25);
}

.category-no-image {
  background: linear-gradient(135deg, 
    rgba(59, 130, 246, 0.25) 0%, 
    rgba(139, 92, 246, 0.2) 50%,
    rgba(59, 130, 246, 0.25) 100%);
  position: relative;
  overflow: hidden;
}

.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.7) 50%,
    rgba(0, 0, 0, 0.95) 100%
  );
  transition: background 0.4s ease;
  z-index: 1;
}

.category-card:hover .category-overlay {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.8) 50%,
    rgba(0, 0, 0, 0.98) 100%
  );
}

.category-content {
  position: absolute;
  inset: 0;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 12px;
  text-align: center;
  z-index: 3;
  pointer-events: none;
  visibility: visible !important;
  opacity: 1 !important;
}

.category-icon-fallback {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, 
    rgba(59, 130, 246, 0.25) 0%, 
    rgba(139, 92, 246, 0.2) 100%);
  border-radius: 12px;
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 8px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.2);
  backdrop-filter: blur(10px);
}

.category-card:hover .category-icon-fallback {
  background: linear-gradient(135deg, 
    rgba(59, 130, 246, 0.35) 0%, 
    rgba(139, 92, 246, 0.3) 100%);
  transform: scale(1.1);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.category-name {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-light);
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
  letter-spacing: 0.01em;
  margin-bottom: 0;
  transition: all 0.3s ease;
  background: rgba(30, 64, 175, 0.4);
  padding: 6px 12px;
  border-radius: 20px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  width: fit-content;
  max-width: 100%;
}

.category-card:hover .category-name {
  color: var(--text-light);
  background: rgba(30, 64, 175, 0.5);
  transform: scale(1.05);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
  box-shadow: 0 3px 12px rgba(30, 64, 175, 0.3);
  border-color: rgba(255, 255, 255, 0.2);
}

.category-arrow {
  display: none;
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}

.product-card {
  background: linear-gradient(135deg, 
    rgba(30, 30, 40, 0.95) 0%, 
    rgba(40, 40, 55, 0.9) 50%,
    rgba(30, 30, 40, 0.95) 100%);
  border: 2px solid rgba(30, 64, 175, 0.2);
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  height: 100%;
  backdrop-filter: blur(15px);
}

.product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, 
    var(--primary-blue) 0%, 
    var(--primary-blue-light) 25%,
    rgba(139, 92, 246, 1) 50%,
    var(--primary-blue-light) 75%,
    var(--primary-blue) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
  box-shadow: 0 2px 12px rgba(30, 64, 175, 0.5);
}

.product-card:hover::before {
  opacity: 1;
}

.product-card::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(30, 64, 175, 0.1) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.product-card:hover::after {
  opacity: 1;
}

.product-card:hover {
  border-color: var(--primary-blue);
  transform: translateY(-6px);
  box-shadow: 
    0 16px 48px rgba(30, 64, 175, 0.35),
    0 0 0 2px rgba(30, 64, 175, 0.2),
    0 0 60px rgba(30, 64, 175, 0.2);
}

.product-card.account-card {
  border-color: rgba(59, 130, 246, 0.3);
  background: linear-gradient(135deg, 
    rgba(30, 30, 40, 0.95) 0%, 
    rgba(40, 40, 55, 0.9) 50%,
    rgba(30, 30, 40, 0.95) 100%);
}

.product-card.account-card:hover {
  border-color: #3b82f6;
  box-shadow: 
    0 20px 60px rgba(59, 130, 246, 0.4),
    0 0 0 2px rgba(59, 130, 246, 0.3),
    0 0 80px rgba(59, 130, 246, 0.25);
}

.product-card.account-card .product-badge {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.product-card.account-card .product-overlay {
  background: rgba(0, 0, 0, 0.6);
}

.product-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: var(--primary-blue);
  color: var(--text-light);
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 10px;
  font-weight: 600;
  z-index: 2;
  box-shadow: 0 2px 6px rgba(30, 64, 175, 0.3);
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.product-badge.low-stock {
  background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}

.product-image {
  position: relative;
  width: 100%;
  padding-top: 70%;
  overflow: hidden;
  background: var(--bg-secondary);
  flex-shrink: 0;
  border-bottom: 1px solid var(--border-light);
}

/* Hesap kartları için daha büyük görsel alanı */
.product-card.account-card .product-image {
  padding-top: 100%;
}

.product-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(30, 64, 175, 0.05) 100%);
  pointer-events: none;
  z-index: 1;
}

.product-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: auto;
  -ms-interpolation-mode: bicubic;
}

/* Default logo image - kart alanında tam ve büyük göster */
.product-card .product-image img.default-logo-image,
.product-card .product-image img[src*="favicon"] {
  object-fit: contain !important;
  image-rendering: -webkit-optimize-contrast !important;
  image-rendering: auto !important;
  -ms-interpolation-mode: bicubic !important;
  background: var(--bg-secondary);
  padding: 16px !important;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  max-width: 95% !important;
  max-height: 95% !important;
  width: auto !important;
  height: auto !important;
  min-height: 80px !important;
  left: 50% !important;
  top: 50% !important;
  transform: translate(-50%, -50%) !important;
  filter: none !important;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Hesap kartları için default logo - tam görünsün */
.product-card.account-card .product-image img.default-logo-image,
.product-card.account-card .product-image img[src*="favicon"] {
  max-width: 95% !important;
  max-height: 95% !important;
  padding: 16px !important;
  min-height: 100px !important;
}

.product-card:hover .product-image img {
  transform: scale(1.1);
  filter: brightness(1.1);
}

/* Default logo için hover efekti devre dışı - bulanık görünmesin - SADECE PRODUCT CARD İÇİN */
.product-card:hover .product-image img.default-logo-image,
.product-card:hover .product-image img[src*="favicon"] {
  transform: translate(-50%, -50%) scale(1) !important;
  filter: none !important;
}

.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(2px);
  z-index: 5;
  pointer-events: none;
}

.product-card:hover .product-overlay {
  opacity: 1;
  pointer-events: auto;
}

.quick-actions {
  display: flex;
  gap: 8px;
  z-index: 10;
  pointer-events: auto;
}

.quick-action {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--primary-blue-light);
  border-radius: 50%;
  color: var(--primary-blue);
  font-size: 14px;
  transition: all 0.3s ease;
  cursor: pointer;
  pointer-events: auto;
  z-index: 11;
  box-shadow: 0 2px 8px rgba(30, 64, 175, 0.25);
}

.quick-action:hover {
  background: var(--primary-blue);
  color: var(--text-light);
  transform: scale(1.15);
  box-shadow: 0 6px 20px rgba(30, 64, 175, 0.5);
  border-color: var(--primary-blue-light);
}

.product-info {
  padding: 14px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 8px;
  background: transparent;
  position: relative;
}

.product-info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(30, 64, 175, 0.4), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card:hover .product-info::before {
  opacity: 1;
}

.product-category {
  display: inline-block;
  background: rgba(30, 64, 175, 0.08);
  color: var(--primary-blue);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 600;
  border: 1px solid rgba(30, 64, 175, 0.15);
  transition: all 0.3s ease;
  align-self: flex-start;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-category:hover {
  background: var(--gradient-primary);
  color: var(--text-light);
  transform: translateY(-2px);
  border-color: transparent;
  box-shadow: var(--shadow-sm);
}

.product-title {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-light);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.5;
  min-height: 40px;
  transition: color 0.3s ease;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-word;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.product-card:hover .product-title {
  color: var(--primary-blue);
  text-shadow: 0 2px 6px rgba(30, 64, 175, 0.3);
}

.product-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: auto;
}

.product-seller {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-primary);
  font-size: 11px;
  padding: 6px 10px;
  background: rgba(30, 64, 175, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(30, 64, 175, 0.1);
  font-weight: 500;
  transition: all 0.3s ease;
}

.product-card:hover .product-seller {
  background: rgba(30, 64, 175, 0.1);
  border-color: rgba(30, 64, 175, 0.2);
  transform: translateX(4px);
}

.product-seller i {
  color: var(--accent-orange);
  font-size: 13px;
}

.product-stock-info {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 6px;
  color: var(--success);
  font-size: 10px;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.product-stock-info.low-stock {
  background: rgba(30, 64, 175, 0.1);
  color: var(--primary-blue);
}

.product-stock-info.manual-delivery {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(30, 64, 175, 0.1) 100%);
  color: #3b82f6;
  border: 1px solid rgba(59, 130, 246, 0.2);
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 12px;
}

.product-stock-info i {
  font-size: 12px;
}

.product-stats {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  border-top: 1px solid var(--border-light);
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--text-primary);
  font-size: 10px;
  font-weight: 500;
  padding: 4px 8px;
  background: rgba(30, 64, 175, 0.05);
  border-radius: 6px;
  transition: all 0.3s ease;
}

.product-card:hover .stat-item {
  background: rgba(30, 64, 175, 0.1);
  color: var(--primary-blue);
}

.stat-item i {
  color: var(--primary-blue);
  font-size: 12px;
}

.product-footer {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 8px;
  border-top: 1px solid var(--border-light);
  position: relative;
  z-index: 20;
  pointer-events: auto;
  margin-top: auto;
}

.product-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: -0.02em;
  text-shadow: 0 2px 8px rgba(255, 255, 255, 0.2);
}

.product-date {
  font-size: 10px;
  color: var(--text-dark-gray);
  display: flex;
  align-items: center;
  gap: 4px;
}

.product-date i {
  font-size: 10px;
}

.btn-add-cart {
  padding: 8px 14px;
  background: var(--primary-blue);
  color: var(--text-light);
  border-radius: 8px;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 11px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(30, 64, 175, 0.25);
  letter-spacing: 0.2px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.btn-add-cart::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn-add-cart:hover::before {
  left: 100%;
}

.btn-add-cart {
  display: flex;
  align-items: center;
  letter-spacing: 0;
  justify-content: center;
  gap: 8px;
  position: relative;
  z-index: 25;
  pointer-events: auto;
}

.btn-add-cart:hover {
  background: linear-gradient(135deg, var(--primary-blue-light) 0%, var(--primary-blue) 100%);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 
    0 8px 24px rgba(30, 64, 175, 0.4),
    0 0 0 2px rgba(255, 255, 255, 0.2),
    0 0 30px rgba(30, 64, 175, 0.3);
}

.btn-add-cart:hover {
  background: var(--primary-blue-light);
  box-shadow: 0 6px 20px rgba(30, 64, 175, 0.4);
  transform: translateY(-2px);
  border-color: var(--primary-blue-light);
}

.btn-add-cart i {
  font-size: 12px;
}

/* Buy Now Button */
.btn-buy-now {
  padding: 16px 28px;
  background: linear-gradient(135deg, var(--success) 0%, #059669 100%);
  color: var(--text-light);
  border-radius: 14px;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3);
  text-decoration: none;
}

.btn-buy-now::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn-buy-now:hover::before {
  left: 100%;
}

.btn-buy-now:hover {
  background: linear-gradient(135deg, #059669 0%, var(--success) 100%);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 
    0 8px 24px rgba(16, 185, 129, 0.4),
    0 0 0 2px rgba(255, 255, 255, 0.2),
    0 0 30px rgba(16, 185, 129, 0.3);
}

.btn-buy-now i {
  font-size: 14px;
}

/* Product Quantity Cart */
.product-quantity-cart {
  display: flex;
  gap: 8px;
  align-items: stretch;
}

.quantity-selector {
  display: flex;
  align-items: center;
  background: var(--dark-bg);
  border: 1px solid var(--border-dark);
  border-radius: 8px;
  overflow: hidden;
}

.qty-btn {
  width: 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark-bg);
  color: var(--accent-orange);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 11px;
}

.qty-btn:hover {
  background: var(--dark-hover);
  color: var(--text-light);
}

.qty-btn:active {
  transform: scale(0.95);
}

.qty-input {
  width: 45px;
  height: 100%;
  text-align: center;
  background: transparent;
  border: none;
  color: var(--text-light);
  font-weight: 600;
  font-size: 13px;
  outline: none;
  -moz-appearance: textfield;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.product-quantity-cart .btn-add-cart {
  flex: 1;
  min-width: 0;
}

/* Footer - Modern Premium Design */
.main-footer {
  background: linear-gradient(180deg, #0f1419 0%, #1a1f2e 100%);
  border-top: 1px solid rgba(30, 64, 175, 0.2);
  margin-top: 80px;
  position: relative;
  overflow: hidden;
}

.main-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(30, 64, 175, 0.5), transparent);
}

.footer-top {
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
  background: transparent;
}

.footer-top-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(180deg, transparent 0%, rgba(30, 64, 175, 0.04) 30%, rgba(30, 64, 175, 0.06) 50%, rgba(30, 64, 175, 0.04) 70%, transparent 100%),
    radial-gradient(ellipse at top, rgba(30, 64, 175, 0.1) 0%, transparent 70%),
    radial-gradient(circle at 20% 30%, rgba(30, 64, 175, 0.08) 0%, transparent 60%),
    radial-gradient(circle at 80% 70%, rgba(59, 130, 246, 0.06) 0%, transparent 60%),
    radial-gradient(circle at 50% 50%, rgba(30, 64, 175, 0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  animation: footerBackgroundPulse 12s ease-in-out infinite alternate;
}

.footer-top-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(30, 64, 175, 0.4) 15%, 
    rgba(59, 130, 246, 0.5) 30%,
    rgba(30, 64, 175, 0.4) 50%,
    rgba(59, 130, 246, 0.5) 70%,
    rgba(30, 64, 175, 0.4) 85%,
    transparent 100%);
  animation: footerTopLine 3s ease-in-out infinite;
}

@keyframes footerBackgroundPulse {
  0% {
    opacity: 0.7;
    transform: scale(1);
  }
  100% {
    opacity: 1;
    transform: scale(1.02);
  }
}

@keyframes footerTopLine {
  0%, 100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}


.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.2fr;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.footer-col {
  position: relative;
  animation: fadeInUp 0.6s ease-out backwards;
}

.footer-col:nth-child(1) {
  animation-delay: 0.1s;
}

.footer-col:nth-child(2) {
  animation-delay: 0.2s;
}

.footer-col:nth-child(3) {
  animation-delay: 0.3s;
}

.footer-col:nth-child(4) {
  animation-delay: 0.4s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.footer-col-main {
  padding-right: 30px;
}

/* Logo Section */
.footer-logo-wrapper {
  margin-bottom: 35px;
  position: relative;
}

.footer-logo {
  display: inline-block;
  position: relative;
  padding: 15px;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.08) 0%, rgba(59, 130, 246, 0.04) 100%);
  border-radius: 20px;
  border: 1px solid rgba(30, 64, 175, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.footer-logo::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.footer-logo:hover {
  transform: translateY(-5px);
  border-color: rgba(30, 64, 175, 0.3);
  box-shadow: 
    0 15px 40px rgba(30, 64, 175, 0.2),
    0 0 0 1px rgba(59, 130, 246, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.footer-logo:hover::before {
  opacity: 1;
}

.footer-logo img {
  height: 70px !important;
  width: auto !important;
  max-width: none !important;
  max-height: none !important;
  filter: drop-shadow(0 4px 20px rgba(30, 64, 175, 0.3));
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  image-rendering: -webkit-optimize-contrast;
  image-rendering: auto;
  -ms-interpolation-mode: bicubic;
  object-fit: contain;
  position: static !important;
  left: auto !important;
  top: auto !important;
  transform: none !important;
  padding: 0 !important;
  position: relative;
  z-index: 1;
}

.footer-logo:hover img {
  filter: drop-shadow(0 8px 35px rgba(30, 64, 175, 0.5));
  transform: scale(1.05);
}

/* Description Section */
.footer-desc-wrapper {
  margin-bottom: 40px;
  position: relative;
}

.footer-desc-title {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.footer-desc-title-text {
  display: block;
  color: #ffffff;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: -0.6px;
  background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.95) 40%, rgba(59, 130, 246, 0.95) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.footer-desc-title-underline {
  display: block;
  height: 4px;
  width: 80px;
  margin-top: 12px;
  background: linear-gradient(90deg, #3b82f6 0%, rgba(59, 130, 246, 0.5) 50%, transparent 100%);
  border-radius: 2px;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.footer-desc-title-underline::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.footer-desc-wrapper:hover .footer-desc-title-underline {
  width: 120px;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
  line-height: 1.85;
  font-size: 15.5px;
  letter-spacing: 0.1px;
  transition: color 0.3s ease;
}

.footer-desc-wrapper:hover .footer-desc {
  color: rgba(255, 255, 255, 0.9);
}

/* Features Cards */
.footer-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.footer-feature-card {
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.12) 0%, rgba(59, 130, 246, 0.08) 100%);
  border: 1px solid rgba(30, 64, 175, 0.25);
  border-radius: 20px;
  padding: 28px 18px;
  text-align: center;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 
    0 6px 20px rgba(30, 64, 175, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.footer-feature-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.25) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transform: scale(0.5);
}

.footer-feature-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.15) 0%, rgba(59, 130, 246, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.6s ease;
  border-radius: 20px;
}

.footer-feature-card:hover {
  transform: translateY(-10px) scale(1.03);
  border-color: rgba(30, 64, 175, 0.45);
  box-shadow: 
    0 20px 50px rgba(30, 64, 175, 0.3),
    0 0 0 1px rgba(59, 130, 246, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.footer-feature-card:hover::before {
  opacity: 1;
  transform: scale(1);
}

.footer-feature-card:hover::after {
  opacity: 1;
}

.footer-feature-icon-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 16px;
}

.footer-feature-icon {
  font-size: 40px;
  color: #3b82f6;
  position: relative;
  z-index: 2;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 3px 10px rgba(59, 130, 246, 0.35));
  display: inline-block;
}

.footer-feature-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
  z-index: 1;
}

.footer-feature-card:hover .footer-feature-icon {
  color: #60a5fa;
  transform: scale(1.2) rotate(8deg);
  filter: drop-shadow(0 6px 20px rgba(59, 130, 246, 0.6));
}

.footer-feature-card:hover .footer-feature-glow {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.5);
}

.footer-feature-label {
  font-size: 13px;
  color: #ffffff;
  font-weight: 800;
  position: relative;
  z-index: 2;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color 0.4s ease, transform 0.4s ease;
}

.footer-feature-card:hover .footer-feature-label {
  color: #60a5fa;
  transform: translateY(-2px);
}

/* ETBIS Badge */
.footer-etbis-badge {
  padding: 26px 28px;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.18) 0%, rgba(59, 130, 246, 0.1) 100%);
  border-radius: 20px;
  border: 1px solid rgba(30, 64, 175, 0.35);
  margin-bottom: 40px;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 
    0 6px 25px rgba(30, 64, 175, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.footer-etbis-badge-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.25) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transform: scale(0.5);
}

.footer-etbis-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, rgba(59, 130, 246, 0.6) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.6s ease;
  border-radius: 20px 20px 0 0;
}

.footer-etbis-badge:hover {
  border-color: rgba(30, 64, 175, 0.55);
  box-shadow: 
    0 15px 45px rgba(30, 64, 175, 0.3),
    0 0 0 1px rgba(59, 130, 246, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transform: translateY(-4px);
}

.footer-etbis-badge:hover .footer-etbis-badge-glow {
  opacity: 1;
  transform: scale(1);
}

.footer-etbis-badge:hover::before {
  opacity: 1;
}

.footer-etbis-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}

.footer-etbis-icon-wrapper {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(96, 165, 250, 0.1) 100%);
  border-radius: 12px;
  border: 1px solid rgba(59, 130, 246, 0.3);
  transition: all 0.4s ease;
}

.footer-etbis-icon-wrapper i {
  color: #3b82f6;
  font-size: 22px;
  filter: drop-shadow(0 2px 8px rgba(59, 130, 246, 0.4));
  transition: all 0.4s ease;
}

.footer-etbis-badge:hover .footer-etbis-icon-wrapper {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.3) 0%, rgba(96, 165, 250, 0.2) 100%);
}

.footer-etbis-badge:hover .footer-etbis-icon-wrapper i {
  transform: scale(1.1);
  filter: drop-shadow(0 4px 12px rgba(59, 130, 246, 0.6));
}

.footer-etbis-header span {
  color: #ffffff;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.4px;
  transition: color 0.3s ease;
}

.footer-etbis-badge:hover .footer-etbis-header span {
  color: #60a5fa;
}

.footer-etbis-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  margin: 0;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.footer-etbis-text strong {
  color: #3b82f6;
  font-weight: 700;
}

/* Social Links */
.footer-social {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-social-link {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.15) 0%, rgba(59, 130, 246, 0.08) 100%);
  border: 1px solid rgba(30, 64, 175, 0.3);
  border-radius: 16px;
  color: #3b82f6;
  font-size: 22px;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 
    0 6px 20px rgba(30, 64, 175, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.footer-social-link::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
  transform: translate(-50%, -50%);
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1), height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-social-link::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(96, 165, 250, 0.08) 100%);
  opacity: 0;
  transition: opacity 0.6s ease;
  border-radius: 16px;
}

.footer-social-tooltip {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.9);
  color: #ffffff;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 10;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.footer-social-tooltip::before {
  content: '';
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 4px solid rgba(0, 0, 0, 0.9);
}

.footer-social-link i {
  position: relative;
  z-index: 2;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 2px 6px rgba(59, 130, 246, 0.25));
}

.footer-social-link:hover {
  border-color: rgba(59, 130, 246, 0.6);
  transform: translateY(-8px) scale(1.08);
  box-shadow: 
    0 16px 40px rgba(59, 130, 246, 0.45),
    0 0 0 1px rgba(59, 130, 246, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.footer-social-link:hover::before {
  width: 130%;
  height: 130%;
}

.footer-social-link:hover::after {
  opacity: 1;
}

.footer-social-link:hover i {
  color: #ffffff;
  transform: scale(1.2) rotate(8deg);
  filter: drop-shadow(0 4px 12px rgba(59, 130, 246, 0.5));
}

.footer-social-link:hover .footer-social-tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(-5px);
}

/* Footer Titles */
.footer-title {
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 32px;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 14px;
  letter-spacing: -0.4px;
  position: relative;
  padding-bottom: 16px;
  transition: all 0.4s ease;
}

.footer-title-text {
  flex: 1;
  background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.9) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.4s ease;
}

.footer-title-underline {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6 0%, rgba(59, 130, 246, 0.4) 50%, transparent 100%);
  border-radius: 2px;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.footer-title-underline::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  animation: shimmer 2.5s infinite;
}

.footer-col:hover .footer-title-underline {
  width: 100px;
}

.footer-col:hover .footer-title-text {
  background: linear-gradient(135deg, #ffffff 0%, rgba(59, 130, 246, 0.95) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-title-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.3) 0%, rgba(59, 130, 246, 0.18) 100%);
  border-radius: 12px;
  color: #3b82f6;
  font-size: 16px;
  border: 1px solid rgba(30, 64, 175, 0.25);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 4px 12px rgba(30, 64, 175, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.footer-title-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
}

.footer-col:hover .footer-title-icon {
  transform: scale(1.12) rotate(6deg);
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.4) 0%, rgba(59, 130, 246, 0.25) 100%);
  box-shadow: 
    0 6px 18px rgba(30, 64, 175, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  border-color: rgba(30, 64, 175, 0.4);
}

.footer-col:hover .footer-title-icon::before {
  width: 100%;
  height: 100%;
}

/* Footer Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 16px;
  position: relative;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  padding: 10px 14px;
  position: relative;
  border-radius: 10px;
  margin-left: -14px;
  font-weight: 500;
  text-decoration: none;
}

.footer-links a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 0;
  background: linear-gradient(180deg, #3b82f6 0%, #60a5fa 100%);
  border-radius: 2px;
  transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 8px rgba(59, 130, 246, 0.5);
}

.footer-link-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  opacity: 0;
  transform: translateX(-10px) scale(0.8);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  color: #3b82f6;
  filter: drop-shadow(0 2px 4px rgba(59, 130, 246, 0.4));
}

.footer-link-text {
  flex: 1;
  transition: transform 0.3s ease;
}

.footer-link-arrow {
  position: absolute;
  right: 14px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #3b82f6, #60a5fa);
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
}

.footer-link-arrow::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 4px solid #60a5fa;
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #ffffff;
  padding-left: 20px;
  background: linear-gradient(90deg, rgba(30, 64, 175, 0.15) 0%, rgba(59, 130, 246, 0.08) 50%, transparent 100%);
  transform: translateX(8px);
  box-shadow: 0 2px 12px rgba(30, 64, 175, 0.2);
}

.footer-links a:hover::before {
  height: 70%;
}

.footer-links a:hover .footer-link-icon {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.footer-links a:hover .footer-link-text {
  transform: translateX(4px);
}

.footer-links a:hover .footer-link-arrow {
  width: 20px;
  opacity: 1;
}

.footer-links a:hover .footer-link-arrow::after {
  border-left-color: #60a5fa;
}

/* Footer Contact */
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  transition: color 0.3s ease;
}

.footer-contact li:hover {
  color: rgba(255, 255, 255, 0.9);
}

.footer-contact-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.15) 0%, rgba(255, 107, 0, 0.08) 100%);
  border-radius: 10px;
  color: #ff6b00;
  font-size: 14px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.footer-contact li:hover .footer-contact-icon {
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.25) 0%, rgba(255, 107, 0, 0.15) 100%);
  transform: scale(1.05);
}

/* Footer CTA Section */
.footer-col-cta {
  position: relative;
}

.footer-cta-wrapper {
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.18) 0%, rgba(59, 130, 246, 0.12) 100%);
  border: 1px solid rgba(30, 64, 175, 0.3);
  border-radius: 24px;
  padding: 40px 35px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 
    0 10px 40px rgba(30, 64, 175, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.footer-cta-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transform: scale(0.5);
}

.footer-cta-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, rgba(59, 130, 246, 0.7) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.6s ease;
  border-radius: 24px 24px 0 0;
}

.footer-cta-content {
  position: relative;
  z-index: 2;
}

.footer-cta-wrapper:hover {
  border-color: rgba(30, 64, 175, 0.5);
  box-shadow: 
    0 20px 60px rgba(30, 64, 175, 0.35),
    0 0 0 1px rgba(59, 130, 246, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transform: translateY(-6px);
}

.footer-cta-wrapper:hover .footer-cta-glow {
  opacity: 1;
  transform: scale(1);
}

.footer-cta-wrapper:hover::before {
  opacity: 1;
}

.footer-cta-title {
  font-size: 28px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.8px;
  position: relative;
  z-index: 1;
}

.footer-cta-title-line1 {
  display: block;
  background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.9) 50%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
}

.footer-cta-title-line2 {
  display: block;
  background: linear-gradient(135deg, #60a5fa 0%, #ff6b00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-cta-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.footer-cta-highlight {
  font-weight: 700;
  position: relative;
}

.footer-cta-highlight-safe {
  color: #60a5fa;
}

.footer-cta-highlight-fast {
  color: #ff6b00;
}

.footer-cta-highlight-easy {
  color: #10b981;
}

.footer-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.footer-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 28px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
}

.footer-cta-btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.7s ease;
}

.footer-cta-btn:hover .footer-cta-btn-shine {
  left: 100%;
}

.footer-cta-btn-icon {
  position: relative;
  z-index: 2;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 18px;
}

.footer-cta-btn-text {
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

.footer-cta-btn-primary {
  background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
  color: #ffffff;
  box-shadow: 
    0 8px 25px rgba(59, 130, 246, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-cta-btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 
    0 14px 40px rgba(59, 130, 246, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
}

.footer-cta-btn-primary:hover .footer-cta-btn-icon {
  transform: scale(1.15) rotate(5deg);
}

.footer-cta-btn-primary:hover .footer-cta-btn-text {
  transform: translateX(2px);
}

.footer-cta-btn-secondary {
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.18) 0%, rgba(255, 107, 0, 0.1) 100%);
  color: #ff6b00;
  border: 1px solid rgba(255, 107, 0, 0.35);
  box-shadow: 
    0 4px 15px rgba(255, 107, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.footer-cta-btn-secondary:hover {
  transform: translateY(-4px);
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.28) 0%, rgba(255, 107, 0, 0.18) 100%);
  border-color: rgba(255, 107, 0, 0.6);
  box-shadow: 
    0 12px 35px rgba(255, 107, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.footer-cta-btn-secondary:hover .footer-cta-btn-icon {
  transform: scale(1.15) rotate(5deg);
}

.footer-cta-btn-secondary:hover .footer-cta-btn-text {
  transform: translateX(2px);
}

.footer-contact-section {
  margin-bottom: 30px;
}

.footer-contact-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: -0.2px;
}

/* Payment Methods */
.footer-payment-methods {
  margin-top: 40px;
  padding: 32px 28px;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.15) 0%, rgba(59, 130, 246, 0.08) 100%);
  border-radius: 20px;
  border: 1px solid rgba(30, 64, 175, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 6px 25px rgba(30, 64, 175, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.footer-payment-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transform: scale(0.5);
}

.footer-payment-methods::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, rgba(59, 130, 246, 0.6) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  border-radius: 20px 20px 0 0;
}

.footer-payment-methods:hover {
  border-color: rgba(30, 64, 175, 0.4);
  box-shadow: 
    0 12px 40px rgba(30, 64, 175, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
}

.footer-payment-methods:hover .footer-payment-glow {
  opacity: 1;
  transform: scale(1);
}

.footer-payment-methods:hover::before {
  opacity: 1;
}

.footer-payment-title {
  font-size: 12px;
  margin-bottom: 20px;
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-align: center;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.2;
}

.footer-payment-logos {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
}

.footer-payment-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.footer-payment-logo:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}

.footer-payment-logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
  opacity: 0.9;
  transition: opacity 0.3s ease;
  filter: brightness(1.1);
}

.footer-payment-logo:hover img {
  opacity: 1;
  filter: brightness(1.2);
}

/* Footer Bottom */
.footer-bottom {
  padding: 35px 0;
  position: relative;
  overflow: hidden;
  background: transparent;
}

.footer-bottom-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(180deg, rgba(30, 64, 175, 0.05) 0%, rgba(15, 20, 25, 0.6) 100%),
    radial-gradient(ellipse at top, rgba(30, 64, 175, 0.08) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.footer-bottom-divider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(30, 64, 175, 0.4) 20%, 
    rgba(59, 130, 246, 0.5) 50%, 
    rgba(30, 64, 175, 0.4) 80%, 
    transparent 100%);
  pointer-events: none;
  z-index: 1;
  animation: footerBottomLine 4s ease-in-out infinite;
}

@keyframes footerBottomLine {
  0%, 100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.footer-bottom-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-chat-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.25) 0%, rgba(59, 130, 246, 0.15) 100%);
  border-radius: 50%;
  color: #3b82f6;
  font-size: 22px;
  border: 2px solid rgba(30, 64, 175, 0.35);
  box-shadow: 
    0 6px 20px rgba(30, 64, 175, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.footer-chat-icon-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.4) 0%, transparent 70%);
  transition: width 0.5s ease, height 0.5s ease;
}

.footer-chat-icon:hover {
  transform: scale(1.1) rotate(5deg);
  border-color: rgba(30, 64, 175, 0.5);
  box-shadow: 
    0 10px 30px rgba(30, 64, 175, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.footer-chat-icon:hover .footer-chat-icon-glow {
  width: 120%;
  height: 120%;
}

.footer-chat-icon i {
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

.footer-chat-icon:hover i {
  transform: scale(1.1);
}

.footer-copyright {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}

.footer-copyright-symbol {
  font-size: 16px;
  opacity: 0.7;
}

.footer-copyright-year {
  font-weight: 700;
  color: #3b82f6;
}

.footer-copyright-text {
  opacity: 0.9;
}

.footer-bottom-center {
  flex: 1;
  display: flex;
  justify-content: center;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-legal-link {
  color: rgba(255, 255, 255, 0.75) !important;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  position: relative;
  padding: 6px 0;
}

.footer-legal-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #3b82f6, #60a5fa);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 1px;
}

.footer-legal-link:hover {
  color: #ffffff !important;
}

.footer-legal-link:hover::after {
  width: 100%;
}

.footer-legal-separator {
  width: 1px;
  height: 20px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  opacity: 0.5;
}

.footer-bottom-right {
  display: flex;
  align-items: center;
}

.footer-etbis-badge-bottom {
  padding: 10px 18px;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.12) 0%, rgba(59, 130, 246, 0.06) 100%);
  border-radius: 12px;
  border: 1px solid rgba(30, 64, 175, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.4s ease;
}

.footer-etbis-badge-bottom:hover {
  border-color: rgba(30, 64, 175, 0.35);
  box-shadow: 0 4px 15px rgba(30, 64, 175, 0.2);
  transform: translateY(-2px);
}

.footer-etbis-link {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.4s ease;
  font-weight: 500;
}

.footer-etbis-link i {
  color: #3b82f6;
  font-size: 16px;
  filter: drop-shadow(0 2px 4px rgba(59, 130, 246, 0.3));
  transition: all 0.3s ease;
}

.footer-etbis-link:hover {
  color: #ffffff;
}

.footer-etbis-link:hover i {
  transform: scale(1.15) rotate(5deg);
  filter: drop-shadow(0 4px 8px rgba(59, 130, 246, 0.5));
}

.footer-etbis-link strong {
  color: #3b82f6;
  font-weight: 700;
  transition: color 0.3s ease;
}

.footer-etbis-link:hover strong {
  color: #60a5fa;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 992px) {
  .footer-top {
    padding: 60px 0 40px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  
  .footer-col-main {
    grid-column: 1 / -1;
    padding-right: 0;
  }
  
  .footer-col-cta {
    grid-column: 1 / -1;
  }
  
  .footer-cta-wrapper {
    padding: 25px 20px;
  }
  
  .footer-cta-title {
    font-size: 24px;
  }
  
  .footer-cta-description {
    font-size: 14px;
  }
  
  .footer-features {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .footer-bottom-left {
    flex-direction: column;
    gap: 10px;
  }
  
  .footer-bottom-center {
    order: 3;
  }
  
  .footer-bottom-right {
    order: 2;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  
  .footer-cta-wrapper {
    padding: 22px 18px;
  }
  
  .footer-cta-title {
    font-size: 22px;
    margin-bottom: 14px;
  }
  
  .footer-cta-description {
    font-size: 14px;
    margin-bottom: 20px;
  }
  
  .footer-cta-buttons {
    gap: 10px;
  }
  
  .footer-cta-btn {
    padding: 12px 20px;
    font-size: 14px;
  }
  
  .footer-features {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  
  .footer-feature-card {
    padding: 16px 10px;
  }
  
  .footer-feature-icon {
    font-size: 28px;
    margin-bottom: 10px;
  }
  
  .footer-feature-label {
    font-size: 12px;
  }
  
  .footer-payment-logos {
    flex-direction: row;
    justify-content: center;
    gap: 15px;
  }
  
  .footer-payment-logo {
    flex: 0 0 auto;
    width: auto;
  }
}

/* Additional Payment Methods Styles - Already covered in main footer section above */

/* ETBIS badge in footer */
.footer-etbis img {
  height: 60px;
  opacity: 0.95;
  border-radius: 6px;
  background: #fff;
  padding: 4px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.footer-etbis img:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

@media (max-width: 992px) {
  .footer-etbis img {
    height: 44px;
  }
}

/* Responsive Design */

/* Large Tablets and Small Desktops (1200px and below) */
@media (max-width: 1200px) {
  .container {
    max-width: 100%;
    width: 100%;
    padding: 0 12px;
  }
  
  .header-top-content {
    gap: 6px;
  }
  
  .header-left-links {
    gap: 5px;
  }
  
  .header-link-btn {
    font-size: 10px;
    padding: 5px 10px;
    min-height: 28px;
  }
  
  .header-auth {
    gap: 6px;
  }
  
  .logo-icon-wrapper {
    width: 40px;
    height: 40px;
  }
  
  .logo-text-main {
    font-size: 18px;
  }
  
  .category-link {
    padding: 6px 12px;
    font-size: 11px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
  }
}

/* Tablets (992px and below) */
@media (max-width: 992px) {
  .container {
    max-width: 100%;
    width: 100%;
    padding: 0 16px;
  }

  /* Hide desktop navigation, show mobile menu */
  .main-nav {
    display: none !important;
  }

  .mobile-menu-toggle {
    display: flex !important;
  }

  /* Header adjustments */
  .header-content {
    gap: 10px;
  }

  .logo img {
    height: 40px !important;
  }

  .header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  /* Header top - adjust on tablet */
  .header-left-links {
    flex-wrap: wrap;
    gap: 6px;
  }

  .header-link-btn {
    font-size: 11px;
    padding: 6px 12px;
  }

  .header-top-content {
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-start;
  }

  .header-auth {
    gap: 8px;
    width: 100%;
    justify-content: flex-end;
  }
  
  .user-profile-button {
    font-size: 11px;
    padding: 10px 16px;
    gap: 10px;
  }
  
  .user-profile-name {
    max-width: 100px;
    font-size: 12px;
  }

  /* Header search - reduce width */
  .header-search {
    max-width: 400px;
  }

  /* Categories - enable scrolling */
  .categories-nav {
    gap: 3px;
  }

  .category-link {
    font-size: 12px;
    padding: 6px 12px;
  }

  .header-balance {
    padding: 8px 12px;
    font-size: 13px;
  }

  .header-balance span {
    display: none;
  }

  /* Notification and cart buttons - smaller on mobile */
  .notification-button,
  .cart-button {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .notification-badge,
  .cart-count {
    top: -5px;
    right: -5px;
    width: 18px;
    height: 18px;
    font-size: 10px;
  }

  .notification-button,
  .cart-button {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  /* Hero Slider */
  .hero-slider {
    height: 400px;
    margin: 20px 0;
  }

  .slider-content h2 {
    font-size: 36px;
  }

  .slider-content p {
    font-size: 16px;
  }

  .slider-button {
    padding: 12px 24px;
    font-size: 15px;
  }

  /* Section spacing */
  .section {
    padding: 24px 0;
  }

  .section-header {
    margin-bottom: 25px;
  }

  .section-title {
    font-size: 28px;
  }

  /* Product Grid */
  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 18px;
  }

  .category-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 15px;
  }

  /* Footer */
  .footer-top {
    padding: 50px 0 30px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
  }
}

/* Mobile Landscape and Small Tablets (768px and below) */
@media (max-width: 768px) {
  .container {
    max-width: 95%;
    width: 95%;
    padding: 0 16px;
  }

  /* Flash Messages */
  .flash-message {
    left: 10px;
    right: 10px;
    top: 10px;
    padding: 12px 18px;
    font-size: 14px;
  }

  /* Header Top - Hide on mobile */
  .header-top {
    display: none;
  }

  .header-main {
    padding: 10px 0;
  }

  .header-content {
    gap: 10px;
  }

  .logo img {
    height: 42px;
  }

  /* Hide search on mobile */
  .header-search {
    display: none;
  }

  /* Hide categories on mobile */
  .header-categories {
    display: none;
  }

  .header-actions {
    gap: 8px;
  }

  .header-balance {
    min-width: 40px;
    padding: 8px;
  }

  .header-balance i {
    font-size: 16px;
  }

  /* User Dropdown */
  .user-button {
    padding: 8px 14px;
    font-size: 12px;
    gap: 8px;
  }

  .user-button i {
    font-size: 16px;
  }

  .user-button span {
    font-size: 10px;
    line-height: 1.2;
  }

  .user-dropdown {
    right: -10px;
    min-width: 180px;
  }

  /* Hero Slider */
  .hero-slider {
    height: 300px;
    margin: 15px 0;
    border-radius: 10px;
  }

  .slider-content {
    left: 15px;
    right: 15px;
    max-width: 90%;
  }

  .slider-content h2 {
    font-size: 26px;
    margin-bottom: 10px;
  }

  .slider-content p {
    font-size: 14px;
    margin-bottom: 18px;
  }

  .slider-button {
    padding: 10px 20px;
    font-size: 14px;
  }

  .slider-nav {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .slider-nav.prev {
    left: 10px;
  }

  .slider-nav.next {
    right: 10px;
  }

  .slider-controls {
    bottom: 15px;
  }

  .slider-dot {
    width: 10px;
    height: 10px;
  }

  .slider-dot.active {
    width: 24px;
  }

  /* Section */
  .section {
    padding: 20px 0;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 16px;
  }

  .section-title {
    font-size: 18px;
  }

  .view-all {
    font-size: 12px;
  }

  /* Category Grid */
  .category-grid {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 10px;
    margin-bottom: 28px;
  }

  .category-card {
    height: 110px;
  }

  .category-icon-fallback {
    width: 38px;
    height: 38px;
    font-size: 16px;
    margin-bottom: 6px;
  }

  .category-name {
    font-size: 11px;
    margin-bottom: 0;
    padding: 4px 8px;
  }

  .category-arrow {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }

  /* Product Grid */
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .product-card {
    border-radius: 12px;
  }

  .product-badge {
    top: 8px;
    right: 8px;
    padding: 4px 10px;
    font-size: 10px;
  }

  .product-image {
    padding-top: 75%;
  }

  .quick-action {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .product-info {
    padding: 12px;
    gap: 6px;
  }

  .product-category {
    padding: 4px 10px;
    font-size: 10px;
  }

  .product-title {
    font-size: 14px;
    font-weight: 700;
    min-height: 36px;
    line-height: 1.5;
    color: var(--text-light);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  }

  .product-meta {
    gap: 5px;
  }

  .product-seller {
    font-size: 11px;
    padding: 5px 0;
  }

  .product-seller i {
    font-size: 12px;
  }

  .product-stock-info {
    padding: 5px 8px;
    font-size: 10px;
  }

  .product-stock-info i {
    font-size: 10px;
  }

  .product-stats {
    gap: 6px;
    padding: 6px 0;
  }

  .stat-item {
    font-size: 10px;
    gap: 4px;
  }

  .stat-item i {
    font-size: 11px;
  }

  .product-footer {
    padding-top: 8px;
    gap: 8px;
  }

  .product-price-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .product-price {
    font-size: 16px;
  }

  .product-date {
    font-size: 9px;
  }

  .btn-add-cart {
    padding: 8px 12px;
    font-size: 11px;
    gap: 4px;
  }

  .btn-add-cart i {
    font-size: 11px;
  }

  /* Quantity selector on mobile */
  .product-quantity-cart {
    flex-direction: column;
    gap: 6px;
  }

  .quantity-selector {
    width: 100%;
  }

  .qty-btn {
    width: 40px;
  }

  .qty-input {
    flex: 1;
    width: auto;
  }

  /* Footer */
  .footer-top {
    padding: 40px 0 25px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-logo img {
    height: 42px !important;
    width: auto !important;
    max-width: none !important;
    max-height: none !important;
    margin-bottom: 15px;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: auto;
    -ms-interpolation-mode: bicubic;
    object-fit: contain;
    position: static !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
    padding: 0 !important;
  }

  .footer-desc {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .footer-social a {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .footer-title {
    font-size: 16px;
    margin-bottom: 15px;
  }

  .footer-links li,
  .footer-contact li {
    margin-bottom: 10px;
    font-size: 14px;
  }

  .footer-bottom {
    padding: 15px 0;
  }

  .footer-bottom-content {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    font-size: 13px;
  }

  .footer-legal {
    flex-direction: column;
    gap: 10px;
  }
}

/* Mobile Portrait (480px and below) */
@media (max-width: 480px) {
  .container {
    max-width: 95%;
    width: 95%;
    padding: 0 16px;
  }

  /* Header - more compact on small mobile */
  .header-top {
    display: none; /* Hide top bar on very small screens */
  }

  .header-main {
    padding: 10px 0;
  }

  .logo img {
    height: 35px;
  }

  .header-content {
    gap: 8px;
  }

  .notification-button,
  .cart-button,
  .mobile-menu-toggle {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }

  .notification-badge,
  .cart-count {
    min-width: 18px;
    height: 18px;
    font-size: 10px;
    padding: 0 4px;
  }

  /* Hero Slider */
  .hero-slider {
    height: 250px;
    margin: 12px 0;
  }

  .slider-content {
    left: 12px;
    right: 12px;
  }

  .slider-content h2 {
    font-size: 22px;
  }

  .slider-content p {
    font-size: 13px;
    margin-bottom: 15px;
  }

  .slider-button {
    padding: 8px 16px;
    font-size: 13px;
    gap: 6px;
  }

  .slider-nav {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .slider-nav.prev {
    left: 8px;
  }

  .slider-nav.next {
    right: 8px;
  }

  /* Section */
  .section {
    padding: 25px 0;
  }

  .section-title {
    font-size: 20px;
  }

  .section-title::after {
    width: 50px;
    height: 2px;
  }

  /* Category Grid */
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .category-card {
    height: 130px;
  }

  .category-icon-fallback {
    width: 36px;
    height: 36px;
    font-size: 18px;
    margin-bottom: 6px;
  }

  .category-name {
    font-size: 13px;
    margin-bottom: 4px;
  }

  .category-arrow {
    width: 26px;
    height: 26px;
    font-size: 11px;
  }

  /* Product Grid - Single column on very small screens */
  .product-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .product-card {
    border-radius: 8px;
  }

  .product-badge {
    top: 8px;
    right: 8px;
    padding: 3px 8px;
    font-size: 10px;
  }

  .product-image {
    padding-top: 65%; /* Slightly different aspect ratio for single column */
  }

  .quick-action {
    width: 38px;
    height: 38px;
    font-size: 15px;
  }

  .product-info {
    padding: 12px;
  }

  .product-category {
    padding: 12px 8px;
    font-size: 10px;
  }

  .product-title {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
    min-height: 44px;
    color: var(--text-light);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  }

  .product-seller {
    font-size: 11px;
    padding: 5px 0;
  }

  .product-seller i {
    font-size: 14px;
  }

  .product-stock-info {
    padding: 5px 8px;
    font-size: 11px;
  }

  .product-stats {
    gap: 10px;
    padding: 6px 0;
  }

  .product-footer {
    padding-top: 10px;
    gap: 10px;
  }

  .product-price {
    font-size: 22px;
  }

  .btn-add-cart {
    padding: 10px 18px;
    font-size: 13px;
  }

  /* Mobile Menu */
  .mobile-menu {
    width: 280px;
  }

  .mobile-menu-header {
    padding: 15px;
  }

  .mobile-menu-header span {
    font-size: 16px;
  }

  .mobile-nav {
    padding: 8px;
  }

  .mobile-nav a {
    padding: 12px;
    font-size: 14px;
    gap: 10px;
  }

  /* Footer */
  .footer-top {
    padding: 30px 0 20px;
  }

  .footer-logo img {
    height: 38px !important;
    width: auto !important;
    max-width: none !important;
    max-height: none !important;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: auto;
    -ms-interpolation-mode: bicubic;
    object-fit: contain;
    position: static !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
    padding: 0 !important;
  }

  .footer-desc {
    font-size: 13px;
  }

  .footer-social a {
    width: 34px;
    height: 34px;
    font-size: 15px;
  }

  .footer-title {
    font-size: 15px;
  }

  .footer-links a,
  .footer-contact li {
    font-size: 13px;
  }

  .footer-bottom-content {
    font-size: 12px;
  }
}

/* Extra Small Mobile (360px and below) */
@media (max-width: 360px) {
  .container {
    max-width: 95%;
    width: 95%;
    padding: 0 12px;
  }

  .logo img {
    height: 32px;
  }

  .hero-slider {
    height: 200px;
  }

  .slider-content h2 {
    font-size: 18px;
  }

  .slider-content p {
    font-size: 12px;
  }

  .section-title {
    font-size: 18px;
  }

  .category-icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .category-name {
    font-size: 12px;
  }

  .product-image {
    height: 180px;
    padding-top: 0; /* aspect-ratio ile çakışmayı kaldır, görsel görünsün */
  }

  .product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .product-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-light);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  }

  .product-price {
    font-size: 20px;
  }

  .btn-add-cart {
    padding: 8px 14px;
    font-size: 12px;
  }
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--dark-card);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-gold);
}

/* Mobile Responsive Utilities */
@media (max-width: 768px) {
  /* Hide on mobile */
  .hide-mobile {
    display: none !important;
  }

  /* Show only on mobile */
  .show-mobile {
    display: block !important;
  }

  /* Full width on mobile */
  .mobile-full-width {
    width: 100% !important;
  }

  /* Reduce padding on mobile */
  .mobile-no-padding {
    padding: 0 !important;
  }

  /* Stack columns on mobile */
  .mobile-stack {
    flex-direction: column !important;
  }
}

/* Responsive Tables */
@media (max-width: 768px) {
  table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  table thead {
    display: none;
  }

  table tbody,
  table tr,
  table td {
    display: block;
    width: 100%;
  }

  table tr {
    margin-bottom: 15px;
    background: var(--dark-card);
    border: 1px solid var(--border-dark);
    border-radius: 8px;
    padding: 12px;
  }

  table td {
    text-align: right;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-dark);
  }

  table td:last-child {
    border-bottom: none;
  }

  table td:before {
    content: attr(data-label);
    float: left;
    font-weight: 600;
    color: var(--accent-orange);
  }
}

/* Responsive Forms */
@media (max-width: 768px) {
  .form-row {
    flex-direction: column !important;
    gap: 15px !important;
  }

  .form-group {
    width: 100% !important;
  }

  input[type="text"],
  input[type="email"],
  input[type="password"],
  input[type="number"],
  input[type="tel"],
  textarea,
  select {
    font-size: 16px !important; /* Prevents zoom on iOS */
  }

  button,
  .btn,
  input[type="submit"] {
    width: 100%;
    padding: 14px 20px !important;
  }
}

/* Responsive Modals */
@media (max-width: 768px) {
  .modal-content {
    width: 95% !important;
    max-width: 95% !important;
    margin: 20px auto !important;
    padding: 20px !important;
  }

  .modal-header h2 {
    font-size: 20px !important;
  }

  .modal-body {
    padding: 15px 0 !important;
  }
}

/* Responsive Cards and Panels */
@media (max-width: 768px) {
  .card,
  .panel {
    border-radius: 8px !important;
    padding: 15px !important;
  }

  .card-header,
  .panel-header {
    padding: 12px !important;
    font-size: 16px !important;
  }

  .card-body,
  .panel-body {
    padding: 12px !important;
  }
}

/* Responsive Images */
img {
  max-width: 100%;
  height: auto;
}

/* Responsive Embeds */
.video-container,
.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.video-container iframe,
.embed-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Touch-friendly tap targets */
@media (max-width: 768px) {
  a,
  button,
  .btn,
  input[type="button"],
  input[type="submit"] {
    min-height: 44px;
    min-width: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

/* Product Detail Page Responsive */
@media (max-width: 992px) {
  /* Product detail grid - make it single column on tablets */
  div[style*="grid-template-columns: 500px 1fr"] {
    display: block !important;
  }

  div[style*="grid-template-columns: 500px 1fr"] > div {
    width: 100% !important;
    margin-bottom: 30px;
  }

  div[style*="position: sticky; top: 100px"] {
    position: static !important;
  }
}

@media (max-width: 768px) {
  /* Breadcrumb on mobile */
  nav[style*="margin-bottom: 30px"] {
    font-size: 12px !important;
    margin-bottom: 20px !important;
    overflow-x: auto;
    white-space: nowrap;
  }

  /* Product detail adjustments */
  div[style*="grid-template-columns: 500px 1fr"],
  div[style*="display: grid; grid-template-columns: 500px 1fr"] {
    display: block !important;
    gap: 20px !important;
  }

  /* Product image container */
  div[style*="border-radius: 15px; padding: 30px"] {
    padding: 15px !important;
    border-radius: 10px !important;
  }

  /* Related products on mobile */
  div[style*="grid-template-columns: repeat(4, 1fr)"] {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
  }

  /* Product info sections */
  div[style*="padding: 30px"] {
    padding: 15px !important;
  }

  div[style*="padding: 25px"] {
    padding: 15px !important;
  }

  /* Font size adjustments */
  h1[style*="font-size: 36px"],
  h1[style*="font-size: 32px"] {
    font-size: 24px !important;
  }

  h2[style*="font-size: 28px"],
  h2[style*="font-size: 24px"] {
    font-size: 20px !important;
  }

  h3[style*="font-size: 20px"] {
    font-size: 18px !important;
  }

  /* Price display */
  div[style*="font-size: 48px"] {
    font-size: 32px !important;
  }

  div[style*="font-size: 40px"] {
    font-size: 28px !important;
  }

  div[style*="font-size: 36px"] {
    font-size: 24px !important;
  }

  /* Button adjustments */
  button[style*="padding: 15px 30px"],
  a[style*="padding: 15px 30px"] {
    padding: 12px 20px !important;
    font-size: 14px !important;
  }

  button[style*="padding: 12px 24px"],
  a[style*="padding: 12px 24px"] {
    padding: 10px 18px !important;
    font-size: 13px !important;
  }
}

/* Cart Page Responsive */
@media (max-width: 992px) {
  /* Cart grid - make it single column */
  div[style*="grid-template-columns: 1fr 400px"] {
    display: block !important;
  }

  div[style*="grid-template-columns: 1fr 400px"] > div {
    width: 100% !important;
  }

  /* Order summary sticky - remove on tablet */
  div[style*="position: sticky; top: 100px"] {
    position: static !important;
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  /* Cart item layout */
  div[style*="display: flex; gap: 20px"] {
    flex-direction: column !important;
    gap: 15px !important;
  }

  /* Cart item image */
  img[style*="width: 120px; height: 120px"] {
    width: 100% !important;
    height: 200px !important;
    max-width: 100% !important;
  }

  /* Cart item actions */
  div[style*="display: flex; justify-content: space-between"] {
    flex-direction: column !important;
    gap: 15px !important;
  }

  /* Cart remove button */
  button[style*="padding: 10px 20px"] {
    width: 100% !important;
    padding: 12px 20px !important;
  }
}

/* User Panel & Dashboard Responsive */
@media (max-width: 992px) {
  /* Sidebar layout - make it vertical */
  div[style*="display: grid; grid-template-columns: 280px 1fr"],
  div[style*="display: grid; grid-template-columns: 300px 1fr"] {
    display: block !important;
  }

  /* Sidebar */
  aside,
  .sidebar {
    width: 100% !important;
    margin-bottom: 20px;
    position: static !important;
  }
}

@media (max-width: 768px) {
  /* Stats cards */
  div[style*="display: grid; grid-template-columns: repeat(4, 1fr)"] {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }

  div[style*="display: grid; grid-template-columns: repeat(3, 1fr)"] {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }

  /* User panel cards */
  div[style*="padding: 60px"] {
    padding: 30px 15px !important;
  }

  div[style*="padding: 40px"] {
    padding: 20px 15px !important;
  }

  /* Icon sizes */
  i[style*="font-size: 80px"] {
    font-size: 50px !important;
  }

  i[style*="font-size: 60px"] {
    font-size: 40px !important;
  }
}

/* Admin Panel Responsive */
@media (max-width: 768px) {
  /* Admin tables */
  .admin-table {
    font-size: 13px;
  }

  .admin-table th,
  .admin-table td {
    padding: 10px 8px !important;
  }

  /* Admin action buttons */
  .admin-actions {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .admin-actions button,
  .admin-actions a {
    width: 100%;
    margin: 0 !important;
  }
}

/* Form Pages Responsive (Login, Register, etc.) */
@media (max-width: 768px) {
  /* Auth forms container */
  div[style*="max-width: 500px"],
  div[style*="max-width: 600px"] {
    max-width: 100% !important;
    padding: 20px 15px !important;
  }

  /* Form sections */
  .form-section {
    padding: 20px 15px !important;
  }

  /* Auth page titles */
  .auth-title,
  h1.auth-title {
    font-size: 24px !important;
    margin-bottom: 20px !important;
  }

  /* Form groups spacing */
  .form-group {
    margin-bottom: 15px !important;
  }

  /* Submit buttons */
  .submit-btn,
  button[type="submit"] {
    padding: 14px 20px !important;
    font-size: 15px !important;
  }
}

/* Payment Page Responsive */
@media (max-width: 768px) {
  /* Payment method cards */
  div[style*="display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr))"] {
    grid-template-columns: 1fr !important;
  }

  /* Payment logos */
  img[style*="height: 60px"],
  img[style*="height: 50px"] {
    height: 40px !important;
  }
}

/* Category Page Responsive */
@media (max-width: 768px) {
  /* Category filters */
  .category-filters {
    position: static !important;
    width: 100% !important;
    margin-bottom: 20px;
  }

  /* Category header */
  .category-header {
    flex-direction: column !important;
    gap: 15px !important;
  }

  /* Sort dropdown */
  .sort-dropdown {
    width: 100% !important;
  }
}

/* Contact Page Responsive */
@media (max-width: 768px) {
  /* Contact info grid */
  div[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 15px !important;
  }

  /* Contact info items */
  .contact-info-item {
    padding: 15px !important;
  }
}

/* Message/Chat Responsive */
@media (max-width: 768px) {
  /* Chat container */
  .chat-container {
    height: calc(100vh - 150px) !important;
  }

  /* Message list */
  .message-list {
    display: none;
  }

  .message-list.active {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1000;
    background: var(--dark-bg);
  }

  /* Chat messages */
  .chat-messages {
    flex: 1;
  }

  /* Message input */
  .message-input {
    padding: 10px !important;
  }

  .message-input textarea {
    font-size: 16px !important;
  }
}

/* Notification Page Responsive */
@media (max-width: 768px) {
  .notification-item {
    padding: 15px !important;
    font-size: 14px !important;
  }

  .notification-item i {
    font-size: 20px !important;
  }
}

/* Search Results Responsive */
@media (max-width: 768px) {
  .search-header {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 15px !important;
  }

  .search-filters {
    width: 100% !important;
    overflow-x: auto;
  }

  .search-filter-btn {
    white-space: nowrap;
    font-size: 13px !important;
    padding: 8px 14px !important;
  }
}

/* Overlay and Mobile Menu Backdrop - FOUC önleme */
.mobile-menu-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 10000;
  backdrop-filter: blur(2px);
  /* Gizli başlangıç - display:none yerine opacity/visibility (transition için) */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-backdrop.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Prevent body scroll when mobile menu is open */
body.menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

/* Loading Spinner Responsive */
@media (max-width: 768px) {
  .loading-spinner {
    width: 40px !important;
    height: 40px !important;
  }
}

/* Pagination Responsive */
@media (max-width: 768px) {
  .pagination {
    flex-wrap: wrap;
    gap: 8px !important;
  }

  .pagination a,
  .pagination span {
    min-width: 36px !important;
    height: 36px !important;
    font-size: 13px !important;
    padding: 8px !important;
  }

  .pagination .page-info {
    width: 100%;
    text-align: center;
    order: -1;
    margin-bottom: 10px;
  }
}


/* Improved Touch Feedback */
.touch-device a,
.touch-device button,
.touch-device .btn {
  -webkit-tap-highlight-color: rgba(30, 64, 175, 0.15);
}

/* Prevent text selection on touch devices for UI elements */
.touch-device .btn,
.touch-device button,
.touch-device .nav-list,
.touch-device .mobile-nav,
.touch-device .slider-nav {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Better focus states for accessibility */
@media (max-width: 768px) {
  a:focus,
  button:focus,
  input:focus,
  select:focus,
  textarea:focus {
    outline: 2px solid var(--primary-gold);
    outline-offset: 2px;
  }
}

/* Improved sticky header on mobile */
@media (max-width: 768px) {
  .main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
  }

  /* Compensate for sticky header */
  main.main-content {
    scroll-margin-top: 80px;
  }
}

/* Pull-to-refresh indicator styling (iOS) */
@media (max-width: 768px) {
  body {
    overscroll-behavior-y: contain;
  }
}

/* Hide scrollbar on mobile while keeping functionality */
@media (max-width: 768px) {
  * {
    scrollbar-width: thin;
    scrollbar-color: var(--dark-card) var(--dark-bg);
  }

  *::-webkit-scrollbar {
    width: 6px;
    height: 6px;
  }

  *::-webkit-scrollbar-track {
    background: var(--dark-bg);
  }

  *::-webkit-scrollbar-thumb {
    background: var(--dark-card);
    border-radius: 3px;
  }
}

/* Safe area for notched devices (iPhone X, etc.) */
@supports (padding: max(0px)) {
  .main-header,
  .main-footer,
  .mobile-menu {
    padding-left: max(env(safe-area-inset-left), 0px);
    padding-right: max(env(safe-area-inset-right), 0px);
  }

  .mobile-menu {
    padding-bottom: max(env(safe-area-inset-bottom), 0px);
  }



/* Landscape mode optimizations for mobile */
@media (max-width: 768px) and (orientation: landscape) {
  .hero-slider {
    height: 220px;
  }

  .slider-content h2 {
    font-size: 22px;
  }

  .slider-content p {
    font-size: 13px;
  }

  .mobile-menu {
    width: 260px;
  }

  .section {
    padding: 20px 0;
  }
}

/* High DPI screens optimization */
@media only screen and (-webkit-min-device-pixel-ratio: 2),
  only screen and (min--moz-device-pixel-ratio: 2),
  only screen and (-o-min-device-pixel-ratio: 2/1),
  only screen and (min-device-pixel-ratio: 2),
  only screen and (min-resolution: 192dpi),
  only screen and (min-resolution: 2dppx) {
  /* Optimize images for retina displays */
  img {
    image-rendering: -webkit-optimize-contrast;
  }
}

/* Print styles */
@media print {
  .main-header,
  .main-footer,
  .mobile-menu,
  .mobile-menu-toggle,
  .flash-message,
  .notification-button,
  .cart-button,
  .slider-nav,
  .slider-controls {
    display: none !important;
  }

  body {
    background: var(--bg-secondary);
    color: var(--text-primary);
  }

  .container {
    max-width: 100%;
  }

  a {
    color: var(--primary-blue);
    text-decoration: underline;
  }
}

/* Additional Mobile-Specific Fixes */

/* Fix for iOS input zoom */
@media screen and (max-width: 768px) {
  input[type="text"],
  input[type="number"],
  input[type="email"],
  input[type="tel"],
  input[type="password"],
  input[type="search"],
  select,
  textarea {
    font-size: 16px !important;
  }
}

/* Fix for clickable elements on mobile */
a,
button,
input,
select,
textarea {
  -webkit-touch-callout: default;
}

/* Prevent iOS text size adjust after orientation change */
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

/* Improve font rendering on different displays */
@media screen and (-webkit-min-device-pixel-ratio: 2) {
  body {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
  }
}

/* Mobile-specific animations optimization */
@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;
  }
}

/* Better tap/click area for mobile */
@media (max-width: 768px) {
  .product-card,
  .category-card {
    cursor: pointer;
  }

  /* Enlarge clickable areas */
  .nav-list a,
  .mobile-nav a,
  .footer-links a {
    padding: 12px 16px;
  }
}

/* Fix for overflow issues on mobile */
@media (max-width: 768px) {
  .container {
    overflow-x: hidden;
  }

  /* Ensure cards don't overflow */
  .product-card,
  .category-card,
  .card,
  .panel {
    max-width: 100%;
    overflow: hidden;
  }

  /* Fix image overflow */
  img {
    max-width: 100%;
    height: auto;
  }
}

/* Improved focus indicators for keyboard navigation */
:focus-visible {
  outline: 2px solid var(--primary-gold);
  outline-offset: 2px;
}

/* Remove outline for mouse users */
:focus:not(:focus-visible) {
  outline: none;
}

/* Smooth scrolling for supported browsers */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

/* Dark mode support (if system prefers dark mode) */
@media (prefers-color-scheme: dark) {
  /* Already dark theme, ensure it stays consistent */
  body {
    background: var(--dark-bg);
    color: var(--text-light);
  }
}

/* High contrast mode support for accessibility */
@media (prefers-contrast: high) {
  .product-card,
  .category-card,
  .card {
    border-width: 2px;
  }

  button,
  .btn {
    border: 2px solid currentColor;
  }
}

/* Orientation-specific adjustments */
@media (max-width: 768px) and (orientation: portrait) {
  /* Portrait mode - maximize vertical space */
  .section {
    padding: 25px 0;
  }

  .hero-slider {
    height: 300px;
  }
}

@media (max-width: 768px) and (orientation: landscape) {
  /* Landscape mode - compact header for more content space */
  .header-main {
    padding: 8px 0;
  }

  .logo img {
    height: 38px;
  }

  .hero-slider {
    height: 260px;
  }

  .section {
    padding: 20px 0;
  }

  .mobile-menu {
    width: 280px;
  }
}

/* Fix for sticky positioning on iOS */
@supports (-webkit-overflow-scrolling: touch) {
  .main-header {
    position: -webkit-sticky;
    position: sticky;
  }
}

/* Progressive Web App (PWA) support */
@media all and (display-mode: standalone) {
  /* If installed as PWA, add padding for status bar */
  body {
    padding-top: env(safe-area-inset-top);
  }

  .main-header {
    top: env(safe-area-inset-top);
  }
}

/* Fallback for very old browsers */
@supports not (display: grid) {
  .product-grid,
  .category-grid,
  .footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }

  .product-grid > *,
  .category-grid > * {
    flex: 1 1 280px;
  }

  .footer-grid > * {
    flex: 1 1 250px;
  }
}

/* Accessibility: Skip to main content link */
.skip-to-main {
  position: absolute;
  left: -9999px;
  z-index: 999;
  padding: 1em;
  background-color: var(--dark-card);
  color: var(--accent-orange);
  text-decoration: none;
  border: 2px solid var(--primary-gold);
}

.skip-to-main:focus {
  left: 50%;
  transform: translateX(-50%);
  top: 10px;
}

/* Loading states for better UX */
.loading {
  opacity: 0.6;
  pointer-events: none;
  cursor: wait;
}

.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  margin: -15px 0 0 -15px;
  border: 3px solid var(--primary-gold);
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Optimize for foldable devices */
@media (horizontal-viewport-segments: 2) {
  .container {
    max-width: 100%;
    padding: 0 env(viewport-segment-width 0 0) 0 env(viewport-segment-width 1 0);
  }
}

/* Final mobile polish */
@media (max-width: 768px) {
  /* Ensure proper spacing */
  section:first-of-type {
    margin-top: 0;
  }

  /* Better card spacing */
  .product-card + .product-card,
  .category-card + .category-card {
    margin-top: 0;
  }

  /* Optimize button spacing */
  button + button,
  .btn + .btn {
    margin-left: 0;
    margin-top: 10px;
  }

  /* Better form field spacing */
  .form-group + .form-group {
    margin-top: 15px;
  }
}

/* ============================================
   USER & ADMIN PANEL RESPONSIVE STYLES
   ============================================ */

/* Sidebar Base Styles */
#userSidebar,
#adminSidebar {
  position: fixed;
  left: 0;
  top: 0;
  width: 260px;
  height: 100vh;
  background: linear-gradient(180deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
  border-right: 1px solid var(--border-dark);
  z-index: 1000;
  overflow-y: auto;
  overflow-x: hidden;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 4px 0 24px rgba(0, 0, 0, 0.5);
}

/* Custom Scrollbar for Sidebars */
#userSidebar::-webkit-scrollbar,
#adminSidebar::-webkit-scrollbar {
  width: 8px;
}

#userSidebar::-webkit-scrollbar-track,
#adminSidebar::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.2);
}

#userSidebar::-webkit-scrollbar-thumb,
#adminSidebar::-webkit-scrollbar-thumb {
  background: linear-gradient(
    180deg,
    rgba(30, 64, 175, 0.2),
    rgba(30, 64, 175, 0.3)
  );
  border-radius: 4px;
}

#userSidebar::-webkit-scrollbar-thumb:hover,
#adminSidebar::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(
    180deg,
    rgba(30, 64, 175, 0.3),
    rgba(30, 64, 175, 0.4)
  );
}

/* Sidebar Links Hover Effect */
.sidebar-link {
  position: relative;
  overflow: hidden;
}

.sidebar-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 3px;
  background: var(--gradient-primary);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.sidebar-link:hover {
  background: var(--dark-hover);
  color: var(--primary-gold) !important;
  padding-left: 25px !important;
}

.sidebar-link:hover::before {
  transform: scaleY(1);
}

.sidebar-link.active {
  background: linear-gradient(
    90deg,
    rgba(30, 64, 175, 0.1) 0%,
    rgba(30, 64, 175, 0.05) 100%
  );
  color: var(--primary-blue) !important;
  border-left: 3px solid var(--primary-blue);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.sidebar-link.active::before {
  transform: scaleY(1);
}

/* Sidebar Toggle Button (Hidden on desktop) */
.sidebar-toggle {
  display: none;
  position: fixed;
  top: 20px;
  left: 20px;
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border: none;
  border-radius: 12px;
  color: var(--text-light);
  font-size: 20px;
  z-index: 1001;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(30, 64, 175, 0.25);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.sidebar-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(30, 64, 175, 0.25);
}

.sidebar-toggle:active {
  transform: translateY(0);
}

.sidebar-toggle.active i {
  transform: rotate(90deg);
}

/* Panel Backdrop */
.panel-backdrop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  z-index: 999;
  backdrop-filter: blur(0px);
  transition: all 0.3s ease;
}

.panel-backdrop.active {
  display: block;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Page content animation */
@media (max-width: 992px) {
  div[style*="margin-left: 260px"] > * {
    animation: slideInUp 0.4s ease-out;
  }

  div[style*="margin-left: 260px"] > *:nth-child(1) {
    animation-delay: 0.05s;
  }

  div[style*="margin-left: 260px"] > *:nth-child(2) {
    animation-delay: 0.1s;
  }

  div[style*="margin-left: 260px"] > *:nth-child(3) {
    animation-delay: 0.15s;
  }

  div[style*="margin-left: 260px"] > *:nth-child(4) {
    animation-delay: 0.2s;
  }
}

/* Tablet Responsive (992px and below) */
@media (max-width: 992px) {
  /* Hide sidebar by default, show toggle button */
  #userSidebar,
  #adminSidebar {
    transform: translateX(-100%);
  }

  #userSidebar.active,
  #adminSidebar.active {
    transform: translateX(0);
  }

  .sidebar-toggle {
    display: flex;
  }

  /* Remove margin from main content */
  div[style*="margin-left: 260px"] {
    margin-left: 0 !important;
    padding: 20px !important;
  }

  /* Admin/User panel statistics grid */
  div[style*="grid-template-columns: repeat(4, 1fr)"] {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 15px !important;
  }

  div[style*="grid-template-columns: repeat(auto-fit, minmax(250px, 1fr))"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* Messages Page - Tablet Layout */
  div[style*="grid-template-columns: 350px 1fr"][style*="height: 700px"] {
    grid-template-columns: 300px 1fr !important;
    height: 600px !important;
  }
}

/* Mobile Responsive (768px and below) */
@media (max-width: 768px) {
  /* Sidebar full width on mobile */
  #userSidebar,
  #adminSidebar {
    width: 300px;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.7);
  }

  /* Main content adjustments */
  div[style*="margin-left: 260px"] {
    margin-left: 0 !important;
    padding: 15px !important;
    padding-top: 75px !important; /* Top padding for toggle button */
  }

  /* Container with auto margin - also needs top padding */
  .container[style*="margin: 40px auto"],
  div.container[style*="margin-top"] {
    margin-top: 75px !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  /* Page headers */
  h1[style*="font-size: 36px"],
  h1[style*="font-size: 32px"],
  h1[style*="font-size: 28px"] {
    font-size: 22px !important;
    line-height: 1.3;
  }

  h1 i {
    font-size: 0.9em !important;
  }

  /* Header sections with actions */
  div[style*="display: flex; justify-content: space-between"] {
    flex-direction: column !important;
    gap: 15px !important;
    align-items: flex-start !important;
  }

  /* Statistics cards - single column with animation */
  div[style*="grid-template-columns: repeat(4, 1fr)"],
  div[style*="grid-template-columns: repeat(3, 1fr)"],
  div[style*="grid-template-columns: repeat(2, 1fr)"] {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  /* Individual stat cards - enhanced */
  div[style*="grid-template-columns"] > div[style*="background"] {
    animation: slideInUp 0.4s ease-out !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  }

  div[style*="grid-template-columns"] > div[style*="background"]:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 6px 20px rgba(30, 64, 175, 0.15) !important;
  }

  /* Stat card content */
  div[style*="font-size: 36px"] {
    font-size: 28px !important;
    font-weight: 700 !important;
    letter-spacing: -0.5px;
  }

  div[style*="font-size: 32px"] {
    font-size: 24px !important;
    font-weight: 700 !important;
  }

  div[style*="font-size: 28px"] {
    font-size: 22px !important;
    font-weight: 600 !important;
  }

  /* Icon boxes in cards - enhanced */
  div[style*="width: 60px; height: 60px"] {
    width: 50px !important;
    height: 50px !important;
    font-size: 20px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
    transition: all 0.3s ease !important;
  }

  div[style*="width: 50px; height: 50px"] {
    width: 45px !important;
    height: 45px !important;
    font-size: 18px !important;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3) !important;
    transition: all 0.3s ease !important;
  }

  div[style*="width: 60px; height: 60px"]:hover,
  div[style*="width: 50px; height: 50px"]:hover {
    transform: scale(1.1) rotate(5deg) !important;
  }

  /* Filter forms */
  div[style*="display: grid; grid-template-columns: 200px 1fr auto"],
  form[style*="display: grid; grid-template-columns"] {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
  }

  /* Full width form elements - enhanced */
  select[style*="width: 100%"],
  input[style*="width: 100%"],
  textarea[style*="width: 100%"] {
    font-size: 16px !important; /* Prevent zoom on iOS */
    padding: 14px 15px !important;
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
    border: 1px solid var(--border-dark) !important;
  }

  select[style*="width: 100%"]:focus,
  input[style*="width: 100%"]:focus,
  textarea[style*="width: 100%"]:focus {
    border-color: var(--primary-gold) !important;
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.08) !important;
    outline: none !important;
  }

  /* Cards - Enhanced styling */
  div[style*="background: var(--card-bg)"],
  div[style*="background: #1a1a1a"],
  .card {
    border-radius: 12px !important;
    margin-bottom: 15px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  }

  div[style*="background: var(--card-bg)"]:hover,
  div[style*="background: #1a1a1a"]:hover,
  .card:hover {
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.1) !important;
    transform: translateY(-2px);
  }

  /* Buttons full width on mobile */
  button[style*="padding"],
  a[style*="padding"][style*="background"] {
    width: 100%;
    justify-content: center !important;
    text-align: center !important;
    padding: 14px 20px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    border-radius: 8px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  }

  button[style*="padding"]:active,
  a[style*="padding"][style*="background"]:active {
    transform: scale(0.97);
  }

  /* Gold buttons - Enhanced */
  a[style*="background: var(--primary-gold)"],
  a[style*="background: #ffb800"],
  button[style*="background: var(--primary-gold)"],
  button[style*="background: #ffb800"] {
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.2) !important;
  }

  a[style*="background: var(--primary-gold)"]:hover,
  a[style*="background: #ffb800"]:hover,
  button[style*="background: var(--primary-gold)"]:hover,
  button[style*="background: #ffb800"]:hover {
    box-shadow: 0 6px 16px rgba(30, 64, 175, 0.22) !important;
    transform: translateY(-2px);
  }

  /* Tables - Convert to card view */
  table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  table thead {
    display: none;
  }

  table tbody {
    display: block;
  }

  table tr {
    display: block;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #1a1a1a 0%, #161616 100%);
    border: 1px solid var(--border-dark) !important;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  table tr:hover {
    border-color: var(--primary-gold) !important;
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.1);
    transform: translateY(-2px);
  }

  table td {
    display: block;
    text-align: left !important;
    padding: 10px 0 !important;
    border: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    font-size: 14px;
    line-height: 1.6;
  }

  table td:last-child {
    border-bottom: none !important;
    padding-bottom: 5px !important;
  }

  table td:before {
    content: attr(data-label);
    font-weight: 700;
    color: var(--accent-orange);
    display: inline-block;
    width: 120px;
    margin-right: 15px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  /* Action buttons in tables */
  table td:last-child {
    padding-top: 15px !important;
    display: flex !important;
    flex-wrap: wrap;
    gap: 8px;
  }

  table td a,
  table td button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 10px 16px !important;
    font-size: 13px !important;
    font-weight: 600;
    border-radius: 8px !important;
    min-width: 100px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  table td a:hover,
  table td button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  }

  table td a:active,
  table td button:active {
    transform: scale(0.95);
  }

  /* Filter tabs */
  div[style*="display: flex; gap: 10px; flex-wrap: wrap"] a {
    font-size: 13px !important;
    padding: 8px 14px !important;
  }

  /* Product cards in lists */
  div[style*="display: grid; gap: 20px"] {
    gap: 12px !important;
  }

  /* Image thumbnails */
  img[style*="width: 120px"],
  img[style*="width: 100px"] {
    width: 80px !important;
    height: 80px !important;
  }

  /* Sidebar logo/brand section */
  #userSidebar div[style*="padding: 25px 20px"],
  #adminSidebar div[style*="padding: 25px 20px"] {
    padding: 20px 15px !important;
  }

  /* Sidebar navigation */
  #userSidebar nav,
  #adminSidebar nav {
    padding: 10px 0 !important;
  }

  .sidebar-link {
    padding: 12px 15px !important;
    font-size: 14px !important;
  }

  .sidebar-link i {
    font-size: 15px !important;
  }

  /* Messages Page (mesajlar) - Responsive */
  /* Messages grid - stack vertically on mobile */
  div[style*="grid-template-columns: 350px 1fr"],
  div[style*="display: grid"][style*="grid-template-columns: 350px"],
  .container > div[style*="grid-template-columns"] {
    display: grid;
    grid-template-columns: 1fr !important;
    height: auto !important;
    gap: 15px !important;
  }

  /* Conversations list - limit height on mobile */
  div[style*="grid-template-columns: 350px 1fr"] > div:first-child,
  div[style*="display: grid"][style*="grid-template-columns: 350px"]
    > div:first-child {
    max-height: 400px !important;
    order: 2 !important;
  }

  /* Messages area - comes first on mobile */
  div[style*="grid-template-columns: 350px 1fr"] > div:last-child,
  div[style*="display: grid"][style*="grid-template-columns: 350px"]
    > div:last-child {
    min-height: 500px !important;
    height: auto !important;
    order: 1 !important;
  }

  /* Messages container - smooth scrolling */
  #messagesContainer {
    scroll-behavior: smooth !important;
    -webkit-overflow-scrolling: touch !important;
  }

  /* Conversations list scroll */
  div[style*="flex: 1; overflow-y: auto"] {
    -webkit-overflow-scrolling: touch !important;
    scroll-behavior: smooth !important;
  }

  /* Message bubbles - better mobile width */
  div[style*="max-width: 70%"] {
    max-width: 85% !important;
  }

  /* Chat header - smaller on mobile */
  div[style*="padding: 20px"][style*="border-bottom"] {
    padding: 15px !important;
  }

  /* Message input area */
  form[style*="padding: 20px"][style*="border-top"] {
    padding: 15px !important;
  }

  /* Send button - better mobile layout */
  form[style*="display: flex; gap: 10px"] button {
    white-space: nowrap !important;
    padding: 12px 20px !important;
    min-width: 90px !important;
  }

  form[style*="display: flex; gap: 10px"] button i {
    display: none !important;
  }

  /* Avatar sizes in chat header */
  div[style*="padding: 20px"][style*="border-bottom"] img[style*="width: 45px"],
  div[style*="padding: 20px"][style*="border-bottom"]
    div[style*="width: 45px"] {
    width: 40px !important;
    height: 40px !important;
    font-size: 16px !important;
  }

  /* Empty state icons */
  i[style*="font-size: 48px"],
  i[style*="font-size: 64px"] {
    font-size: 36px !important;
  }

  /* Page headers - fix position for toggle button */
  .container > h1:first-of-type,
  div[style*="margin-left: 260px"] > h1:first-of-type {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

  /* Messages page - smooth transitions */
  div[style*="grid-template-columns: 350px 1fr"] {
    transition: all 0.3s ease !important;
  }

  /* Conversation items - better mobile interaction */
  a[href*="mesajlar"] {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  }

  a[href*="mesajlar"]:active {
    transform: scale(0.98) !important;
    background: rgba(30, 64, 175, 0.1) !important;
  }

  /* Message bubbles - smooth appearance */
  div[style*="max-width: 70%"] {
    animation: messageSlideIn 0.3s ease-out;
  }

  @keyframes messageSlideIn {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Textarea auto-resize smoothly */
  textarea[name="message"] {
    transition: height 0.2s ease !important;
  }

  /* CRITICAL: Force single column layout for messages page */
  div[style*="display: grid"][style*="grid-template-columns: 350px 1fr"][style*="gap: 20px"][style*="height: 700px"],
  .container div[style*="display: grid"][style*="350px 1fr"] {
    display: grid !important;
    grid-template-columns: 1fr !important;
    grid-template-rows: auto auto !important;
    height: auto !important;
  }

  /* Ensure children respect order */
  div[style*="display: grid"][style*="350px 1fr"] > div:first-child {
    order: 2 !important;
  }

  div[style*="display: grid"][style*="350px 1fr"] > div:last-child {
    order: 1 !important;
  }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
  /* Sidebar takes full width */
  #userSidebar,
  #adminSidebar {
    width: 100%;
  }

  /* Sidebar toggle button */
  .sidebar-toggle {
    top: 15px;
    left: 15px;
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  /* Main content less padding */
  div[style*="margin-left: 260px"] {
    padding: 12px !important;
    padding-top: 70px !important;
  }

  .container[style*="margin: 40px auto"],
  div.container[style*="margin-top"] {
    margin-top: 70px !important;
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  /* Headers even smaller */
  h1[style*="font-size"] {
    font-size: 20px !important;
  }

  h2[style*="font-size"] {
    font-size: 18px !important;
  }

  /* Messages page - smaller heights */
  div[style*="grid-template-columns: 350px 1fr"] > div:first-child,
  div[style*="display: grid"][style*="grid-template-columns: 350px"]
    > div:first-child {
    max-height: 300px !important;
  }

  div[style*="grid-template-columns: 350px 1fr"] > div:last-child,
  div[style*="display: grid"][style*="grid-template-columns: 350px"]
    > div:last-child {
    min-height: 400px !important;
  }

  /* Message input - vertical layout */
  form[style*="display: flex; gap: 10px"] {
    gap: 8px !important;
  }

  /* Conversation list avatars - smaller */
  a[href*="mesajlar"] img[style*="width: 50px"],
  a[href*="mesajlar"] div[style*="width: 50px"] {
    width: 40px !important;
    height: 40px !important;
    font-size: 16px !important;
  }

  /* Statistics cards */
  div[style*="font-size: 36px"],
  div[style*="font-size: 32px"],
  div[style*="font-size: 28px"] {
    font-size: 24px !important;
  }

  /* Card padding */
  div[style*="padding: 25px"],
  div[style*="padding: 20px"] {
    padding: 15px !important;
  }

  /* Icon sizes */
  div[style*="width: 60px"],
  div[style*="width: 50px"],
  div[style*="width: 45px"] {
    width: 40px !important;
    height: 40px !important;
    font-size: 16px !important;
  }

  /* Table data labels */
  table td:before {
    display: block;
    width: 100%;
    margin-bottom: 5px;
  }

  /* Buttons and links */
  button,
  a[style*="padding"] {
    padding: 10px 15px !important;
    font-size: 14px !important;
  }
}

/* User Panel Specific Styles */
@media (max-width: 768px) {
  /* Recent listings/orders sections */
  .recent-item {
    padding: 12px !important;
  }

  /* Message list */
  .message-item {
    padding: 12px !important;
  }

  /* Balance cards */
  .balance-card {
    padding: 15px !important;
  }

  /* Profile form */
  .profile-form {
    padding: 15px !important;
  }
}

/* Admin Panel Specific Styles */
@media (max-width: 768px) {
  /* Dashboard cards */
  .admin-stat-card {
    text-align: center;
    padding: 15px !important;
  }

  /* Product approval buttons */
  .product-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .product-actions button {
    width: 100%;
  }

  /* Settings form */
  .settings-form {
    padding: 15px !important;
  }

  .settings-form input,
  .settings-form textarea,
  .settings-form select {
    font-size: 16px !important;
  }

  /* Category management */
  .category-item {
    padding: 12px !important;
  }

  /* Order details */
  .order-detail-card {
    padding: 15px !important;
  }
}

/* Responsive Tables Enhancement */
@media (max-width: 768px) {
  /* Add data-label attributes via CSS for mobile table view */
  .admin-table tbody tr td:nth-child(1):before {
    content: "ID: ";
  }
  .admin-table tbody tr td:nth-child(2):before {
    content: "Kullanıcı: ";
  }
  .admin-table tbody tr td:nth-child(3):before {
    content: "E-posta: ";
  }
  .admin-table tbody tr td:nth-child(4):before {
    content: "Rol: ";
  }
  .admin-table tbody tr td:nth-child(5):before {
    content: "İlanlar: ";
  }
  .admin-table tbody tr td:nth-child(6):before {
    content: "Satışlar: ";
  }

  /* User listings table */
  .listings-table tbody tr td:nth-child(1):before {
    content: "Ürün: ";
  }
  .listings-table tbody tr td:nth-child(2):before {
    content: "Kategori: ";
  }
  .listings-table tbody tr td:nth-child(3):before {
    content: "Fiyat: ";
  }
  .listings-table tbody tr td:nth-child(4):before {
    content: "Stok: ";
  }
  .listings-table tbody tr td:nth-child(5):before {
    content: "Durum: ";
  }
  .listings-table tbody tr td:nth-child(6):before {
    content: "İşlemler: ";
  }
}

/* Panel Header with Sidebar Toggle */
@media (max-width: 992px) {
  .panel-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
  }

  .panel-header h1 {
    flex: 1;
  }
}

/* Status Badges Responsive */
@media (max-width: 768px) {
  .status-badge,
  span[style*="padding"][style*="border-radius"] {
    font-size: 11px !important;
    padding: 4px 10px !important;
  }
}

/* Panel Search and Filters */
@media (max-width: 768px) {
  .panel-search {
    width: 100% !important;
  }

  .panel-filters {
    flex-direction: column;
    gap: 10px;
  }

  .panel-filters > * {
    width: 100%;
  }
}

/* Pagination in Panels */
@media (max-width: 768px) {
  .panel-pagination {
    justify-content: center;
    gap: 8px;
  }

  .panel-pagination a,
  .panel-pagination button {
    min-width: 36px !important;
    height: 36px !important;
    padding: 8px !important;
    font-size: 13px !important;
  }
}

/* Empty State Messages */
@media (max-width: 768px) {
  div[style*="padding: 60px; text-align: center"] {
    padding: 40px 20px !important;
  }

  div[style*="padding: 60px; text-align: center"] i {
    font-size: 40px !important;
  }

  div[style*="padding: 60px; text-align: center"]
    div[style*="font-size: 18px"] {
    font-size: 16px !important;
  }
}

/* Modals in Panels */
@media (max-width: 768px) {
  .panel-modal {
    width: 95% !important;
    max-width: 95% !important;
    margin: 20px auto !important;
    padding: 20px !important;
  }

  .panel-modal-header {
    padding: 15px !important;
  }

  .panel-modal-body {
    padding: 15px !important;
  }

  .panel-modal-footer {
    padding: 15px !important;
    flex-direction: column;
    gap: 10px;
  }

  .panel-modal-footer button {
    width: 100%;
  }
}

/* ========================================
   404 Error Page Styles
   ======================================== */
.error-404-container {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
}

.error-404-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.error-404-icon {
  width: 150px;
  height: 150px;
  margin: 0 auto 30px;
  border-radius: 50%;
  background: rgba(30, 64, 175, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float 3s ease-in-out infinite;
}

.error-404-icon i {
  font-size: 80px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.error-404-title {
  font-size: 120px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 20px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(30, 64, 175, 0.2);
}

.error-404-subtitle {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text-light);
}

.error-404-description {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-gray);
  margin-bottom: 40px;
  padding: 0 20px;
}

.error-404-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.btn-404-primary,
.btn-404-secondary {
  padding: 15px 35px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-404-primary {
  background: var(--gradient-primary);
  color: var(--text-light);
  border: none;
  box-shadow: 0 4px 15px rgba(30, 64, 175, 0.2);
}

.btn-404-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 64, 175, 0.25);
}

.btn-404-secondary {
  background: var(--dark-card);
  color: var(--text-light);
  border: 2px solid var(--border-dark);
}

.btn-404-secondary:hover {
  background: var(--dark-hover);
  border-color: var(--accent-orange);
  color: var(--accent-orange);
  transform: translateY(-2px);
}

.error-404-links {
  margin-top: 50px;
  padding-top: 40px;
  border-top: 1px solid var(--border-dark);
}

.error-404-links h3 {
  font-size: 20px;
  color: var(--accent-orange);
  margin-bottom: 25px;
}

.error-404-quick-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
  max-width: 800px;
  margin: 0 auto;
}

.error-404-quick-links a {
  padding: 20px;
  background: var(--dark-card);
  border: 1px solid var(--border-dark);
  border-radius: 10px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 15px;
  color: var(--text-gray);
}

.error-404-quick-links a i {
  font-size: 18px;
  color: var(--accent-orange);
}

.error-404-quick-links a:hover {
  background: var(--dark-hover);
  border-color: var(--accent-orange);
  color: var(--text-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-primary);
}

/* Float Animation */
@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Responsive 404 Page */
@media (max-width: 768px) {
  .error-404-container {
    padding: 40px 20px;
    min-height: 60vh;
  }

  .error-404-icon {
    width: 120px;
    height: 120px;
    margin-bottom: 25px;
  }

  .error-404-icon i {
    font-size: 60px;
  }

  .error-404-title {
    font-size: 80px;
    margin-bottom: 15px;
  }

  .error-404-subtitle {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .error-404-description {
    font-size: 16px;
    margin-bottom: 30px;
    padding: 0 10px;
  }

  .error-404-actions {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 40px;
  }

  .btn-404-primary,
  .btn-404-secondary {
    width: 100%;
    justify-content: center;
    padding: 14px 25px;
    font-size: 15px;
  }

  .error-404-links {
    margin-top: 40px;
    padding-top: 30px;
  }

  .error-404-links h3 {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .error-404-quick-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .error-404-quick-links a {
    padding: 15px;
    font-size: 14px;
    flex-direction: column;
    gap: 8px;
  }

  .error-404-quick-links a i {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .error-404-title {
    font-size: 64px;
  }

  .error-404-subtitle {
    font-size: 24px;
  }

  .error-404-quick-links {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   MODERN HOMEPAGE STYLES
   ============================================ */

/* Gradient Text Utility */
.gradient-text {
  background: linear-gradient(135deg, #ffffff 0%, #e0f2fe 50%, #bae6fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}

/* Highlight Section (dijital ürünler) */
.epin-highlight-section {
  background: var(--bg-secondary);
  padding: 80px 0;
  position: relative;
}

.epin-section-banner {
  background: var(--gradient-primary);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  box-shadow: var(--shadow-blue);
  position: relative;
  overflow: hidden;
}

.epin-section-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.epin-banner-content {
  display: flex;
  align-items: center;
  gap: 24px;
  position: relative;
  z-index: 1;
}

.epin-banner-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.epin-banner-title {
  font-size: 36px;
  font-weight: 800;
  color: white;
  margin-bottom: 8px;
}

.epin-banner-subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
}

.btn-epin-banner {
  padding: 16px 32px;
  background: var(--bg-primary);
  color: var(--primary-blue);
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 1;
}

.btn-epin-banner:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  background: var(--bg-hover);
}

/* Modern Hero Section - Itemsatış Benzeri */
.modern-hero {
  position: relative;
  min-height: 650px;
  display: flex;
  align-items: center;
  padding: 120px 0 100px;
  overflow: hidden;
  background: var(--gradient-hero);
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-hero);
  opacity: 0.95;
}

.hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(0, 196, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(107, 44, 245, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 20%, rgba(110, 231, 69, 0.1) 0%, transparent 50%);
  animation: heroPatternMove 20s ease-in-out infinite;
}

@keyframes heroPatternMove {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, 30px) scale(1.1); }
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text {
  animation: fadeInUp 0.8s ease;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  color: var(--text-light);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
  animation: fadeInDown 0.6s ease;
}

.hero-badge i {
  color: #fbbf24;
  animation: pulse 2s infinite;
}

.hero-title {
  font-size: 64px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--text-light);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-description {
  font-size: 18px;
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  gap: 20px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.btn-hero {
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-hero.btn-primary {
  background: var(--bg-primary);
  color: var(--primary-blue);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  font-weight: 700;
  font-size: 18px;
  padding: 18px 36px;
}

.btn-hero.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
  background: var(--bg-hover);
}

.btn-hero.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: var(--text-light);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-hero.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.2);
  color: var(--text-light);
}

.hero-features {
  display: flex;
  gap: 30px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-light);
  font-size: 15px;
  font-weight: 600;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-feature-item i {
  color: #fbbf24;
  font-size: 18px;
}

.hero-stats {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.hero-stat-item {
  text-align: center;
}

.hero-stat-item .stat-number {
  font-size: 36px;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.hero-stat-item .stat-label {
  font-size: 14px;
  color: var(--text-gray);
}

.hero-visual {
  position: relative;
  animation: fadeInRight 0.8s ease;
}

.hero-slider-modern {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.hero-slider-modern .slider-wrapper {
  position: relative;
  width: 100%;
  height: 400px;
  display: flex;
}

.hero-slider-modern .slider-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.hero-slider-modern .slider-item.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.hero-slider-modern .slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.hero-slider-modern .slider-nav:hover {
  background: rgba(0, 0, 0, 0.7);
  transform: translateY(-50%) scale(1.1);
}

.hero-slider-modern .slider-nav.prev {
  left: 20px;
}

.hero-slider-modern .slider-nav.next {
  right: 20px;
}

.hero-slider-modern .slider-controls {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.hero-slider-modern .slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-slider-modern .slider-dot.active {
  background: var(--primary-gold);
  width: 32px;
  border-radius: 6px;
}

.hero-slider-modern .slider-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slider-modern .slider-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
}

/* Section Header Modern */
.section-header-modern {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  gap: 30px;
}

.section-title-modern {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}

.section-title-modern i {
  color: var(--accent-orange);
  font-size: 32px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-gray);
  margin-top: 8px;
}

.btn-view-all {
  padding: 12px 24px;
  background: var(--dark-card);
  border: 2px solid var(--border-dark);
  border-radius: 10px;
  color: var(--text-light);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-view-all:hover {
  border-color: var(--accent-orange);
  color: var(--accent-orange);
  background: rgba(110, 231, 69, 0.1);
  transform: translateX(5px);
}

/* Modern Categories Section */
/* ============================================
   ULTRA MINIMAL CATEGORIES - Sıfırdan Mükemmel Tasarım
   ============================================ */

.categories-minimal {
  padding: 80px 0;
  background: transparent;
}

.categories-minimal-header {
  margin-bottom: 36px;
}

.categories-minimal-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-light);
  margin: 0;
  letter-spacing: -0.3px;
}

.categories-minimal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
  gap: 10px;
}

.category-minimal-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 15px;
  background: rgba(40, 40, 40, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
}

.category-minimal-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.category-minimal-card:hover {
  background: rgba(46, 46, 46, 0.7);
  border-color: rgba(59, 130, 246, 0.15);
  transform: translateY(-1px);
}

.category-minimal-card:hover::after {
  opacity: 1;
}

.category-minimal-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  transition: transform 0.2s ease;
}

.category-minimal-card:hover .category-minimal-icon {
  transform: scale(1.03);
}

.category-minimal-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 7px;
}

.category-minimal-icon i {
  font-size: 19px;
  color: var(--text-light);
  opacity: 0.9;
}

.category-minimal-icon-fallback {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.08);
  border-radius: 7px;
}

.category-minimal-icon-fallback i {
  font-size: 19px;
  color: var(--primary-blue-light);
}

.category-minimal-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-light);
  line-height: 1.4;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  opacity: 0.95;
  transition: opacity 0.2s ease;
}

.category-minimal-card:hover .category-minimal-label {
  opacity: 1;
}

/* Responsive */
@media (max-width: 1024px) {
  .categories-minimal-grid {
    grid-template-columns: repeat(auto-fill, minmax(145px, 1fr));
    gap: 9px;
  }
}

@media (max-width: 768px) {
  .categories-minimal {
    padding: 60px 0;
  }

  .categories-minimal-header {
    margin-bottom: 28px;
  }

  .categories-minimal-title {
    font-size: 22px;
  }

  .categories-minimal-grid {
    grid-template-columns: repeat(auto-fill, minmax(135px, 1fr));
    gap: 8px;
  }

  .category-minimal-card {
    padding: 11px 13px;
    gap: 11px;
  }

  .category-minimal-icon,
  .category-minimal-icon-fallback {
    width: 34px;
    height: 34px;
  }

  .category-minimal-icon i,
  .category-minimal-icon-fallback i {
    font-size: 17px;
  }

  .category-minimal-label {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .categories-minimal-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .category-minimal-card {
    padding: 12px 14px;
  }

  .category-minimal-label {
    white-space: normal;
    line-height: 1.3;
  }
}

.modern-categories-section {
  padding: 80px 0;
  background: var(--dark-bg);
}

.modern-category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 24px;
}

.modern-category-card {
  background: var(--dark-card);
  border: 1px solid var(--border-dark);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
}

.modern-category-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-orange);
  box-shadow: 0 12px 32px rgba(110, 231, 69, 0.2);
}

.category-card-image {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.category-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.modern-category-card:hover .category-card-image img {
  transform: scale(1.1);
}

.category-card-placeholder {
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: white;
}

.category-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modern-category-card:hover .category-card-overlay {
  opacity: 1;
}

.category-card-content {
  padding: 20px;
  text-align: center;
}

.category-card-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 10px;
}

.category-link-text {
  font-size: 14px;
  color: var(--accent-orange);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s ease;
}

.modern-category-card:hover .category-link-text {
  gap: 10px;
}

/* Modern Features Section */
.modern-features-section {
  padding: 80px 0;
  background: var(--dark-card);
}

.modern-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.modern-feature-card {
  background: var(--dark-bg);
  border: 1px solid var(--border-dark);
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.modern-feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-orange);
  box-shadow: 0 12px 32px rgba(110, 231, 69, 0.15);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: white;
  box-shadow: 0 8px 24px rgba(0, 196, 255, 0.3);
}

.modern-feature-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 12px;
}

.modern-feature-card p {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.6;
}

/* Modern Stats Section */
.modern-stats-section {
  padding: 80px 0;
  background: var(--dark-bg);
}

.modern-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.modern-stat-card {
  background: var(--dark-card);
  border: 1px solid var(--border-dark);
  border-radius: 20px;
  padding: 50px 30px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.modern-stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.modern-stat-card:hover::before {
  transform: scaleX(1);
}

.modern-stat-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-orange);
  box-shadow: 0 12px 32px rgba(110, 231, 69, 0.2);
}

.stat-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: rgba(110, 231, 69, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--accent-orange);
}

.modern-stat-card .stat-number {
  font-size: 48px;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  display: block;
}

.modern-stat-card .stat-label {
  font-size: 18px;
  color: var(--text-gray);
}

/* How It Works Section */
.how-it-works-section {
  padding: 80px 0;
  background: var(--dark-card);
}

.how-it-works-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.how-it-works-card {
  position: relative;
  background: var(--dark-bg);
  border: 1px solid var(--border-dark);
  border-radius: 20px;
  padding: 50px 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.how-it-works-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-orange);
  box-shadow: 0 16px 40px rgba(110, 231, 69, 0.2);
}

.step-number {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  color: white;
  box-shadow: 0 4px 16px rgba(0, 196, 255, 0.4);
}

.step-icon {
  width: 100px;
  height: 100px;
  margin: 30px auto 24px;
  background: rgba(110, 231, 69, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--accent-orange);
  transition: all 0.3s ease;
}

.how-it-works-card:hover .step-icon {
  background: rgba(110, 231, 69, 0.2);
  transform: scale(1.1);
}

.how-it-works-card h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 16px;
}

.how-it-works-card p {
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.7;
}

/* Modern Reviews Section */
.modern-reviews-section {
  padding: 80px 0;
  background: var(--dark-card);
}

.modern-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.modern-review-card {
  background: var(--dark-bg);
  border: 1px solid var(--border-dark);
  border-radius: 16px;
  padding: 24px;
  transition: all 0.3s ease;
}

.modern-review-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-orange);
  box-shadow: 0 12px 32px rgba(110, 231, 69, 0.15);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.review-avatar {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  color: white;
  flex-shrink: 0;
}

.review-user-info {
  flex: 1;
}

.review-username {
  font-weight: 600;
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 6px;
}

.review-stars {
  color: var(--accent-orange);
  font-size: 14px;
}

.review-product {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: var(--dark-card);
  border-radius: 10px;
  margin-bottom: 16px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.review-product:hover {
  background: rgba(110, 231, 69, 0.1);
}

.review-product img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.review-product-placeholder {
  width: 50px;
  height: 50px;
  background: var(--dark-bg);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-orange);
  font-size: 20px;
  flex-shrink: 0;
}

.review-product span {
  flex: 1;
  font-size: 14px;
  color: var(--text-light);
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.review-comment {
  color: var(--text-gray);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.review-comment-empty {
  text-align: center;
  padding: 20px;
  color: var(--text-gray);
  font-size: 13px;
  font-style: italic;
  margin: 0;
}

/* Modern CTA Section */
.modern-cta-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.cta-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.cta-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  opacity: 0.1;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-size: 48px;
  font-weight: 800;
  color: var(--text-light);
  margin-bottom: 20px;
}

.cta-description {
  font-size: 20px;
  color: var(--text-gray);
  margin-bottom: 40px;
  line-height: 1.6;
}

.cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-cta {
  padding: 18px 36px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-cta-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 8px 24px rgba(0, 196, 255, 0.3);
}

.btn-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 196, 255, 0.4);
}

.btn-cta-secondary {
  background: var(--dark-card);
  color: var(--text-light);
  border: 2px solid var(--border-dark);
}

.btn-cta-secondary:hover {
  border-color: var(--accent-orange);
  background: rgba(110, 231, 69, 0.1);
  color: var(--accent-orange);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-title {
    font-size: 32px;
  }

  .section-title-modern {
    font-size: 28px;
  }

  .section-header-modern {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .modern-hero {
    min-height: auto;
    padding: 60px 0 40px;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-description {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn-hero {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    justify-content: space-around;
  }

  .modern-category-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
  }

  .modern-features-grid {
    grid-template-columns: 1fr;
  }

  .how-it-works-grid {
    grid-template-columns: 1fr;
  }

  .modern-reviews-grid {
    grid-template-columns: 1fr;
  }

  .cta-title {
    font-size: 32px;
  }

  .cta-description {
    font-size: 16px;
  }

  .cta-actions {
    flex-direction: column;
  }

  .btn-cta {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 28px;
  }

  .section-title-modern {
    font-size: 24px;
  }

  .section-title-modern i {
    font-size: 24px;
  }

  .modern-category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================
   PREMIUM HOMEPAGE STYLES - OYUN HESAPLARI
   ============================================ */

/* Premium Hero Section */
.premium-hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  padding: 80px 0;
  overflow: hidden;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-dark);
}

.hero-background-premium {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-gradient-premium {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-hero);
  opacity: 0.98;
}

.hero-pattern-premium {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 40% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  animation: heroPatternMove 25s ease-in-out infinite;
}

.hero-content-premium {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-text-premium {
  animation: fadeInUp 0.8s ease;
}

.hero-badge-premium {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  color: var(--text-light);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 32px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  animation: fadeInDown 0.6s ease;
}

.hero-badge-premium i {
  color: #fbbf24;
  font-size: 18px;
  animation: pulse 2s infinite;
}

.hero-title-premium {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 24px;
  color: var(--text-primary);
  letter-spacing: 0;
}

.gradient-text-premium {
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}

.hero-description-premium {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 600px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.hero-actions-premium {
  display: flex;
  gap: 24px;
  margin-bottom: 80px;
  flex-wrap: wrap;
}

.btn-hero-premium {
  padding: 22px 44px;
  border-radius: 16px;
  font-size: 18px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  text-decoration: none;
  letter-spacing: -0.01em;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn-hero-premium.btn-primary-premium {
  background: var(--gradient-primary);
  color: var(--text-light);
  border: 3px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 24px rgba(30, 64, 175, 0.4), 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.btn-hero-premium.btn-primary-premium:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(30, 64, 175, 0.5), 0 0 0 5px rgba(30, 64, 175, 0.15);
  filter: brightness(1.1);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-hero-premium.btn-secondary-premium {
  background: var(--bg-card);
  color: var(--text-primary);
  border: 3px solid var(--primary-blue);
  box-shadow: 0 6px 20px rgba(30, 64, 175, 0.25);
}

.btn-hero-premium.btn-secondary-premium:hover {
  border-color: var(--accent-orange);
  background: var(--bg-hover);
  color: var(--accent-orange);
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(234, 88, 12, 0.3);
}

.hero-stats-premium {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

.hero-stat-item-premium {
  text-align: left;
}

.hero-stat-item-premium .stat-number-premium {
  font-size: 40px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
  display: block;
  letter-spacing: -0.02em;
}

.hero-stat-item-premium .stat-label-premium {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-visual-premium {
  position: relative;
  animation: fadeInRight 0.8s ease;
}

.hero-slider-premium {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  border: 3px solid rgba(255, 255, 255, 0.2);
}

.hero-slider-premium .slider-wrapper-premium {
  position: relative;
  width: 100%;
  height: 450px;
  display: flex;
}

.hero-slider-premium .slider-item-premium {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}

.hero-slider-premium .slider-item-premium.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.hero-slider-premium .slider-item-premium img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slider-premium .slider-overlay-premium {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
}

.hero-slider-premium .slider-nav-premium {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  color: white;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.2);
  font-size: 20px;
}

.hero-slider-premium .slider-nav-premium:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: translateY(-50%) scale(1.1);
  border-color: rgba(255, 255, 255, 0.4);
}

.hero-slider-premium .slider-nav-premium.prev {
  left: 24px;
}

.hero-slider-premium .slider-nav-premium.next {
  right: 24px;
}

.hero-slider-premium .slider-controls-premium {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.hero-slider-premium .slider-dot-premium {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-slider-premium .slider-dot-premium.active {
  background: var(--text-light);
  width: 40px;
  border-radius: 7px;
  border-color: var(--text-light);
}

/* Premium Section Styles */
.section-premium {
  padding: 60px 0;
  position: relative;
}

/* ============================================
   COMPACT HOMEPAGE STYLES - BOŞLUK YOK
   ============================================ */

/* Compact Hero */
.compact-hero {
  background: var(--bg-secondary);
  padding: 24px 0;
  border-bottom: 1px solid var(--border-dark);
  position: relative;
  overflow: hidden;
}

.compact-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(30, 64, 175, 0.08) 0%, transparent 70%);
  animation: float 10s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.compact-hero::after {
  content: "";
  position: absolute;
  bottom: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.06) 0%, transparent 70%);
  animation: float 15s ease-in-out infinite reverse;
  pointer-events: none;
  z-index: 0;
}

.compact-hero > .container {
  position: relative;
  z-index: 1;
}

.hero-content-compact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.hero-text-compact {
  animation: fadeInUp 0.6s ease;
}

.hero-title-compact {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 16px;
  color: var(--text-primary);
  letter-spacing: 0;
}

.hero-description-compact {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.hero-actions-compact {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-hero-compact {
  padding: 10px 20px;
  border-radius: 12px;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  text-decoration: none;
  letter-spacing: 0.02em;
}

.btn-hero-compact.btn-primary-compact {
  background: var(--gradient-primary);
  color: var(--text-light);
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 6px 20px rgba(30, 64, 175, 0.35);
}

.btn-hero-compact.btn-primary-compact:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(30, 64, 175, 0.45);
  filter: brightness(1.1);
}

.btn-hero-compact.btn-secondary-compact {
  background: var(--bg-card);
  color: var(--text-primary);
  border: 2px solid var(--primary-blue);
  box-shadow: 0 4px 12px rgba(30, 64, 175, 0.2);
}

.btn-hero-compact.btn-secondary-compact:hover {
  border-color: var(--accent-orange);
  color: var(--accent-orange);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(234, 88, 12, 0.25);
}

.hero-slider-compact {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  height: 220px;
  display: block;
  width: 100%;
}

.slider-wrapper-compact {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
}

.slider-item-compact {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
  display: block;
  visibility: hidden;
}

.slider-item-compact.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
  visibility: visible;
}

.slider-item-compact img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slider-controls-compact {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.slider-dot-compact {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.slider-dot-compact.active {
  background: var(--text-light);
  width: 30px;
  border-radius: 6px;
  border-color: var(--text-light);
}

/* Compact Sections */
.compact-section {
  padding: 24px 0;
  position: relative;
  overflow: hidden;
}

.compact-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(30, 64, 175, 0.05) 0%, transparent 70%);
  animation: float 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.compact-section::after {
  content: "";
  position: absolute;
  bottom: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.04) 0%, transparent 70%);
  animation: float 12s ease-in-out infinite reverse;
  pointer-events: none;
  z-index: 0;
}

.compact-section > .container {
  position: relative;
  z-index: 1;
}

.categories-section-compact {
  background: var(--bg-secondary);
  padding: 24px 0;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.categories-section-compact::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(30, 64, 175, 0.06) 0%, transparent 70%);
  animation: float 9s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.categories-section-compact::after {
  content: "";
  position: absolute;
  bottom: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
  animation: float 13s ease-in-out infinite reverse;
  pointer-events: none;
  z-index: 0;
}

.categories-section-compact > .container {
  position: relative;
  z-index: 1;
}

.featured-section-compact {
  background: var(--bg-primary);
  padding: 24px 0;
}

.popular-section-compact {
  background: var(--bg-secondary);
  padding: 24px 0;
}

.latest-section-compact {
  background: var(--bg-primary);
  padding: 24px 0;
}

.recommended-section-compact {
  background: var(--bg-secondary);
  padding: 24px 0;
}

.section-header-compact {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  gap: 20px;
}

.section-title-compact {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
  letter-spacing: 0;
  line-height: 1.4;
}

.btn-view-all-compact {
  padding: 12px 24px;
  background: var(--bg-card);
  border: 2px solid var(--primary-blue);
  border-radius: 10px;
  color: var(--primary-blue);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
  font-size: 15px;
  box-shadow: 0 2px 8px rgba(30, 64, 175, 0.2);
  letter-spacing: 0.01em;
}

.btn-view-all-compact:hover {
  border-color: var(--accent-orange);
  color: var(--accent-orange);
  background: rgba(234, 88, 12, 0.1);
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(234, 88, 12, 0.25);
}

/* Compact Product Grid */
.product-grid-compact {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
  width: 100%;
}

/* Compact Features */
.features-section-compact {
  background: var(--bg-secondary);
}

.features-grid-compact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.feature-item-compact {
  background: var(--bg-card);
  border: 2px solid var(--border-light);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.feature-item-compact:hover {
  transform: translateY(-4px);
  border-color: var(--primary-blue);
  box-shadow: 0 6px 16px rgba(30, 64, 175, 0.2);
}

.feature-icon-compact {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  background: var(--gradient-primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: white;
  box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
}

.feature-item-compact h3 {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}

.feature-item-compact p {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.6;
}

/* Compact How It Works */
.how-it-works-compact {
  background: var(--bg-secondary);
}

.steps-grid-compact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.step-item-compact {
  background: var(--bg-card);
  border: 2px solid var(--border-light);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.step-item-compact:hover {
  transform: translateY(-4px);
  border-color: var(--primary-blue);
  box-shadow: 0 6px 16px rgba(30, 64, 175, 0.2);
}

.step-number-compact {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 18px;
  box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
}

.step-icon-compact {
  width: 70px;
  height: 70px;
  margin: 20px auto 20px;
  background: rgba(30, 64, 175, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--primary-blue);
  transition: all 0.3s ease;
}

.step-item-compact:hover .step-icon-compact {
  background: var(--gradient-primary);
  color: white;
  transform: scale(1.1);
}

.step-item-compact h3 {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 21px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}

.step-item-compact p {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.6;
}

/* Compact CTA */
.cta-section-compact {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-dark);
}

.cta-content-compact {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-title-compact {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
  letter-spacing: 0;
  line-height: 1.4;
}

.cta-description-compact {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 28px;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.7;
}

.cta-actions-compact {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-cta-compact {
  padding: 16px 32px;
  border-radius: 12px;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  text-decoration: none;
  letter-spacing: 0.02em;
}

.btn-cta-primary-compact {
  background: var(--gradient-primary);
  color: var(--text-light);
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 6px 20px rgba(30, 64, 175, 0.35);
}

.btn-cta-primary-compact:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(30, 64, 175, 0.45);
  filter: brightness(1.1);
}

.btn-cta-secondary-compact {
  background: var(--bg-card);
  color: var(--text-primary);
  border: 2px solid var(--primary-blue);
  box-shadow: 0 4px 12px rgba(30, 64, 175, 0.2);
}

.btn-cta-secondary-compact:hover {
  border-color: var(--accent-orange);
  color: var(--accent-orange);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(234, 88, 12, 0.25);
}

/* Responsive Compact */
@media (max-width: 1024px) {
  .hero-content-compact {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-slider-compact {
    height: 240px;
  }

  .product-grid-compact {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
  }
  
  .minimal-category-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 10px;
  }
}

@media (max-width: 768px) {
  .compact-hero {
    padding: 24px 0;
  }

  .hero-title-compact {
    font-size: 28px;
  }

  .compact-section {
    padding: 24px 0;
  }

  .categories-section-compact,
  .featured-section-compact,
  .popular-section-compact,
  .latest-section-compact,
  .recommended-section-compact {
    padding: 24px 0;
  }

  .section-title-compact {
    font-size: 24px;
  }

  .section-header-compact {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .product-grid-compact {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 10px;
  }
  
  .minimal-category-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 10px;
  }

  .features-grid-compact {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .steps-grid-compact {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero-slider-compact {
    height: 200px;
  }
}

.section-header-premium {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  gap: 30px;
}

.section-title-premium {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0;
  letter-spacing: 0;
  line-height: 1.4;
}

.section-title-premium i {
  display: none;
}

.section-subtitle-premium {
  display: none;
}

.btn-view-all-premium {
  padding: 18px 36px;
  background: var(--bg-card);
  border: 3px solid var(--primary-blue);
  border-radius: 12px;
  color: var(--primary-blue);
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
  font-size: 16px;
  letter-spacing: -0.01em;
  box-shadow: 0 4px 12px rgba(30, 64, 175, 0.25);
}

.btn-view-all-premium:hover {
  border-color: var(--accent-orange);
  color: var(--accent-orange);
  background: rgba(234, 88, 12, 0.15);
  transform: translateX(5px);
  box-shadow: 0 6px 20px rgba(234, 88, 12, 0.3);
}

/* Minimal Categories */
.premium-categories-section {
  background: var(--bg-secondary);
  padding: 24px 0;
}

.minimal-category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 10px;
  width: 100%;
}

.minimal-category-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(30, 64, 175, 0.03) 100%);
  border: 2px solid var(--border-light);
  border-radius: 16px;
  text-decoration: none;
  color: var(--text-primary);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
  letter-spacing: 0;
  min-height: 65px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.minimal-category-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(30, 64, 175, 0.1), transparent);
  transition: left 0.5s ease;
}

.minimal-category-item:hover::before {
  left: 100%;
}

.minimal-category-item span {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.minimal-category-item:hover {
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.12) 0%, rgba(59, 130, 246, 0.08) 100%);
  border-color: var(--primary-blue);
  transform: translateY(-4px) scale(1.03);
  color: var(--primary-blue);
  box-shadow: 0 8px 20px rgba(30, 64, 175, 0.3);
}

.minimal-category-item img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
  border: 2px solid var(--border-light);
  background: var(--bg-secondary);
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.minimal-category-item:hover img {
  transform: scale(1.1) rotate(5deg);
  border-color: var(--primary-blue);
  box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
}

.minimal-category-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.15) 0%, rgba(59, 130, 246, 0.1) 100%);
  border: 2px solid var(--border-light);
  border-radius: 10px;
  color: var(--primary-blue);
  font-size: 18px;
  flex-shrink: 0;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.minimal-category-item:hover .minimal-category-icon {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
  color: white;
  border-color: var(--primary-blue);
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 4px 12px rgba(30, 64, 175, 0.4);
}

/* Elegant Categories - Itemsatış Style */
.elegant-category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 10px;
  width: 100%;
  justify-items: center;
  max-width: 95%;
  margin: 0 auto;
}

.elegant-category-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 10px 14px;
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(30, 64, 175, 0.05) 100%);
  border: 1.5px solid rgba(30, 64, 175, 0.2);
  border-radius: 12px;
  text-decoration: none;
  color: var(--text-primary);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 0.01em;
  min-height: 48px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  width: 100%;
  max-width: 100%;
}

.elegant-category-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(30, 64, 175, 0.15), transparent);
  transition: left 0.6s ease;
  z-index: 1;
}

.elegant-category-item:hover::before {
  left: 100%;
}

.elegant-category-item.featured-category {
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.3) 0%, rgba(139, 92, 246, 0.25) 50%, rgba(59, 130, 246, 0.3) 100%);
  border: 1.5px solid rgba(30, 64, 175, 0.4);
  box-shadow: 0 4px 16px rgba(30, 64, 175, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  color: var(--text-light);
}

.elegant-category-item.featured-category::before {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.elegant-category-item:hover {
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.15) 0%, rgba(59, 130, 246, 0.1) 100%);
  border-color: var(--primary-blue);
  transform: translateY(-2px);
  color: var(--text-primary);
  box-shadow: 
    0 6px 20px rgba(30, 64, 175, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.elegant-category-item.featured-category:hover {
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.4) 0%, rgba(139, 92, 246, 0.35) 50%, rgba(59, 130, 246, 0.4) 100%);
  border-color: var(--primary-blue);
  box-shadow: 
    0 8px 24px rgba(30, 64, 175, 0.4),
    0 0 0 2px rgba(255, 255, 255, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  color: var(--text-light);
  transform: translateY(-2px);
}

.category-logo-wrapper {
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.category-logo-image {
  width: 36px;
  height: 36px;
  object-fit: cover;
  border-radius: 10px;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  background: var(--bg-secondary);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.elegant-category-item.featured-category .category-logo-image {
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.elegant-category-item:hover .category-logo-image {
  transform: scale(1.08) rotate(4deg);
  border-color: var(--primary-blue);
  box-shadow: 0 4px 12px rgba(30, 64, 175, 0.35);
}

.elegant-category-item.featured-category:hover .category-logo-image {
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.category-logo-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.2) 0%, rgba(59, 130, 246, 0.15) 100%);
  border: 1.5px solid rgba(30, 64, 175, 0.3);
  border-radius: 10px;
  color: var(--primary-blue);
  font-size: 16px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 2;
}

.elegant-category-item.featured-category .category-logo-icon {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  color: white;
}

.elegant-category-item:hover .category-logo-icon {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
  color: white;
  border-color: var(--primary-blue);
  transform: scale(1.08) rotate(5deg);
  box-shadow: 0 4px 12px rgba(30, 64, 175, 0.35);
}

.elegant-category-item.featured-category:hover .category-logo-icon {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  color: white;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.category-name-text {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  position: relative;
  z-index: 2;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.elegant-category-item.featured-category .category-name-text {
  color: white;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.elegant-category-item:hover .category-name-text {
  color: var(--primary-blue);
}

.elegant-category-item.featured-category:hover .category-name-text {
  color: white;
}

/* Premium Product Grid */
.product-grid-premium {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 32px;
}

/* Premium Features */
.premium-features-section {
  background: var(--bg-primary);
  padding: 24px 0;
}

.premium-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.premium-feature-card {
  background: var(--bg-card);
  border: 2px solid var(--border-light);
  border-radius: 20px;
  padding: 48px 36px;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: var(--shadow-sm);
}

.premium-feature-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-blue);
  box-shadow: var(--shadow-primary), var(--shadow-xl);
}

.feature-icon-premium {
  width: 100px;
  height: 100px;
  margin: 0 auto 32px;
  background: var(--gradient-primary);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 44px;
  color: white;
  box-shadow: var(--shadow-primary);
  transition: all 0.4s ease;
}

.premium-feature-card:hover .feature-icon-premium {
  transform: scale(1.1) rotate(5deg);
}

.premium-feature-card h3 {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}

.premium-feature-card p {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.65;
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* Premium Stats */
.premium-stats-section {
  background: var(--bg-secondary);
  padding: 24px 0;
}

.premium-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.premium-stat-card {
  background: var(--bg-card);
  border: 2px solid var(--border-light);
  border-radius: 24px;
  padding: 60px 40px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.premium-stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.premium-stat-card:hover::before {
  transform: scaleX(1);
}

.premium-stat-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-blue);
  box-shadow: var(--shadow-primary), var(--shadow-xl);
}

.stat-icon-premium {
  width: 80px;
  height: 80px;
  margin: 0 auto 28px;
  background: rgba(30, 64, 175, 0.1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: var(--primary-blue);
  transition: all 0.4s ease;
}

.premium-stat-card:hover .stat-icon-premium {
  background: var(--gradient-primary);
  color: white;
  transform: scale(1.1);
}

.premium-stat-card .stat-number-premium {
  font-size: 56px;
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  display: block;
  letter-spacing: -0.02em;
}

.premium-stat-card .stat-label-premium {
  font-size: 20px;
  color: var(--text-secondary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* How It Works Premium */
.how-it-works-section-premium {
  background: var(--bg-secondary);
}

.how-it-works-grid-premium {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 50px;
  max-width: 1300px;
  margin: 0 auto;
}

.how-it-works-card-premium {
  position: relative;
  background: var(--bg-card);
  border: 2px solid var(--border-light);
  border-radius: 24px;
  padding: 60px 40px;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: var(--shadow-sm);
}

.how-it-works-card-premium:hover {
  transform: translateY(-12px);
  border-color: var(--primary-blue);
  box-shadow: var(--shadow-primary), var(--shadow-xl);
}

.step-number-premium {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 900;
  color: white;
  box-shadow: var(--shadow-premium);
  border: 4px solid var(--bg-card);
}

.step-icon-premium {
  width: 120px;
  height: 120px;
  margin: 40px auto 32px;
  background: rgba(30, 64, 175, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
  color: var(--primary-blue);
  transition: all 0.4s ease;
}

.how-it-works-card-premium:hover .step-icon-premium {
  background: var(--gradient-primary);
  color: white;
  transform: scale(1.1);
}

.how-it-works-card-premium h3 {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}

.how-it-works-card-premium p {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* Premium CTA */
.premium-cta-section {
  position: relative;
  padding: 24px 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-dark);
}

.cta-background-premium {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.cta-gradient-premium {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-hero);
  opacity: 0.95;
}

.cta-content-premium {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-title-premium {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
  letter-spacing: 0;
  line-height: 1.4;
}

.cta-description-premium {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 28px;
  line-height: 1.7;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.cta-actions-premium {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-cta-premium {
  padding: 22px 44px;
  border-radius: 16px;
  font-size: 18px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  text-decoration: none;
  letter-spacing: -0.01em;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn-cta-primary-premium {
  background: var(--gradient-primary);
  color: var(--text-light);
  border: 3px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 24px rgba(30, 64, 175, 0.4), 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.btn-cta-primary-premium:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(30, 64, 175, 0.5), 0 0 0 5px rgba(30, 64, 175, 0.15);
  filter: brightness(1.1);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-cta-secondary-premium {
  background: var(--bg-card);
  color: var(--text-primary);
  border: 3px solid var(--primary-blue);
  box-shadow: 0 6px 20px rgba(30, 64, 175, 0.25);
}

.btn-cta-secondary-premium:hover {
  border-color: var(--accent-orange);
  background: var(--bg-hover);
  color: var(--accent-orange);
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(234, 88, 12, 0.3);
}

/* Featured Accounts Section */
.featured-accounts-section {
  background: var(--bg-primary);
  padding: 24px 0;
}

.popular-accounts-section {
  background: var(--bg-secondary);
  padding: 24px 0;
}

.latest-accounts-section {
  background: var(--bg-primary);
  padding: 24px 0;
}

.recommended-section-premium {
  background: var(--bg-secondary);
  padding: 24px 0;
}

/* Category Link Primary */
.category-link-primary {
  background: var(--gradient-primary) !important;
  color: var(--text-light) !important;
  font-weight: 800 !important;
  border: 3px solid rgba(255, 255, 255, 0.2) !important;
  box-shadow: 0 6px 20px rgba(30, 64, 175, 0.4), 0 0 0 2px rgba(30, 64, 175, 0.1) !important;
  position: relative;
  padding: 16px 32px !important;
  font-size: 16px !important;
}

.category-link-primary::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: var(--gradient-primary);
  border-radius: 12px;
  z-index: -1;
  opacity: 0.4;
  filter: blur(12px);
  animation: pulse-glow-premium 2s infinite;
}

@keyframes pulse-glow-premium {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.6; }
}

.category-link-primary:hover {
  transform: translateY(-4px) scale(1.05) !important;
  box-shadow: 0 10px 30px rgba(30, 64, 175, 0.5), 0 0 0 4px rgba(30, 64, 175, 0.15) !important;
  border-color: rgba(255, 255, 255, 0.3) !important;
  filter: brightness(1.1);
}

/* Responsive Premium */
@media (max-width: 1024px) {
  .hero-content-premium {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .hero-title-premium {
    font-size: 56px;
  }

  .section-title-premium {
    font-size: 40px;
  }

  .section-header-premium {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .premium-hero {
    min-height: auto;
    padding: 80px 0 60px;
  }

  .hero-title-premium {
    font-size: 32px;
  }

  .hero-description-premium {
    font-size: 18px;
  }

  .hero-actions-premium {
    flex-direction: column;
  }

  .btn-hero-premium {
    width: 100%;
    justify-content: center;
  }

  .hero-stats-premium {
    justify-content: space-around;
  }

  .minimal-category-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
  }

  .premium-features-grid {
    grid-template-columns: 1fr;
  }

  .how-it-works-grid-premium {
    grid-template-columns: 1fr;
  }

  .cta-title-premium {
    font-size: 40px;
  }

  .cta-description-premium {
    font-size: 18px;
  }

  .cta-actions-premium {
    flex-direction: column;
  }

  .btn-cta-premium {
    width: 100%;
    justify-content: center;
  }

  .section-title-premium {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .hero-title-premium {
    font-size: 32px;
  }

  .section-title-premium {
    font-size: 28px;
  }

  .section-title-premium i {
    font-size: 28px;
  }

  .minimal-category-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 10px;
  }

  .elegant-category-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
  }

  .elegant-category-item {
    padding: 10px 14px;
    min-height: 56px;
    gap: 10px;
  }

  .category-logo-image,
  .category-logo-icon {
    width: 40px;
    height: 40px;
  }

  .category-logo-icon {
    font-size: 18px;
  }

  .category-name-text {
    font-size: 13px;
  }
}

@media (max-width: 640px) {
  .elegant-category-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 8px;
  }

  .elegant-category-item {
    padding: 10px 12px;
    min-height: 52px;
    gap: 8px;
  }

  .category-logo-image,
  .category-logo-icon {
    width: 36px;
    height: 36px;
  }

  .category-logo-icon {
    font-size: 16px;
  }

  .category-name-text {
    font-size: 12px;
  }
}

/* ============================================
   MODERN USER SIDEBAR STYLES
   ============================================ */

.user-sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 280px;
    height: 100vh;
    background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
    border-right: 1px solid var(--border-dark);
    display: flex;
    flex-direction: column;
    z-index: 1000;
    overflow-y: auto;
    overflow-x: hidden;
    transition: transform 0.3s ease;
}

.user-sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.user-sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.user-sidebar-header {
    padding: 24px 20px;
    border-bottom: 1px solid var(--border-dark);
    background: rgba(30, 64, 175, 0.05);
}

.user-sidebar-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.user-sidebar-logo:hover {
    transform: translateX(4px);
}

.user-sidebar-logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
}

.user-sidebar-logo-text {
    flex: 1;
}

.user-sidebar-logo-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 2px;
}

.user-sidebar-logo-subtitle {
    font-size: 11px;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.user-sidebar-nav {
    flex: 1;
    padding: 16px 0;
    overflow-y: auto;
}

.user-sidebar-section {
    margin-bottom: 24px;
}

.user-sidebar-section-title {
    padding: 12px 20px 8px 20px;
    font-size: 11px;
    font-weight: 800;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.user-sidebar-section-title::after {
    content: "";
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--border-dark) 0%, transparent 100%);
    margin-left: 8px;
}

.user-sidebar-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    color: var(--text-gray);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    font-weight: 600;
    font-size: 14px;
    border-radius: 12px;
    margin: 4px 12px;
    overflow: hidden;
}

.user-sidebar-link::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary-blue);
    transform: scaleY(0);
    transition: transform 0.3s ease;
    border-radius: 0 4px 4px 0;
}

.user-sidebar-link i {
    width: 24px;
    height: 24px;
    font-size: 18px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(30, 64, 175, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.user-sidebar-link:hover {
    color: var(--text-light);
    background: linear-gradient(90deg, rgba(30, 64, 175, 0.15) 0%, rgba(30, 64, 175, 0.05) 100%);
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.2);
}

.user-sidebar-link:hover i {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.4);
}

.user-sidebar-link.active {
    color: var(--text-light);
    background: linear-gradient(90deg, rgba(30, 64, 175, 0.25) 0%, rgba(30, 64, 175, 0.1) 100%);
    box-shadow: 0 4px 16px rgba(30, 64, 175, 0.3);
}

.user-sidebar-link.active::before {
    transform: scaleY(1);
}

.user-sidebar-link.active i {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.4);
}

.user-sidebar-badge {
    margin-left: auto;
    background: linear-gradient(135deg, var(--error) 0%, #dc2626 100%);
    color: white;
    font-size: 11px;
    font-weight: 800;
    padding: 5px 10px;
    border-radius: 12px;
    min-width: 24px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.4);
    animation: pulse 2s infinite;
}

.user-sidebar-footer {
    padding: 20px;
    border-top: 1px solid var(--border-dark);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.user-sidebar-footer-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    color: var(--text-gray);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
}

.user-sidebar-footer-link:hover {
    background: rgba(30, 64, 175, 0.1);
    color: var(--text-light);
}

.user-sidebar-footer-link-danger {
    color: var(--error);
}

.user-sidebar-footer-link-danger:hover {
    background: rgba(239, 68, 68, 0.1);
    color: var(--error);
}

/* Mobile Responsive for User Sidebar */
@media (max-width: 1024px) {
    .user-sidebar {
        transform: translateX(-100%);
    }
    
    .user-sidebar.active {
        transform: translateX(0);
    }
}

.modern-stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.modern-stat-card:hover::before {
  transform: scaleX(1);
}

.modern-stat-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-orange);
  box-shadow: 0 12px 32px rgba(110, 231, 69, 0.2);
}

.stat-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: rgba(110, 231, 69, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--accent-orange);
}

.modern-stat-card .stat-number {
  font-size: 48px;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  display: block;
}

.modern-stat-card .stat-label {
  font-size: 18px;
  color: var(--text-gray);
}

/* How It Works Section */
.how-it-works-section {
  padding: 80px 0;
  background: var(--dark-card);
}

.how-it-works-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.how-it-works-card {
  position: relative;
  background: var(--dark-bg);
  border: 1px solid var(--border-dark);
  border-radius: 20px;
  padding: 50px 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.how-it-works-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-orange);
  box-shadow: 0 16px 40px rgba(110, 231, 69, 0.2);
}

.step-number {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  color: white;
  box-shadow: 0 4px 16px rgba(0, 196, 255, 0.4);
}

.step-icon {
  width: 100px;
  height: 100px;
  margin: 30px auto 24px;
  background: rgba(110, 231, 69, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--accent-orange);
  transition: all 0.3s ease;
}

.how-it-works-card:hover .step-icon {
  background: rgba(110, 231, 69, 0.2);
  transform: scale(1.1);
}

.how-it-works-card h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 16px;
}

.how-it-works-card p {
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.7;
}

/* Modern Reviews Section */
.modern-reviews-section {
  padding: 80px 0;
  background: var(--dark-card);
}

.modern-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.modern-review-card {
  background: var(--dark-bg);
  border: 1px solid var(--border-dark);
  border-radius: 16px;
  padding: 24px;
  transition: all 0.3s ease;
}

.modern-review-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-orange);
  box-shadow: 0 12px 32px rgba(110, 231, 69, 0.15);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.review-avatar {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  color: white;
  flex-shrink: 0;
}

.review-user-info {
  flex: 1;
}

.review-username {
  font-weight: 600;
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 6px;
}

.review-stars {
  color: var(--accent-orange);
  font-size: 14px;
}

.review-product {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: var(--dark-card);
  border-radius: 10px;
  margin-bottom: 16px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.review-product:hover {
  background: rgba(110, 231, 69, 0.1);
}

.review-product img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.review-product-placeholder {
  width: 50px;
  height: 50px;
  background: var(--dark-bg);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-orange);
  font-size: 20px;
  flex-shrink: 0;
}

.review-product span {
  flex: 1;
  font-size: 14px;
  color: var(--text-light);
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.review-comment {
  color: var(--text-gray);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.review-comment-empty {
  text-align: center;
  padding: 20px;
  color: var(--text-gray);
  font-size: 13px;
  font-style: italic;
  margin: 0;
}

/* Modern CTA Section */
.modern-cta-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.cta-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.cta-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  opacity: 0.1;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-size: 48px;
  font-weight: 800;
  color: var(--text-light);
  margin-bottom: 20px;
}

.cta-description {
  font-size: 20px;
  color: var(--text-gray);
  margin-bottom: 40px;
  line-height: 1.6;
}

.cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-cta {
  padding: 18px 36px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-cta-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 8px 24px rgba(0, 196, 255, 0.3);
}

.btn-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 196, 255, 0.4);
}

.btn-cta-secondary {
  background: var(--dark-card);
  color: var(--text-light);
  border: 2px solid var(--border-dark);
}

.btn-cta-secondary:hover {
  border-color: var(--accent-orange);
  background: rgba(110, 231, 69, 0.1);
  color: var(--accent-orange);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-title {
    font-size: 32px;
  }

  .section-title-modern {
    font-size: 28px;
  }

  .section-header-modern {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .modern-hero {
    min-height: auto;
    padding: 60px 0 40px;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-description {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn-hero {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    justify-content: space-around;
  }

  .modern-category-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
  }

  .modern-features-grid {
    grid-template-columns: 1fr;
  }

  .how-it-works-grid {
    grid-template-columns: 1fr;
  }

  .modern-reviews-grid {
    grid-template-columns: 1fr;
  }

  .cta-title {
    font-size: 32px;
  }

  .cta-description {
    font-size: 16px;
  }

  .cta-actions {
    flex-direction: column;
  }

  .btn-cta {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 28px;
  }

  .section-title-modern {
    font-size: 24px;
  }

  .section-title-modern i {
    font-size: 24px;
  }

  .modern-category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================
   PREMIUM HOMEPAGE STYLES - OYUN HESAPLARI
   ============================================ */

/* Premium Hero Section */
.premium-hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  padding: 80px 0;
  overflow: hidden;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-dark);
}

.hero-background-premium {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-gradient-premium {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-hero);
  opacity: 0.98;
}

.hero-pattern-premium {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 40% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  animation: heroPatternMove 25s ease-in-out infinite;
}

.hero-content-premium {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-text-premium {
  animation: fadeInUp 0.8s ease;
}

.hero-badge-premium {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  color: var(--text-light);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 32px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  animation: fadeInDown 0.6s ease;
}

.hero-badge-premium i {
  color: #fbbf24;
  font-size: 18px;
  animation: pulse 2s infinite;
}

.hero-title-premium {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 24px;
  color: var(--text-primary);
  letter-spacing: 0;
}

.gradient-text-premium {
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}

.hero-description-premium {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 600px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.hero-actions-premium {
  display: flex;
  gap: 24px;
  margin-bottom: 80px;
  flex-wrap: wrap;
}

.btn-hero-premium {
  padding: 22px 44px;
  border-radius: 16px;
  font-size: 18px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  text-decoration: none;
  letter-spacing: -0.01em;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn-hero-premium.btn-primary-premium {
  background: var(--gradient-primary);
  color: var(--text-light);
  border: 3px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 24px rgba(30, 64, 175, 0.4), 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.btn-hero-premium.btn-primary-premium:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(30, 64, 175, 0.5), 0 0 0 5px rgba(30, 64, 175, 0.15);
  filter: brightness(1.1);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-hero-premium.btn-secondary-premium {
  background: var(--bg-card);
  color: var(--text-primary);
  border: 3px solid var(--primary-blue);
  box-shadow: 0 6px 20px rgba(30, 64, 175, 0.25);
}

.btn-hero-premium.btn-secondary-premium:hover {
  border-color: var(--accent-orange);
  background: var(--bg-hover);
  color: var(--accent-orange);
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(234, 88, 12, 0.3);
}

.hero-stats-premium {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

.hero-stat-item-premium {
  text-align: left;
}

.hero-stat-item-premium .stat-number-premium {
  font-size: 40px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
  display: block;
  letter-spacing: -0.02em;
}

.hero-stat-item-premium .stat-label-premium {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-visual-premium {
  position: relative;
  animation: fadeInRight 0.8s ease;
}

.hero-slider-premium {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  border: 3px solid rgba(255, 255, 255, 0.2);
}

.hero-slider-premium .slider-wrapper-premium {
  position: relative;
  width: 100%;
  height: 450px;
  display: flex;
}

.hero-slider-premium .slider-item-premium {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}

.hero-slider-premium .slider-item-premium.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.hero-slider-premium .slider-item-premium img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slider-premium .slider-overlay-premium {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
}

.hero-slider-premium .slider-nav-premium {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  color: white;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.2);
  font-size: 20px;
}

.hero-slider-premium .slider-nav-premium:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: translateY(-50%) scale(1.1);
  border-color: rgba(255, 255, 255, 0.4);
}

.hero-slider-premium .slider-nav-premium.prev {
  left: 24px;
}

.hero-slider-premium .slider-nav-premium.next {
  right: 24px;
}

.hero-slider-premium .slider-controls-premium {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.hero-slider-premium .slider-dot-premium {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-slider-premium .slider-dot-premium.active {
  background: var(--text-light);
  width: 40px;
  border-radius: 7px;
  border-color: var(--text-light);
}

/* Premium Section Styles */
.section-premium {
  padding: 60px 0;
  position: relative;
}

/* ============================================
   COMPACT HOMEPAGE STYLES - BOŞLUK YOK
   ============================================ */

/* Compact Hero */
.compact-hero {
  background: var(--bg-secondary);
  padding: 24px 0;
  border-bottom: 1px solid var(--border-dark);
  position: relative;
  overflow: hidden;
}

.compact-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(30, 64, 175, 0.08) 0%, transparent 70%);
  animation: float 10s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.compact-hero::after {
  content: "";
  position: absolute;
  bottom: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.06) 0%, transparent 70%);
  animation: float 15s ease-in-out infinite reverse;
  pointer-events: none;
  z-index: 0;
}

.compact-hero > .container {
  position: relative;
  z-index: 1;
}

.hero-content-compact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.hero-text-compact {
  animation: fadeInUp 0.6s ease;
}

.hero-title-compact {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 16px;
  color: var(--text-primary);
  letter-spacing: 0;
}

.hero-description-compact {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.hero-actions-compact {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-hero-compact {
  padding: 10px 20px;
  border-radius: 12px;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  text-decoration: none;
  letter-spacing: 0.02em;
}

.btn-hero-compact.btn-primary-compact {
  background: var(--gradient-primary);
  color: var(--text-light);
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 6px 20px rgba(30, 64, 175, 0.35);
}

.btn-hero-compact.btn-primary-compact:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(30, 64, 175, 0.45);
  filter: brightness(1.1);
}

.btn-hero-compact.btn-secondary-compact {
  background: var(--bg-card);
  color: var(--text-primary);
  border: 2px solid var(--primary-blue);
  box-shadow: 0 4px 12px rgba(30, 64, 175, 0.2);
}

.btn-hero-compact.btn-secondary-compact:hover {
  border-color: var(--accent-orange);
  color: var(--accent-orange);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(234, 88, 12, 0.25);
}

.hero-slider-compact {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  height: 220px;
  display: block;
  width: 100%;
}

.slider-wrapper-compact {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
}

.slider-item-compact {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
  display: block;
  visibility: hidden;
}

.slider-item-compact.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
  visibility: visible;
}

.slider-item-compact img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slider-controls-compact {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.slider-dot-compact {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.slider-dot-compact.active {
  background: var(--text-light);
  width: 30px;
  border-radius: 6px;
  border-color: var(--text-light);
}

/* Compact Sections */
.compact-section {
  padding: 24px 0;
  position: relative;
  overflow: hidden;
}

.compact-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(30, 64, 175, 0.05) 0%, transparent 70%);
  animation: float 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.compact-section::after {
  content: "";
  position: absolute;
  bottom: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.04) 0%, transparent 70%);
  animation: float 12s ease-in-out infinite reverse;
  pointer-events: none;
  z-index: 0;
}

.compact-section > .container {
  position: relative;
  z-index: 1;
}

.categories-section-compact {
  background: var(--bg-secondary);
  padding: 24px 0;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.categories-section-compact::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(30, 64, 175, 0.06) 0%, transparent 70%);
  animation: float 9s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.categories-section-compact::after {
  content: "";
  position: absolute;
  bottom: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
  animation: float 13s ease-in-out infinite reverse;
  pointer-events: none;
  z-index: 0;
}

.categories-section-compact > .container {
  position: relative;
  z-index: 1;
}

.featured-section-compact {
  background: var(--bg-primary);
  padding: 24px 0;
}

.popular-section-compact {
  background: var(--bg-secondary);
  padding: 24px 0;
}

.latest-section-compact {
  background: var(--bg-primary);
  padding: 24px 0;
}

.recommended-section-compact {
  background: var(--bg-secondary);
  padding: 24px 0;
}

.section-header-compact {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  gap: 20px;
}

.section-title-compact {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
  letter-spacing: 0;
  line-height: 1.4;
}

.btn-view-all-compact {
  padding: 12px 24px;
  background: var(--bg-card);
  border: 2px solid var(--primary-blue);
  border-radius: 10px;
  color: var(--primary-blue);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
  font-size: 15px;
  box-shadow: 0 2px 8px rgba(30, 64, 175, 0.2);
  letter-spacing: 0.01em;
}

.btn-view-all-compact:hover {
  border-color: var(--accent-orange);
  color: var(--accent-orange);
  background: rgba(234, 88, 12, 0.1);
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(234, 88, 12, 0.25);
}

/* Compact Product Grid */
.product-grid-compact {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
  width: 100%;
}

/* Compact Features */
.features-section-compact {
  background: var(--bg-secondary);
}

.features-grid-compact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.feature-item-compact {
  background: var(--bg-card);
  border: 2px solid var(--border-light);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.feature-item-compact:hover {
  transform: translateY(-4px);
  border-color: var(--primary-blue);
  box-shadow: 0 6px 16px rgba(30, 64, 175, 0.2);
}

.feature-icon-compact {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  background: var(--gradient-primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: white;
  box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
}

.feature-item-compact h3 {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}

.feature-item-compact p {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.6;
}

/* Compact How It Works */
.how-it-works-compact {
  background: var(--bg-secondary);
}

.steps-grid-compact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.step-item-compact {
  background: var(--bg-card);
  border: 2px solid var(--border-light);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.step-item-compact:hover {
  transform: translateY(-4px);
  border-color: var(--primary-blue);
  box-shadow: 0 6px 16px rgba(30, 64, 175, 0.2);
}

.step-number-compact {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 18px;
  box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
}

.step-icon-compact {
  width: 70px;
  height: 70px;
  margin: 20px auto 20px;
  background: rgba(30, 64, 175, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--primary-blue);
  transition: all 0.3s ease;
}

.step-item-compact:hover .step-icon-compact {
  background: var(--gradient-primary);
  color: white;
  transform: scale(1.1);
}

.step-item-compact h3 {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 21px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}

.step-item-compact p {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.6;
}

/* Compact CTA */
.cta-section-compact {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-dark);
}

.cta-content-compact {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-title-compact {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
  letter-spacing: 0;
  line-height: 1.4;
}

.cta-description-compact {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 28px;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.7;
}

.cta-actions-compact {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-cta-compact {
  padding: 16px 32px;
  border-radius: 12px;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  text-decoration: none;
  letter-spacing: 0.02em;
}

.btn-cta-primary-compact {
  background: var(--gradient-primary);
  color: var(--text-light);
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 6px 20px rgba(30, 64, 175, 0.35);
}

.btn-cta-primary-compact:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(30, 64, 175, 0.45);
  filter: brightness(1.1);
}

.btn-cta-secondary-compact {
  background: var(--bg-card);
  color: var(--text-primary);
  border: 2px solid var(--primary-blue);
  box-shadow: 0 4px 12px rgba(30, 64, 175, 0.2);
}

.btn-cta-secondary-compact:hover {
  border-color: var(--accent-orange);
  color: var(--accent-orange);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(234, 88, 12, 0.25);
}

/* Responsive Compact */
@media (max-width: 1024px) {
  .hero-content-compact {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-slider-compact {
    height: 240px;
  }

  .product-grid-compact {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
  }
  
  .minimal-category-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 10px;
  }
}

@media (max-width: 768px) {
  .compact-hero {
    padding: 24px 0;
  }

  .hero-title-compact {
    font-size: 28px;
  }

  .compact-section {
    padding: 24px 0;
  }

  .categories-section-compact,
  .featured-section-compact,
  .popular-section-compact,
  .latest-section-compact,
  .recommended-section-compact {
    padding: 24px 0;
  }

  .section-title-compact {
    font-size: 24px;
  }

  .section-header-compact {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .product-grid-compact {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 10px;
  }
  
  .minimal-category-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 10px;
  }

  .features-grid-compact {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .steps-grid-compact {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero-slider-compact {
    height: 200px;
  }
}

.section-header-premium {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  gap: 30px;
}

.section-title-premium {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0;
  letter-spacing: 0;
  line-height: 1.4;
}

.section-title-premium i {
  display: none;
}

.section-subtitle-premium {
  display: none;
}

.btn-view-all-premium {
  padding: 18px 36px;
  background: var(--bg-card);
  border: 3px solid var(--primary-blue);
  border-radius: 12px;
  color: var(--primary-blue);
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
  font-size: 16px;
  letter-spacing: -0.01em;
  box-shadow: 0 4px 12px rgba(30, 64, 175, 0.25);
}

.btn-view-all-premium:hover {
  border-color: var(--accent-orange);
  color: var(--accent-orange);
  background: rgba(234, 88, 12, 0.15);
  transform: translateX(5px);
  box-shadow: 0 6px 20px rgba(234, 88, 12, 0.3);
}

/* Minimal Categories */
.premium-categories-section {
  background: var(--bg-secondary);
  padding: 24px 0;
}

.minimal-category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 10px;
  width: 100%;
}

.minimal-category-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(30, 64, 175, 0.03) 100%);
  border: 2px solid var(--border-light);
  border-radius: 16px;
  text-decoration: none;
  color: var(--text-primary);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
  letter-spacing: 0;
  min-height: 65px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.minimal-category-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(30, 64, 175, 0.1), transparent);
  transition: left 0.5s ease;
}

.minimal-category-item:hover::before {
  left: 100%;
}

.minimal-category-item span {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.minimal-category-item:hover {
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.12) 0%, rgba(59, 130, 246, 0.08) 100%);
  border-color: var(--primary-blue);
  transform: translateY(-4px) scale(1.03);
  color: var(--primary-blue);
  box-shadow: 0 8px 20px rgba(30, 64, 175, 0.3);
}

.minimal-category-item img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
  border: 2px solid var(--border-light);
  background: var(--bg-secondary);
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.minimal-category-item:hover img {
  transform: scale(1.1) rotate(5deg);
  border-color: var(--primary-blue);
  box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
}

.minimal-category-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.15) 0%, rgba(59, 130, 246, 0.1) 100%);
  border: 2px solid var(--border-light);
  border-radius: 10px;
  color: var(--primary-blue);
  font-size: 18px;
  flex-shrink: 0;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.minimal-category-item:hover .minimal-category-icon {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
  color: white;
  border-color: var(--primary-blue);
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 4px 12px rgba(30, 64, 175, 0.4);
}

/* Elegant Categories - Itemsatış Style */
.elegant-category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 10px;
  width: 100%;
  justify-items: center;
  max-width: 95%;
  margin: 0 auto;
}

.elegant-category-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 10px 14px;
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(30, 64, 175, 0.05) 100%);
  border: 1.5px solid rgba(30, 64, 175, 0.2);
  border-radius: 12px;
  text-decoration: none;
  color: var(--text-primary);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 0.01em;
  min-height: 48px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  width: 100%;
  max-width: 100%;
}

.elegant-category-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(30, 64, 175, 0.15), transparent);
  transition: left 0.6s ease;
  z-index: 1;
}

.elegant-category-item:hover::before {
  left: 100%;
}

.elegant-category-item.featured-category {
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.3) 0%, rgba(139, 92, 246, 0.25) 50%, rgba(59, 130, 246, 0.3) 100%);
  border: 1.5px solid rgba(30, 64, 175, 0.4);
  box-shadow: 0 4px 16px rgba(30, 64, 175, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  color: var(--text-light);
}

.elegant-category-item.featured-category::before {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.elegant-category-item:hover {
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.15) 0%, rgba(59, 130, 246, 0.1) 100%);
  border-color: var(--primary-blue);
  transform: translateY(-2px);
  color: var(--text-primary);
  box-shadow: 
    0 6px 20px rgba(30, 64, 175, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.elegant-category-item.featured-category:hover {
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.4) 0%, rgba(139, 92, 246, 0.35) 50%, rgba(59, 130, 246, 0.4) 100%);
  border-color: var(--primary-blue);
  box-shadow: 
    0 8px 24px rgba(30, 64, 175, 0.4),
    0 0 0 2px rgba(255, 255, 255, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  color: var(--text-light);
  transform: translateY(-2px);
}

.category-logo-wrapper {
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.category-logo-image {
  width: 36px;
  height: 36px;
  object-fit: cover;
  border-radius: 10px;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  background: var(--bg-secondary);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.elegant-category-item.featured-category .category-logo-image {
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.elegant-category-item:hover .category-logo-image {
  transform: scale(1.08) rotate(4deg);
  border-color: var(--primary-blue);
  box-shadow: 0 4px 12px rgba(30, 64, 175, 0.35);
}

.elegant-category-item.featured-category:hover .category-logo-image {
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.category-logo-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.2) 0%, rgba(59, 130, 246, 0.15) 100%);
  border: 1.5px solid rgba(30, 64, 175, 0.3);
  border-radius: 10px;
  color: var(--primary-blue);
  font-size: 16px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 2;
}

.elegant-category-item.featured-category .category-logo-icon {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  color: white;
}

.elegant-category-item:hover .category-logo-icon {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
  color: white;
  border-color: var(--primary-blue);
  transform: scale(1.08) rotate(5deg);
  box-shadow: 0 4px 12px rgba(30, 64, 175, 0.35);
}

.elegant-category-item.featured-category:hover .category-logo-icon {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  color: white;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.category-name-text {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  position: relative;
  z-index: 2;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.elegant-category-item.featured-category .category-name-text {
  color: white;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.elegant-category-item:hover .category-name-text {
  color: var(--primary-blue);
}

.elegant-category-item.featured-category:hover .category-name-text {
  color: white;
}

/* Premium Product Grid */
.product-grid-premium {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 32px;
}

/* Premium Features */
.premium-features-section {
  background: var(--bg-primary);
  padding: 24px 0;
}

.premium-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.premium-feature-card {
  background: var(--bg-card);
  border: 2px solid var(--border-light);
  border-radius: 20px;
  padding: 48px 36px;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: var(--shadow-sm);
}

.premium-feature-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-blue);
  box-shadow: var(--shadow-primary), var(--shadow-xl);
}

.feature-icon-premium {
  width: 100px;
  height: 100px;
  margin: 0 auto 32px;
  background: var(--gradient-primary);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 44px;
  color: white;
  box-shadow: var(--shadow-primary);
  transition: all 0.4s ease;
}

.premium-feature-card:hover .feature-icon-premium {
  transform: scale(1.1) rotate(5deg);
}

.premium-feature-card h3 {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}

.premium-feature-card p {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.65;
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* Premium Stats */
.premium-stats-section {
  background: var(--bg-secondary);
  padding: 24px 0;
}

.premium-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.premium-stat-card {
  background: var(--bg-card);
  border: 2px solid var(--border-light);
  border-radius: 24px;
  padding: 60px 40px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.premium-stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.premium-stat-card:hover::before {
  transform: scaleX(1);
}

.premium-stat-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-blue);
  box-shadow: var(--shadow-primary), var(--shadow-xl);
}

.stat-icon-premium {
  width: 80px;
  height: 80px;
  margin: 0 auto 28px;
  background: rgba(30, 64, 175, 0.1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: var(--primary-blue);
  transition: all 0.4s ease;
}

.premium-stat-card:hover .stat-icon-premium {
  background: var(--gradient-primary);
  color: white;
  transform: scale(1.1);
}

.premium-stat-card .stat-number-premium {
  font-size: 56px;
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  display: block;
  letter-spacing: -0.02em;
}

.premium-stat-card .stat-label-premium {
  font-size: 20px;
  color: var(--text-secondary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* How It Works Premium */
.how-it-works-section-premium {
  background: var(--bg-secondary);
}

.how-it-works-grid-premium {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 50px;
  max-width: 1300px;
  margin: 0 auto;
}

.how-it-works-card-premium {
  position: relative;
  background: var(--bg-card);
  border: 2px solid var(--border-light);
  border-radius: 24px;
  padding: 60px 40px;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: var(--shadow-sm);
}

.how-it-works-card-premium:hover {
  transform: translateY(-12px);
  border-color: var(--primary-blue);
  box-shadow: var(--shadow-primary), var(--shadow-xl);
}

.step-number-premium {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 900;
  color: white;
  box-shadow: var(--shadow-premium);
  border: 4px solid var(--bg-card);
}

.step-icon-premium {
  width: 120px;
  height: 120px;
  margin: 40px auto 32px;
  background: rgba(30, 64, 175, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
  color: var(--primary-blue);
  transition: all 0.4s ease;
}

.how-it-works-card-premium:hover .step-icon-premium {
  background: var(--gradient-primary);
  color: white;
  transform: scale(1.1);
}

.how-it-works-card-premium h3 {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}

.how-it-works-card-premium p {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* Premium CTA */
.premium-cta-section {
  position: relative;
  padding: 24px 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-dark);
}

.cta-background-premium {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.cta-gradient-premium {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-hero);
  opacity: 0.95;
}

.cta-content-premium {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-title-premium {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
  letter-spacing: 0;
  line-height: 1.4;
}

.cta-description-premium {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 28px;
  line-height: 1.7;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.cta-actions-premium {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-cta-premium {
  padding: 22px 44px;
  border-radius: 16px;
  font-size: 18px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  text-decoration: none;
  letter-spacing: -0.01em;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn-cta-primary-premium {
  background: var(--gradient-primary);
  color: var(--text-light);
  border: 3px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 24px rgba(30, 64, 175, 0.4), 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.btn-cta-primary-premium:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(30, 64, 175, 0.5), 0 0 0 5px rgba(30, 64, 175, 0.15);
  filter: brightness(1.1);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-cta-secondary-premium {
  background: var(--bg-card);
  color: var(--text-primary);
  border: 3px solid var(--primary-blue);
  box-shadow: 0 6px 20px rgba(30, 64, 175, 0.25);
}

.btn-cta-secondary-premium:hover {
  border-color: var(--accent-orange);
  background: var(--bg-hover);
  color: var(--accent-orange);
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(234, 88, 12, 0.3);
}

/* Featured Accounts Section */
.featured-accounts-section {
  background: var(--bg-primary);
  padding: 24px 0;
}

.popular-accounts-section {
  background: var(--bg-secondary);
  padding: 24px 0;
}

.latest-accounts-section {
  background: var(--bg-primary);
  padding: 24px 0;
}

.recommended-section-premium {
  background: var(--bg-secondary);
  padding: 24px 0;
}

/* Category Link Primary */
.category-link-primary {
  background: var(--gradient-primary) !important;
  color: var(--text-light) !important;
  font-weight: 800 !important;
  border: 3px solid rgba(255, 255, 255, 0.2) !important;
  box-shadow: 0 6px 20px rgba(30, 64, 175, 0.4), 0 0 0 2px rgba(30, 64, 175, 0.1) !important;
  position: relative;
  padding: 16px 32px !important;
  font-size: 16px !important;
}

.category-link-primary::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: var(--gradient-primary);
  border-radius: 12px;
  z-index: -1;
  opacity: 0.4;
  filter: blur(12px);
  animation: pulse-glow-premium 2s infinite;
}

@keyframes pulse-glow-premium {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.6; }
}

.category-link-primary:hover {
  transform: translateY(-4px) scale(1.05) !important;
  box-shadow: 0 10px 30px rgba(30, 64, 175, 0.5), 0 0 0 4px rgba(30, 64, 175, 0.15) !important;
  border-color: rgba(255, 255, 255, 0.3) !important;
  filter: brightness(1.1);
}

/* Responsive Premium */
@media (max-width: 1024px) {
  .hero-content-premium {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .hero-title-premium {
    font-size: 56px;
  }

  .section-title-premium {
    font-size: 40px;
  }

  .section-header-premium {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .premium-hero {
    min-height: auto;
    padding: 80px 0 60px;
  }

  .hero-title-premium {
    font-size: 32px;
  }

  .hero-description-premium {
    font-size: 18px;
  }

  .hero-actions-premium {
    flex-direction: column;
  }

  .btn-hero-premium {
    width: 100%;
    justify-content: center;
  }

  .hero-stats-premium {
    justify-content: space-around;
  }

  .minimal-category-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
  }

  .premium-features-grid {
    grid-template-columns: 1fr;
  }

  .how-it-works-grid-premium {
    grid-template-columns: 1fr;
  }

  .cta-title-premium {
    font-size: 40px;
  }

  .cta-description-premium {
    font-size: 18px;
  }

  .cta-actions-premium {
    flex-direction: column;
  }

  .btn-cta-premium {
    width: 100%;
    justify-content: center;
  }

  .section-title-premium {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .hero-title-premium {
    font-size: 32px;
  }

  .section-title-premium {
    font-size: 28px;
  }

  .section-title-premium i {
    font-size: 28px;
  }

  .minimal-category-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 10px;
  }

  .elegant-category-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
  }

  .elegant-category-item {
    padding: 10px 14px;
    min-height: 56px;
    gap: 10px;
  }

  .category-logo-image,
  .category-logo-icon {
    width: 40px;
    height: 40px;
  }

  .category-logo-icon {
    font-size: 18px;
  }

  .category-name-text {
    font-size: 13px;
  }
}

@media (max-width: 640px) {
  .elegant-category-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 8px;
  }

  .elegant-category-item {
    padding: 10px 12px;
    min-height: 52px;
    gap: 8px;
  }

  .category-logo-image,
  .category-logo-icon {
    width: 36px;
    height: 36px;
  }

  .category-logo-icon {
    font-size: 16px;
  }

  .category-name-text {
    font-size: 12px;
  }
}

/* ============================================
   MODERN USER SIDEBAR STYLES
   ============================================ */

.user-sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 280px;
    height: 100vh;
    background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
    border-right: 1px solid var(--border-dark);
    display: flex;
    flex-direction: column;
    z-index: 1000;
    overflow-y: auto;
    overflow-x: hidden;
    transition: transform 0.3s ease;
}

.user-sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.user-sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.user-sidebar-header {
    padding: 24px 20px;
    border-bottom: 1px solid var(--border-dark);
    background: rgba(30, 64, 175, 0.05);
}

.user-sidebar-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.user-sidebar-logo:hover {
    transform: translateX(4px);
}

.user-sidebar-logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
}

.user-sidebar-logo-text {
    flex: 1;
}

.user-sidebar-logo-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 2px;
}

.user-sidebar-logo-subtitle {
    font-size: 11px;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.user-sidebar-nav {
    flex: 1;
    padding: 16px 0;
    overflow-y: auto;
}

.user-sidebar-section {
    margin-bottom: 24px;
}

.user-sidebar-section-title {
    padding: 12px 20px 8px 20px;
    font-size: 11px;
    font-weight: 800;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.user-sidebar-section-title::after {
    content: "";
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--border-dark) 0%, transparent 100%);
    margin-left: 8px;
}

.user-sidebar-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    color: var(--text-gray);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    font-weight: 600;
    font-size: 14px;
    border-radius: 12px;
    margin: 4px 12px;
    overflow: hidden;
}

.user-sidebar-link::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary-blue);
    transform: scaleY(0);
    transition: transform 0.3s ease;
    border-radius: 0 4px 4px 0;
}

.user-sidebar-link i {
    width: 24px;
    height: 24px;
    font-size: 18px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(30, 64, 175, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.user-sidebar-link:hover {
    color: var(--text-light);
    background: linear-gradient(90deg, rgba(30, 64, 175, 0.15) 0%, rgba(30, 64, 175, 0.05) 100%);
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.2);
}

.user-sidebar-link:hover i {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.4);
}

.user-sidebar-link.active {
    color: var(--text-light);
    background: linear-gradient(90deg, rgba(30, 64, 175, 0.25) 0%, rgba(30, 64, 175, 0.1) 100%);
    box-shadow: 0 4px 16px rgba(30, 64, 175, 0.3);
}

.user-sidebar-link.active::before {
    transform: scaleY(1);
}

.user-sidebar-link.active i {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.4);
}

.user-sidebar-badge {
    margin-left: auto;
    background: linear-gradient(135deg, var(--error) 0%, #dc2626 100%);
    color: white;
    font-size: 11px;
    font-weight: 800;
    padding: 5px 10px;
    border-radius: 12px;
    min-width: 24px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.4);
    animation: pulse 2s infinite;
}

.user-sidebar-footer {
    padding: 20px;
    border-top: 1px solid var(--border-dark);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.user-sidebar-footer-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    color: var(--text-gray);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
}

.user-sidebar-footer-link:hover {
    background: rgba(30, 64, 175, 0.1);
    color: var(--text-light);
}

.user-sidebar-footer-link-danger {
    color: var(--error);
}

.user-sidebar-footer-link-danger:hover {
    background: rgba(239, 68, 68, 0.1);
    color: var(--error);
}

/* Mobile Responsive for User Sidebar */
@media (max-width: 1024px) {
    .user-sidebar {
        transform: translateX(-100%);
    }
    
    .user-sidebar.active {
        transform: translateX(0);
    }
}

.modern-stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.modern-stat-card:hover::before {
  transform: scaleX(1);
}

.modern-stat-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-orange);
  box-shadow: 0 12px 32px rgba(110, 231, 69, 0.2);
}

.stat-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: rgba(110, 231, 69, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--accent-orange);
}

.modern-stat-card .stat-number {
  font-size: 48px;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  display: block;
}

.modern-stat-card .stat-label {
  font-size: 18px;
  color: var(--text-gray);
}

/* How It Works Section */
.how-it-works-section {
  padding: 80px 0;
  background: var(--dark-card);
}

.how-it-works-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.how-it-works-card {
  position: relative;
  background: var(--dark-bg);
  border: 1px solid var(--border-dark);
  border-radius: 20px;
  padding: 50px 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.how-it-works-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-orange);
  box-shadow: 0 16px 40px rgba(110, 231, 69, 0.2);
}

.step-number {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  color: white;
  box-shadow: 0 4px 16px rgba(0, 196, 255, 0.4);
}

.step-icon {
  width: 100px;
  height: 100px;
  margin: 30px auto 24px;
  background: rgba(110, 231, 69, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--accent-orange);
  transition: all 0.3s ease;
}

.how-it-works-card:hover .step-icon {
  background: rgba(110, 231, 69, 0.2);
  transform: scale(1.1);
}

.how-it-works-card h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 16px;
}

.how-it-works-card p {
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.7;
}

/* Modern Reviews Section */
.modern-reviews-section {
  padding: 80px 0;
  background: var(--dark-card);
}

.modern-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.modern-review-card {
  background: var(--dark-bg);
  border: 1px solid var(--border-dark);
  border-radius: 16px;
  padding: 24px;
  transition: all 0.3s ease;
}

.modern-review-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-orange);
  box-shadow: 0 12px 32px rgba(110, 231, 69, 0.15);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.review-avatar {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  color: white;
  flex-shrink: 0;
}

.review-user-info {
  flex: 1;
}

.review-username {
  font-weight: 600;
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 6px;
}

.review-stars {
  color: var(--accent-orange);
  font-size: 14px;
}

.review-product {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: var(--dark-card);
  border-radius: 10px;
  margin-bottom: 16px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.review-product:hover {
  background: rgba(110, 231, 69, 0.1);
}

.review-product img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.review-product-placeholder {
  width: 50px;
  height: 50px;
  background: var(--dark-bg);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-orange);
  font-size: 20px;
  flex-shrink: 0;
}

.review-product span {
  flex: 1;
  font-size: 14px;
  color: var(--text-light);
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.review-comment {
  color: var(--text-gray);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.review-comment-empty {
  text-align: center;
  padding: 20px;
  color: var(--text-gray);
  font-size: 13px;
  font-style: italic;
  margin: 0;
}

/* Modern CTA Section */
.modern-cta-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.cta-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.cta-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  opacity: 0.1;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-size: 48px;
  font-weight: 800;
  color: var(--text-light);
  margin-bottom: 20px;
}

.cta-description {
  font-size: 20px;
  color: var(--text-gray);
  margin-bottom: 40px;
  line-height: 1.6;
}

.cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-cta {
  padding: 18px 36px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-cta-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 8px 24px rgba(0, 196, 255, 0.3);
}

.btn-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 196, 255, 0.4);
}

.btn-cta-secondary {
  background: var(--dark-card);
  color: var(--text-light);
  border: 2px solid var(--border-dark);
}

.btn-cta-secondary:hover {
  border-color: var(--accent-orange);
  background: rgba(110, 231, 69, 0.1);
  color: var(--accent-orange);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-title {
    font-size: 32px;
  }

  .section-title-modern {
    font-size: 28px;
  }

  .section-header-modern {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .modern-hero {
    min-height: auto;
    padding: 60px 0 40px;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-description {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn-hero {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    justify-content: space-around;
  }

  .modern-category-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
  }

  .modern-features-grid {
    grid-template-columns: 1fr;
  }

  .how-it-works-grid {
    grid-template-columns: 1fr;
  }

  .modern-reviews-grid {
    grid-template-columns: 1fr;
  }

  .cta-title {
    font-size: 32px;
  }

  .cta-description {
    font-size: 16px;
  }

  .cta-actions {
    flex-direction: column;
  }

  .btn-cta {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 28px;
  }

  .section-title-modern {
    font-size: 24px;
  }

  .section-title-modern i {
    font-size: 24px;
  }

  .modern-category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================
   PREMIUM HOMEPAGE STYLES - OYUN HESAPLARI
   ============================================ */

/* Premium Hero Section */
.premium-hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  padding: 80px 0;
  overflow: hidden;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-dark);
}

.hero-background-premium {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-gradient-premium {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-hero);
  opacity: 0.98;
}

.hero-pattern-premium {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 40% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  animation: heroPatternMove 25s ease-in-out infinite;
}

.hero-content-premium {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-text-premium {
  animation: fadeInUp 0.8s ease;
}

.hero-badge-premium {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  color: var(--text-light);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 32px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  animation: fadeInDown 0.6s ease;
}

.hero-badge-premium i {
  color: #fbbf24;
  font-size: 18px;
  animation: pulse 2s infinite;
}

.hero-title-premium {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 24px;
  color: var(--text-primary);
  letter-spacing: 0;
}

.gradient-text-premium {
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}

.hero-description-premium {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 600px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.hero-actions-premium {
  display: flex;
  gap: 24px;
  margin-bottom: 80px;
  flex-wrap: wrap;
}

.btn-hero-premium {
  padding: 22px 44px;
  border-radius: 16px;
  font-size: 18px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  text-decoration: none;
  letter-spacing: -0.01em;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn-hero-premium.btn-primary-premium {
  background: var(--gradient-primary);
  color: var(--text-light);
  border: 3px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 24px rgba(30, 64, 175, 0.4), 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.btn-hero-premium.btn-primary-premium:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(30, 64, 175, 0.5), 0 0 0 5px rgba(30, 64, 175, 0.15);
  filter: brightness(1.1);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-hero-premium.btn-secondary-premium {
  background: var(--bg-card);
  color: var(--text-primary);
  border: 3px solid var(--primary-blue);
  box-shadow: 0 6px 20px rgba(30, 64, 175, 0.25);
}

.btn-hero-premium.btn-secondary-premium:hover {
  border-color: var(--accent-orange);
  background: var(--bg-hover);
  color: var(--accent-orange);
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(234, 88, 12, 0.3);
}

.hero-stats-premium {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

.hero-stat-item-premium {
  text-align: left;
}

.hero-stat-item-premium .stat-number-premium {
  font-size: 40px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
  display: block;
  letter-spacing: -0.02em;
}

.hero-stat-item-premium .stat-label-premium {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-visual-premium {
  position: relative;
  animation: fadeInRight 0.8s ease;
}

.hero-slider-premium {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  border: 3px solid rgba(255, 255, 255, 0.2);
}

.hero-slider-premium .slider-wrapper-premium {
  position: relative;
  width: 100%;
  height: 450px;
  display: flex;
}

.hero-slider-premium .slider-item-premium {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}

.hero-slider-premium .slider-item-premium.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.hero-slider-premium .slider-item-premium img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slider-premium .slider-overlay-premium {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
}

.hero-slider-premium .slider-nav-premium {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  color: white;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.2);
  font-size: 20px;
}

.hero-slider-premium .slider-nav-premium:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: translateY(-50%) scale(1.1);
  border-color: rgba(255, 255, 255, 0.4);
}

.hero-slider-premium .slider-nav-premium.prev {
  left: 24px;
}

.hero-slider-premium .slider-nav-premium.next {
  right: 24px;
}

.hero-slider-premium .slider-controls-premium {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.hero-slider-premium .slider-dot-premium {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-slider-premium .slider-dot-premium.active {
  background: var(--text-light);
  width: 40px;
  border-radius: 7px;
  border-color: var(--text-light);
}

/* Premium Section Styles */
.section-premium {
  padding: 60px 0;
  position: relative;
}

/* ============================================
   COMPACT HOMEPAGE STYLES - BOŞLUK YOK
   ============================================ */

/* Compact Hero */
.compact-hero {
  background: var(--bg-secondary);
  padding: 24px 0;
  border-bottom: 1px solid var(--border-dark);
  position: relative;
  overflow: hidden;
}

.compact-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(30, 64, 175, 0.08) 0%, transparent 70%);
  animation: float 10s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.compact-hero::after {
  content: "";
  position: absolute;
  bottom: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.06) 0%, transparent 70%);
  animation: float 15s ease-in-out infinite reverse;
  pointer-events: none;
  z-index: 0;
}

.compact-hero > .container {
  position: relative;
  z-index: 1;
}

.hero-content-compact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.hero-text-compact {
  animation: fadeInUp 0.6s ease;
}

.hero-title-compact {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 16px;
  color: var(--text-primary);
  letter-spacing: 0;
}

.hero-description-compact {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.hero-actions-compact {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-hero-compact {
  padding: 10px 20px;
  border-radius: 12px;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  text-decoration: none;
  letter-spacing: 0.02em;
}

.btn-hero-compact.btn-primary-compact {
  background: var(--gradient-primary);
  color: var(--text-light);
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 6px 20px rgba(30, 64, 175, 0.35);
}

.btn-hero-compact.btn-primary-compact:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(30, 64, 175, 0.45);
  filter: brightness(1.1);
}

.btn-hero-compact.btn-secondary-compact {
  background: var(--bg-card);
  color: var(--text-primary);
  border: 2px solid var(--primary-blue);
  box-shadow: 0 4px 12px rgba(30, 64, 175, 0.2);
}

.btn-hero-compact.btn-secondary-compact:hover {
  border-color: var(--accent-orange);
  color: var(--accent-orange);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(234, 88, 12, 0.25);
}

.hero-slider-compact {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  height: 220px;
  display: block;
  width: 100%;
}

.slider-wrapper-compact {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
}

.slider-item-compact {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
  display: block;
  visibility: hidden;
}

.slider-item-compact.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
  visibility: visible;
}

.slider-item-compact img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slider-controls-compact {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.slider-dot-compact {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.slider-dot-compact.active {
  background: var(--text-light);
  width: 30px;
  border-radius: 6px;
  border-color: var(--text-light);
}

/* Compact Sections */
.compact-section {
  padding: 24px 0;
  position: relative;
  overflow: hidden;
}

.compact-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(30, 64, 175, 0.05) 0%, transparent 70%);
  animation: float 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.compact-section::after {
  content: "";
  position: absolute;
  bottom: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.04) 0%, transparent 70%);
  animation: float 12s ease-in-out infinite reverse;
  pointer-events: none;
  z-index: 0;
}

.compact-section > .container {
  position: relative;
  z-index: 1;
}

.categories-section-compact {
  background: var(--bg-secondary);
  padding: 24px 0;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.categories-section-compact::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(30, 64, 175, 0.06) 0%, transparent 70%);
  animation: float 9s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.categories-section-compact::after {
  content: "";
  position: absolute;
  bottom: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
  animation: float 13s ease-in-out infinite reverse;
  pointer-events: none;
  z-index: 0;
}

.categories-section-compact > .container {
  position: relative;
  z-index: 1;
}

.featured-section-compact {
  background: var(--bg-primary);
  padding: 24px 0;
}

.popular-section-compact {
  background: var(--bg-secondary);
  padding: 24px 0;
}

.latest-section-compact {
  background: var(--bg-primary);
  padding: 24px 0;
}

.recommended-section-compact {
  background: var(--bg-secondary);
  padding: 24px 0;
}

.section-header-compact {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  gap: 20px;
}

.section-title-compact {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
  letter-spacing: 0;
  line-height: 1.4;
}

.btn-view-all-compact {
  padding: 12px 24px;
  background: var(--bg-card);
  border: 2px solid var(--primary-blue);
  border-radius: 10px;
  color: var(--primary-blue);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
  font-size: 15px;
  box-shadow: 0 2px 8px rgba(30, 64, 175, 0.2);
  letter-spacing: 0.01em;
}

.btn-view-all-compact:hover {
  border-color: var(--accent-orange);
  color: var(--accent-orange);
  background: rgba(234, 88, 12, 0.1);
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(234, 88, 12, 0.25);
}

/* Compact Product Grid */
.product-grid-compact {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
  width: 100%;
}

/* Compact Features */
.features-section-compact {
  background: var(--bg-secondary);
}

.features-grid-compact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.feature-item-compact {
  background: var(--bg-card);
  border: 2px solid var(--border-light);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.feature-item-compact:hover {
  transform: translateY(-4px);
  border-color: var(--primary-blue);
  box-shadow: 0 6px 16px rgba(30, 64, 175, 0.2);
}

.feature-icon-compact {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  background: var(--gradient-primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: white;
  box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
}

.feature-item-compact h3 {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}

.feature-item-compact p {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.6;
}

/* Compact How It Works */
.how-it-works-compact {
  background: var(--bg-secondary);
}

.steps-grid-compact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.step-item-compact {
  background: var(--bg-card);
  border: 2px solid var(--border-light);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.step-item-compact:hover {
  transform: translateY(-4px);
  border-color: var(--primary-blue);
  box-shadow: 0 6px 16px rgba(30, 64, 175, 0.2);
}

.step-number-compact {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 18px;
  box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
}

.step-icon-compact {
  width: 70px;
  height: 70px;
  margin: 20px auto 20px;
  background: rgba(30, 64, 175, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--primary-blue);
  transition: all 0.3s ease;
}

.step-item-compact:hover .step-icon-compact {
  background: var(--gradient-primary);
  color: white;
  transform: scale(1.1);
}

.step-item-compact h3 {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 21px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}

.step-item-compact p {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.6;
}

/* Compact CTA */
.cta-section-compact {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-dark);
}

.cta-content-compact {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-title-compact {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
  letter-spacing: 0;
  line-height: 1.4;
}

.cta-description-compact {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 28px;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.7;
}

.cta-actions-compact {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-cta-compact {
  padding: 16px 32px;
  border-radius: 12px;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  text-decoration: none;
  letter-spacing: 0.02em;
}

.btn-cta-primary-compact {
  background: var(--gradient-primary);
  color: var(--text-light);
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 6px 20px rgba(30, 64, 175, 0.35);
}

.btn-cta-primary-compact:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(30, 64, 175, 0.45);
  filter: brightness(1.1);
}

.btn-cta-secondary-compact {
  background: var(--bg-card);
  color: var(--text-primary);
  border: 2px solid var(--primary-blue);
  box-shadow: 0 4px 12px rgba(30, 64, 175, 0.2);
}

.btn-cta-secondary-compact:hover {
  border-color: var(--accent-orange);
  color: var(--accent-orange);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(234, 88, 12, 0.25);
}

/* Responsive Compact */
@media (max-width: 1024px) {
  .hero-content-compact {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-slider-compact {
    height: 240px;
  }

  .product-grid-compact {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
  }
  
  .minimal-category-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 10px;
  }
}

@media (max-width: 768px) {
  .compact-hero {
    padding: 24px 0;
  }

  .hero-title-compact {
    font-size: 28px;
  }

  .compact-section {
    padding: 24px 0;
  }

  .categories-section-compact,
  .featured-section-compact,
  .popular-section-compact,
  .latest-section-compact,
  .recommended-section-compact {
    padding: 24px 0;
  }

  .section-title-compact {
    font-size: 24px;
  }

  .section-header-compact {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .product-grid-compact {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 10px;
  }
  
  .minimal-category-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 10px;
  }

  .features-grid-compact {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .steps-grid-compact {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero-slider-compact {
    height: 200px;
  }
}

.section-header-premium {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  gap: 30px;
}

.section-title-premium {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0;
  letter-spacing: 0;
  line-height: 1.4;
}

.section-title-premium i {
  display: none;
}

.section-subtitle-premium {
  display: none;
}

.btn-view-all-premium {
  padding: 18px 36px;
  background: var(--bg-card);
  border: 3px solid var(--primary-blue);
  border-radius: 12px;
  color: var(--primary-blue);
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
  font-size: 16px;
  letter-spacing: -0.01em;
  box-shadow: 0 4px 12px rgba(30, 64, 175, 0.25);
}

.btn-view-all-premium:hover {
  border-color: var(--accent-orange);
  color: var(--accent-orange);
  background: rgba(234, 88, 12, 0.15);
  transform: translateX(5px);
  box-shadow: 0 6px 20px rgba(234, 88, 12, 0.3);
}

/* Minimal Categories */
.premium-categories-section {
  background: var(--bg-secondary);
  padding: 24px 0;
}

.minimal-category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 10px;
  width: 100%;
}

.minimal-category-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(30, 64, 175, 0.03) 100%);
  border: 2px solid var(--border-light);
  border-radius: 16px;
  text-decoration: none;
  color: var(--text-primary);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
  letter-spacing: 0;
  min-height: 65px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.minimal-category-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(30, 64, 175, 0.1), transparent);
  transition: left 0.5s ease;
}

.minimal-category-item:hover::before {
  left: 100%;
}

.minimal-category-item span {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.minimal-category-item:hover {
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.12) 0%, rgba(59, 130, 246, 0.08) 100%);
  border-color: var(--primary-blue);
  transform: translateY(-4px) scale(1.03);
  color: var(--primary-blue);
  box-shadow: 0 8px 20px rgba(30, 64, 175, 0.3);
}

.minimal-category-item img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
  border: 2px solid var(--border-light);
  background: var(--bg-secondary);
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.minimal-category-item:hover img {
  transform: scale(1.1) rotate(5deg);
  border-color: var(--primary-blue);
  box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
}

.minimal-category-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.15) 0%, rgba(59, 130, 246, 0.1) 100%);
  border: 2px solid var(--border-light);
  border-radius: 10px;
  color: var(--primary-blue);
  font-size: 18px;
  flex-shrink: 0;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.minimal-category-item:hover .minimal-category-icon {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
  color: white;
  border-color: var(--primary-blue);
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 4px 12px rgba(30, 64, 175, 0.4);
}

/* Elegant Categories - Itemsatış Style */
.elegant-category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 10px;
  width: 100%;
  justify-items: center;
  max-width: 95%;
  margin: 0 auto;
}

.elegant-category-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 10px 14px;
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(30, 64, 175, 0.05) 100%);
  border: 1.5px solid rgba(30, 64, 175, 0.2);
  border-radius: 12px;
  text-decoration: none;
  color: var(--text-primary);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 0.01em;
  min-height: 48px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  width: 100%;
  max-width: 100%;
}

.elegant-category-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(30, 64, 175, 0.15), transparent);
  transition: left 0.6s ease;
  z-index: 1;
}

.elegant-category-item:hover::before {
  left: 100%;
}

.elegant-category-item.featured-category {
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.3) 0%, rgba(139, 92, 246, 0.25) 50%, rgba(59, 130, 246, 0.3) 100%);
  border: 1.5px solid rgba(30, 64, 175, 0.4);
  box-shadow: 0 4px 16px rgba(30, 64, 175, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  color: var(--text-light);
}

.elegant-category-item.featured-category::before {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.elegant-category-item:hover {
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.15) 0%, rgba(59, 130, 246, 0.1) 100%);
  border-color: var(--primary-blue);
  transform: translateY(-2px);
  color: var(--text-primary);
  box-shadow: 
    0 6px 20px rgba(30, 64, 175, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.elegant-category-item.featured-category:hover {
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.4) 0%, rgba(139, 92, 246, 0.35) 50%, rgba(59, 130, 246, 0.4) 100%);
  border-color: var(--primary-blue);
  box-shadow: 
    0 8px 24px rgba(30, 64, 175, 0.4),
    0 0 0 2px rgba(255, 255, 255, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  color: var(--text-light);
  transform: translateY(-2px);
}

.category-logo-wrapper {
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.category-logo-image {
  width: 36px;
  height: 36px;
  object-fit: cover;
  border-radius: 10px;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  background: var(--bg-secondary);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.elegant-category-item.featured-category .category-logo-image {
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.elegant-category-item:hover .category-logo-image {
  transform: scale(1.08) rotate(4deg);
  border-color: var(--primary-blue);
  box-shadow: 0 4px 12px rgba(30, 64, 175, 0.35);
}

.elegant-category-item.featured-category:hover .category-logo-image {
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.category-logo-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.2) 0%, rgba(59, 130, 246, 0.15) 100%);
  border: 1.5px solid rgba(30, 64, 175, 0.3);
  border-radius: 10px;
  color: var(--primary-blue);
  font-size: 16px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 2;
}

.elegant-category-item.featured-category .category-logo-icon {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  color: white;
}

.elegant-category-item:hover .category-logo-icon {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
  color: white;
  border-color: var(--primary-blue);
  transform: scale(1.08) rotate(5deg);
  box-shadow: 0 4px 12px rgba(30, 64, 175, 0.35);
}

.elegant-category-item.featured-category:hover .category-logo-icon {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  color: white;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.category-name-text {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  position: relative;
  z-index: 2;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.elegant-category-item.featured-category .category-name-text {
  color: white;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.elegant-category-item:hover .category-name-text {
  color: var(--primary-blue);
}

.elegant-category-item.featured-category:hover .category-name-text {
  color: white;
}

/* Premium Product Grid */
.product-grid-premium {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 32px;
}

/* Premium Features */
.premium-features-section {
  background: var(--bg-primary);
  padding: 24px 0;
}

.premium-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.premium-feature-card {
  background: var(--bg-card);
  border: 2px solid var(--border-light);
  border-radius: 20px;
  padding: 48px 36px;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: var(--shadow-sm);
}

.premium-feature-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-blue);
  box-shadow: var(--shadow-primary), var(--shadow-xl);
}

.feature-icon-premium {
  width: 100px;
  height: 100px;
  margin: 0 auto 32px;
  background: var(--gradient-primary);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 44px;
  color: white;
  box-shadow: var(--shadow-primary);
  transition: all 0.4s ease;
}

.premium-feature-card:hover .feature-icon-premium {
  transform: scale(1.1) rotate(5deg);
}

.premium-feature-card h3 {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}

.premium-feature-card p {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.65;
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* Premium Stats */
.premium-stats-section {
  background: var(--bg-secondary);
  padding: 24px 0;
}

.premium-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.premium-stat-card {
  background: var(--bg-card);
  border: 2px solid var(--border-light);
  border-radius: 24px;
  padding: 60px 40px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.premium-stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.premium-stat-card:hover::before {
  transform: scaleX(1);
}

.premium-stat-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-blue);
  box-shadow: var(--shadow-primary), var(--shadow-xl);
}

.stat-icon-premium {
  width: 80px;
  height: 80px;
  margin: 0 auto 28px;
  background: rgba(30, 64, 175, 0.1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: var(--primary-blue);
  transition: all 0.4s ease;
}

.premium-stat-card:hover .stat-icon-premium {
  background: var(--gradient-primary);
  color: white;
  transform: scale(1.1);
}

.premium-stat-card .stat-number-premium {
  font-size: 56px;
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  display: block;
  letter-spacing: -0.02em;
}

.premium-stat-card .stat-label-premium {
  font-size: 20px;
  color: var(--text-secondary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* How It Works Premium */
.how-it-works-section-premium {
  background: var(--bg-secondary);
}

.how-it-works-grid-premium {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 50px;
  max-width: 1300px;
  margin: 0 auto;
}

.how-it-works-card-premium {
  position: relative;
  background: var(--bg-card);
  border: 2px solid var(--border-light);
  border-radius: 24px;
  padding: 60px 40px;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: var(--shadow-sm);
}

.how-it-works-card-premium:hover {
  transform: translateY(-12px);
  border-color: var(--primary-blue);
  box-shadow: var(--shadow-primary), var(--shadow-xl);
}

.step-number-premium {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 900;
  color: white;
  box-shadow: var(--shadow-premium);
  border: 4px solid var(--bg-card);
}

.step-icon-premium {
  width: 120px;
  height: 120px;
  margin: 40px auto 32px;
  background: rgba(30, 64, 175, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
  color: var(--primary-blue);
  transition: all 0.4s ease;
}

.how-it-works-card-premium:hover .step-icon-premium {
  background: var(--gradient-primary);
  color: white;
  transform: scale(1.1);
}

.how-it-works-card-premium h3 {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}

.how-it-works-card-premium p {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* Premium CTA */
.premium-cta-section {
  position: relative;
  padding: 24px 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-dark);
}

.cta-background-premium {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.cta-gradient-premium {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-hero);
  opacity: 0.95;
}

.cta-content-premium {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-title-premium {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
  letter-spacing: 0;
  line-height: 1.4;
}

.cta-description-premium {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 28px;
  line-height: 1.7;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.cta-actions-premium {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-cta-premium {
  padding: 22px 44px;
  border-radius: 16px;
  font-size: 18px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  text-decoration: none;
  letter-spacing: -0.01em;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn-cta-primary-premium {
  background: var(--gradient-primary);
  color: var(--text-light);
  border: 3px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 24px rgba(30, 64, 175, 0.4), 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.btn-cta-primary-premium:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(30, 64, 175, 0.5), 0 0 0 5px rgba(30, 64, 175, 0.15);
  filter: brightness(1.1);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-cta-secondary-premium {
  background: var(--bg-card);
  color: var(--text-primary);
  border: 3px solid var(--primary-blue);
  box-shadow: 0 6px 20px rgba(30, 64, 175, 0.25);
}

.btn-cta-secondary-premium:hover {
  border-color: var(--accent-orange);
  background: var(--bg-hover);
  color: var(--accent-orange);
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(234, 88, 12, 0.3);
}

/* Featured Accounts Section */
.featured-accounts-section {
  background: var(--bg-primary);
  padding: 24px 0;
}

.popular-accounts-section {
  background: var(--bg-secondary);
  padding: 24px 0;
}

.latest-accounts-section {
  background: var(--bg-primary);
  padding: 24px 0;
}

.recommended-section-premium {
  background: var(--bg-secondary);
  padding: 24px 0;
}

/* Category Link Primary */
.category-link-primary {
  background: var(--gradient-primary) !important;
  color: var(--text-light) !important;
  font-weight: 800 !important;
  border: 3px solid rgba(255, 255, 255, 0.2) !important;
  box-shadow: 0 6px 20px rgba(30, 64, 175, 0.4), 0 0 0 2px rgba(30, 64, 175, 0.1) !important;
  position: relative;
  padding: 16px 32px !important;
  font-size: 16px !important;
}

.category-link-primary::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: var(--gradient-primary);
  border-radius: 12px;
  z-index: -1;
  opacity: 0.4;
  filter: blur(12px);
  animation: pulse-glow-premium 2s infinite;
}

@keyframes pulse-glow-premium {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.6; }
}

.category-link-primary:hover {
  transform: translateY(-4px) scale(1.05) !important;
  box-shadow: 0 10px 30px rgba(30, 64, 175, 0.5), 0 0 0 4px rgba(30, 64, 175, 0.15) !important;
  border-color: rgba(255, 255, 255, 0.3) !important;
  filter: brightness(1.1);
}

/* Responsive Premium */
@media (max-width: 1024px) {
  .hero-content-premium {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .hero-title-premium {
    font-size: 56px;
  }

  .section-title-premium {
    font-size: 40px;
  }

  .section-header-premium {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .premium-hero {
    min-height: auto;
    padding: 80px 0 60px;
  }

  .hero-title-premium {
    font-size: 32px;
  }

  .hero-description-premium {
    font-size: 18px;
  }

  .hero-actions-premium {
    flex-direction: column;
  }

  .btn-hero-premium {
    width: 100%;
    justify-content: center;
  }

  .hero-stats-premium {
    justify-content: space-around;
  }

  .minimal-category-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
  }

  .premium-features-grid {
    grid-template-columns: 1fr;
  }

  .how-it-works-grid-premium {
    grid-template-columns: 1fr;
  }

  .cta-title-premium {
    font-size: 40px;
  }

  .cta-description-premium {
    font-size: 18px;
  }

  .cta-actions-premium {
    flex-direction: column;
  }

  .btn-cta-premium {
    width: 100%;
    justify-content: center;
  }

  .section-title-premium {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .hero-title-premium {
    font-size: 32px;
  }

  .section-title-premium {
    font-size: 28px;
  }

  .section-title-premium i {
    font-size: 28px;
  }

  .minimal-category-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 10px;
  }

  .elegant-category-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
  }

  .elegant-category-item {
    padding: 10px 14px;
    min-height: 56px;
    gap: 10px;
  }

  .category-logo-image,
  .category-logo-icon {
    width: 40px;
    height: 40px;
  }

  .category-logo-icon {
    font-size: 18px;
  }

  .category-name-text {
    font-size: 13px;
  }
}

@media (max-width: 640px) {
  .elegant-category-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 8px;
  }

  .elegant-category-item {
    padding: 10px 12px;
    min-height: 52px;
    gap: 8px;
  }

  .category-logo-image,
  .category-logo-icon {
    width: 36px;
    height: 36px;
  }

  .category-logo-icon {
    font-size: 16px;
  }

  .category-name-text {
    font-size: 12px;
  }
}

/* ============================================
   MODERN USER SIDEBAR STYLES
   ============================================ */

.user-sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 280px;
    height: 100vh;
    background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
    border-right: 1px solid var(--border-dark);
    display: flex;
    flex-direction: column;
    z-index: 1000;
    overflow-y: auto;
    overflow-x: hidden;
    transition: transform 0.3s ease;
}

.user-sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.user-sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.user-sidebar-header {
    padding: 24px 20px;
    border-bottom: 1px solid var(--border-dark);
    background: rgba(30, 64, 175, 0.05);
}

.user-sidebar-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.user-sidebar-logo:hover {
    transform: translateX(4px);
}

.user-sidebar-logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
}

.user-sidebar-logo-text {
    flex: 1;
}

.user-sidebar-logo-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 2px;
}

.user-sidebar-logo-subtitle {
    font-size: 11px;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.user-sidebar-nav {
    flex: 1;
    padding: 16px 0;
    overflow-y: auto;
}

.user-sidebar-section {
    margin-bottom: 24px;
}

.user-sidebar-section-title {
    padding: 12px 20px 8px 20px;
    font-size: 11px;
    font-weight: 800;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.user-sidebar-section-title::after {
    content: "";
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--border-dark) 0%, transparent 100%);
    margin-left: 8px;
}

.user-sidebar-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    color: var(--text-gray);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    font-weight: 600;
    font-size: 14px;
    border-radius: 12px;
    margin: 4px 12px;
    overflow: hidden;
}

.user-sidebar-link::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary-blue);
    transform: scaleY(0);
    transition: transform 0.3s ease;
    border-radius: 0 4px 4px 0;
}

.user-sidebar-link i {
    width: 24px;
    height: 24px;
    font-size: 18px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(30, 64, 175, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.user-sidebar-link:hover {
    color: var(--text-light);
    background: linear-gradient(90deg, rgba(30, 64, 175, 0.15) 0%, rgba(30, 64, 175, 0.05) 100%);
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.2);
}

.user-sidebar-link:hover i {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.4);
}

.user-sidebar-link.active {
    color: var(--text-light);
    background: linear-gradient(90deg, rgba(30, 64, 175, 0.25) 0%, rgba(30, 64, 175, 0.1) 100%);
    box-shadow: 0 4px 16px rgba(30, 64, 175, 0.3);
}

.user-sidebar-link.active::before {
    transform: scaleY(1);
}

.user-sidebar-link.active i {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.4);
}

.user-sidebar-badge {
    margin-left: auto;
    background: linear-gradient(135deg, var(--error) 0%, #dc2626 100%);
    color: white;
    font-size: 11px;
    font-weight: 800;
    padding: 5px 10px;
    border-radius: 12px;
    min-width: 24px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.4);
    animation: pulse 2s infinite;
}

.user-sidebar-footer {
    padding: 20px;
    border-top: 1px solid var(--border-dark);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.user-sidebar-footer-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    color: var(--text-gray);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
}

.user-sidebar-footer-link:hover {
    background: rgba(30, 64, 175, 0.1);
    color: var(--text-light);
}

.user-sidebar-footer-link-danger {
    color: var(--error);
}

.user-sidebar-footer-link-danger:hover {
    background: rgba(239, 68, 68, 0.1);
    color: var(--error);
}

/* Mobile Responsive for User Sidebar */
@media (max-width: 1024px) {
    .user-sidebar {
        transform: translateX(-100%);
    }
    
    .user-sidebar.active {
        transform: translateX(0);
    }
}

.modern-stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.modern-stat-card:hover::before {
  transform: scaleX(1);
}

.modern-stat-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-orange);
  box-shadow: 0 12px 32px rgba(110, 231, 69, 0.2);
}

.stat-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: rgba(110, 231, 69, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--accent-orange);
}

.modern-stat-card .stat-number {
  font-size: 48px;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  display: block;
}

.modern-stat-card .stat-label {
  font-size: 18px;
  color: var(--text-gray);
}

/* How It Works Section */
.how-it-works-section {
  padding: 80px 0;
  background: var(--dark-card);
}

.how-it-works-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.how-it-works-card {
  position: relative;
  background: var(--dark-bg);
  border: 1px solid var(--border-dark);
  border-radius: 20px;
  padding: 50px 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.how-it-works-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-orange);
  box-shadow: 0 16px 40px rgba(110, 231, 69, 0.2);
}

.step-number {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  color: white;
  box-shadow: 0 4px 16px rgba(0, 196, 255, 0.4);
}

.step-icon {
  width: 100px;
  height: 100px;
  margin: 30px auto 24px;
  background: rgba(110, 231, 69, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--accent-orange);
  transition: all 0.3s ease;
}

.how-it-works-card:hover .step-icon {
  background: rgba(110, 231, 69, 0.2);
  transform: scale(1.1);
}

.how-it-works-card h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 16px;
}

.how-it-works-card p {
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.7;
}

/* Modern Reviews Section */
.modern-reviews-section {
  padding: 80px 0;
  background: var(--dark-card);
}

.modern-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.modern-review-card {
  background: var(--dark-bg);
  border: 1px solid var(--border-dark);
  border-radius: 16px;
  padding: 24px;
  transition: all 0.3s ease;
}

.modern-review-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-orange);
  box-shadow: 0 12px 32px rgba(110, 231, 69, 0.15);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.review-avatar {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  color: white;
  flex-shrink: 0;
}

.review-user-info {
  flex: 1;
}

.review-username {
  font-weight: 600;
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 6px;
}

.review-stars {
  color: var(--accent-orange);
  font-size: 14px;
}

.review-product {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: var(--dark-card);
  border-radius: 10px;
  margin-bottom: 16px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.review-product:hover {
  background: rgba(110, 231, 69, 0.1);
}

.review-product img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.review-product-placeholder {
  width: 50px;
  height: 50px;
  background: var(--dark-bg);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-orange);
  font-size: 20px;
  flex-shrink: 0;
}

.review-product span {
  flex: 1;
  font-size: 14px;
  color: var(--text-light);
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.review-comment {
  color: var(--text-gray);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.review-comment-empty {
  text-align: center;
  padding: 20px;
  color: var(--text-gray);
  font-size: 13px;
  font-style: italic;
  margin: 0;
}

/* Modern CTA Section */
.modern-cta-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.cta-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.cta-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  opacity: 0.1;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-size: 48px;
  font-weight: 800;
  color: var(--text-light);
  margin-bottom: 20px;
}

.cta-description {
  font-size: 20px;
  color: var(--text-gray);
  margin-bottom: 40px;
  line-height: 1.6;
}

.cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-cta {
  padding: 18px 36px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-cta-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 8px 24px rgba(0, 196, 255, 0.3);
}

.btn-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 196, 255, 0.4);
}

.btn-cta-secondary {
  background: var(--dark-card);
  color: var(--text-light);
  border: 2px solid var(--border-dark);
}

.btn-cta-secondary:hover {
  border-color: var(--accent-orange);
  background: rgba(110, 231, 69, 0.1);
  color: var(--accent-orange);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-title {
    font-size: 32px;
  }

  .section-title-modern {
    font-size: 28px;
  }

  .section-header-modern {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .modern-hero {
    min-height: auto;
    padding: 60px 0 40px;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-description {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn-hero {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    justify-content: space-around;
  }

  .modern-category-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
  }

  .modern-features-grid {
    grid-template-columns: 1fr;
  }

  .how-it-works-grid {
    grid-template-columns: 1fr;
  }

  .modern-reviews-grid {
    grid-template-columns: 1fr;
  }

  .cta-title {
    font-size: 32px;
  }

  .cta-description {
    font-size: 16px;
  }

  .cta-actions {
    flex-direction: column;
  }

  .btn-cta {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 28px;
  }

  .section-title-modern {
    font-size: 24px;
  }

  .section-title-modern i {
    font-size: 24px;
  }

  .modern-category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================
   PREMIUM HOMEPAGE STYLES - OYUN HESAPLARI
   ============================================ */

/* Premium Hero Section */
.premium-hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  padding: 80px 0;
  overflow: hidden;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-dark);
}

.hero-background-premium {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-gradient-premium {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-hero);
  opacity: 0.98;
}

.hero-pattern-premium {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 40% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  animation: heroPatternMove 25s ease-in-out infinite;
}

.hero-content-premium {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-text-premium {
  animation: fadeInUp 0.8s ease;
}

.hero-badge-premium {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  color: var(--text-light);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 32px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  animation: fadeInDown 0.6s ease;
}

.hero-badge-premium i {
  color: #fbbf24;
  font-size: 18px;
  animation: pulse 2s infinite;
}

.hero-title-premium {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 24px;
  color: var(--text-primary);
  letter-spacing: 0;
}

.gradient-text-premium {
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}

.hero-description-premium {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 600px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.hero-actions-premium {
  display: flex;
  gap: 24px;
  margin-bottom: 80px;
  flex-wrap: wrap;
}

.btn-hero-premium {
  padding: 22px 44px;
  border-radius: 16px;
  font-size: 18px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  text-decoration: none;
  letter-spacing: -0.01em;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn-hero-premium.btn-primary-premium {
  background: var(--gradient-primary);
  color: var(--text-light);
  border: 3px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 24px rgba(30, 64, 175, 0.4), 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.btn-hero-premium.btn-primary-premium:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(30, 64, 175, 0.5), 0 0 0 5px rgba(30, 64, 175, 0.15);
  filter: brightness(1.1);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-hero-premium.btn-secondary-premium {
  background: var(--bg-card);
  color: var(--text-primary);
  border: 3px solid var(--primary-blue);
  box-shadow: 0 6px 20px rgba(30, 64, 175, 0.25);
}

.btn-hero-premium.btn-secondary-premium:hover {
  border-color: var(--accent-orange);
  background: var(--bg-hover);
  color: var(--accent-orange);
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(234, 88, 12, 0.3);
}

.hero-stats-premium {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

.hero-stat-item-premium {
  text-align: left;
}

.hero-stat-item-premium .stat-number-premium {
  font-size: 40px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
  display: block;
  letter-spacing: -0.02em;
}

.hero-stat-item-premium .stat-label-premium {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-visual-premium {
  position: relative;
  animation: fadeInRight 0.8s ease;
}

.hero-slider-premium {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  border: 3px solid rgba(255, 255, 255, 0.2);
}

.hero-slider-premium .slider-wrapper-premium {
  position: relative;
  width: 100%;
  height: 450px;
  display: flex;
}

.hero-slider-premium .slider-item-premium {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}

.hero-slider-premium .slider-item-premium.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.hero-slider-premium .slider-item-premium img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slider-premium .slider-overlay-premium {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
}

.hero-slider-premium .slider-nav-premium {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  color: white;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.2);
  font-size: 20px;
}

.hero-slider-premium .slider-nav-premium:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: translateY(-50%) scale(1.1);
  border-color: rgba(255, 255, 255, 0.4);
}

.hero-slider-premium .slider-nav-premium.prev {
  left: 24px;
}

.hero-slider-premium .slider-nav-premium.next {
  right: 24px;
}

.hero-slider-premium .slider-controls-premium {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.hero-slider-premium .slider-dot-premium {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-slider-premium .slider-dot-premium.active {
  background: var(--text-light);
  width: 40px;
  border-radius: 7px;
  border-color: var(--text-light);
}

/* Premium Section Styles */
.section-premium {
  padding: 60px 0;
  position: relative;
}

/* ============================================
   COMPACT HOMEPAGE STYLES - BOŞLUK YOK
   ============================================ */

/* Compact Hero */
.compact-hero {
  background: var(--bg-secondary);
  padding: 24px 0;
  border-bottom: 1px solid var(--border-dark);
  position: relative;
  overflow: hidden;
}

.compact-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(30, 64, 175, 0.08) 0%, transparent 70%);
  animation: float 10s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.compact-hero::after {
  content: "";
  position: absolute;
  bottom: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.06) 0%, transparent 70%);
  animation: float 15s ease-in-out infinite reverse;
  pointer-events: none;
  z-index: 0;
}

.compact-hero > .container {
  position: relative;
  z-index: 1;
}

.hero-content-compact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.hero-text-compact {
  animation: fadeInUp 0.6s ease;
}

.hero-title-compact {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 16px;
  color: var(--text-primary);
  letter-spacing: 0;
}

.hero-description-compact {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.hero-actions-compact {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-hero-compact {
  padding: 10px 20px;
  border-radius: 12px;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  text-decoration: none;
  letter-spacing: 0.02em;
}

.btn-hero-compact.btn-primary-compact {
  background: var(--gradient-primary);
  color: var(--text-light);
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 6px 20px rgba(30, 64, 175, 0.35);
}

.btn-hero-compact.btn-primary-compact:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(30, 64, 175, 0.45);
  filter: brightness(1.1);
}

.btn-hero-compact.btn-secondary-compact {
  background: var(--bg-card);
  color: var(--text-primary);
  border: 2px solid var(--primary-blue);
  box-shadow: 0 4px 12px rgba(30, 64, 175, 0.2);
}

.btn-hero-compact.btn-secondary-compact:hover {
  border-color: var(--accent-orange);
  color: var(--accent-orange);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(234, 88, 12, 0.25);
}

.hero-slider-compact {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  height: 220px;
  display: block;
  width: 100%;
}

.slider-wrapper-compact {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
}

.slider-item-compact {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
  display: block;
  visibility: hidden;
}

.slider-item-compact.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
  visibility: visible;
}

.slider-item-compact img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slider-controls-compact {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.slider-dot-compact {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.slider-dot-compact.active {
  background: var(--text-light);
  width: 30px;
  border-radius: 6px;
  border-color: var(--text-light);
}

/* Compact Sections */
.compact-section {
  padding: 24px 0;
  position: relative;
  overflow: hidden;
}

.compact-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(30, 64, 175, 0.05) 0%, transparent 70%);
  animation: float 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.compact-section::after {
  content: "";
  position: absolute;
  bottom: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.04) 0%, transparent 70%);
  animation: float 12s ease-in-out infinite reverse;
  pointer-events: none;
  z-index: 0;
}

.compact-section > .container {
  position: relative;
  z-index: 1;
}

.categories-section-compact {
  background: var(--bg-secondary);
  padding: 24px 0;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.categories-section-compact::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(30, 64, 175, 0.06) 0%, transparent 70%);
  animation: float 9s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.categories-section-compact::after {
  content: "";
  position: absolute;
  bottom: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
  animation: float 13s ease-in-out infinite reverse;
  pointer-events: none;
  z-index: 0;
}

.categories-section-compact > .container {
  position: relative;
  z-index: 1;
}

.featured-section-compact {
  background: var(--bg-primary);
  padding: 24px 0;
}

.popular-section-compact {
  background: var(--bg-secondary);
  padding: 24px 0;
}

.latest-section-compact {
  background: var(--bg-primary);
  padding: 24px 0;
}

.recommended-section-compact {
  background: var(--bg-secondary);
  padding: 24px 0;
}

.section-header-compact {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  gap: 20px;
}

.section-title-compact {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
  letter-spacing: 0;
  line-height: 1.4;
}

.btn-view-all-compact {
  padding: 12px 24px;
  background: var(--bg-card);
  border: 2px solid var(--primary-blue);
  border-radius: 10px;
  color: var(--primary-blue);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
  font-size: 15px;
  box-shadow: 0 2px 8px rgba(30, 64, 175, 0.2);
  letter-spacing: 0.01em;
}

.btn-view-all-compact:hover {
  border-color: var(--accent-orange);
  color: var(--accent-orange);
  background: rgba(234, 88, 12, 0.1);
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(234, 88, 12, 0.25);
}

/* Compact Product Grid */
.product-grid-compact {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
  width: 100%;
}

/* Compact Features */
.features-section-compact {
  background: var(--bg-secondary);
}

.features-grid-compact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.feature-item-compact {
  background: var(--bg-card);
  border: 2px solid var(--border-light);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.feature-item-compact:hover {
  transform: translateY(-4px);
  border-color: var(--primary-blue);
  box-shadow: 0 6px 16px rgba(30, 64, 175, 0.2);
}

.feature-icon-compact {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  background: var(--gradient-primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: white;
  box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
}

.feature-item-compact h3 {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}

.feature-item-compact p {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.6;
}

/* Compact How It Works */
.how-it-works-compact {
  background: var(--bg-secondary);
}

.steps-grid-compact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.step-item-compact {
  background: var(--bg-card);
  border: 2px solid var(--border-light);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.step-item-compact:hover {
  transform: translateY(-4px);
  border-color: var(--primary-blue);
  box-shadow: 0 6px 16px rgba(30, 64, 175, 0.2);
}

.step-number-compact {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 18px;
  box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
}

.step-icon-compact {
  width: 70px;
  height: 70px;
  margin: 20px auto 20px;
  background: rgba(30, 64, 175, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--primary-blue);
  transition: all 0.3s ease;
}

.step-item-compact:hover .step-icon-compact {
  background: var(--gradient-primary);
  color: white;
  transform: scale(1.1);
}

.step-item-compact h3 {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 21px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}

.step-item-compact p {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.6;
}

/* Compact CTA */
.cta-section-compact {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-dark);
}

.cta-content-compact {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-title-compact {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
  letter-spacing: 0;
  line-height: 1.4;
}

.cta-description-compact {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 28px;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.7;
}

.cta-actions-compact {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-cta-compact {
  padding: 16px 32px;
  border-radius: 12px;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  text-decoration: none;
  letter-spacing: 0.02em;
}

.btn-cta-primary-compact {
  background: var(--gradient-primary);
  color: var(--text-light);
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 6px 20px rgba(30, 64, 175, 0.35);
}

.btn-cta-primary-compact:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(30, 64, 175, 0.45);
  filter: brightness(1.1);
}

.btn-cta-secondary-compact {
  background: var(--bg-card);
  color: var(--text-primary);
  border: 2px solid var(--primary-blue);
  box-shadow: 0 4px 12px rgba(30, 64, 175, 0.2);
}

.btn-cta-secondary-compact:hover {
  border-color: var(--accent-orange);
  color: var(--accent-orange);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(234, 88, 12, 0.25);
}

/* Responsive Compact */
@media (max-width: 1024px) {
  .hero-content-compact {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-slider-compact {
    height: 240px;
  }

  .product-grid-compact {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
  }
  
  .minimal-category-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 10px;
  }
}

@media (max-width: 768px) {
  .compact-hero {
    padding: 24px 0;
  }

  .hero-title-compact {
    font-size: 28px;
  }

  .compact-section {
    padding: 24px 0;
  }

  .categories-section-compact,
  .featured-section-compact,
  .popular-section-compact,
  .latest-section-compact,
  .recommended-section-compact {
    padding: 24px 0;
  }

  .section-title-compact {
    font-size: 24px;
  }

  .section-header-compact {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .product-grid-compact {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 10px;
  }
  
  .minimal-category-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 10px;
  }

  .features-grid-compact {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .steps-grid-compact {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero-slider-compact {
    height: 200px;
  }
}

.section-header-premium {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  gap: 30px;
}

.section-title-premium {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0;
  letter-spacing: 0;
  line-height: 1.4;
}

.section-title-premium i {
  display: none;
}

.section-subtitle-premium {
  display: none;
}

.btn-view-all-premium {
  padding: 18px 36px;
  background: var(--bg-card);
  border: 3px solid var(--primary-blue);
  border-radius: 12px;
  color: var(--primary-blue);
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
  font-size: 16px;
  letter-spacing: -0.01em;
  box-shadow: 0 4px 12px rgba(30, 64, 175, 0.25);
}

.btn-view-all-premium:hover {
  border-color: var(--accent-orange);
  color: var(--accent-orange);
  background: rgba(234, 88, 12, 0.15);
  transform: translateX(5px);
  box-shadow: 0 6px 20px rgba(234, 88, 12, 0.3);
}

/* Minimal Categories */
.premium-categories-section {
  background: var(--bg-secondary);
  padding: 24px 0;
}

.minimal-category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 10px;
  width: 100%;
}

.minimal-category-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(30, 64, 175, 0.03) 100%);
  border: 2px solid var(--border-light);
  border-radius: 16px;
  text-decoration: none;
  color: var(--text-primary);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
  letter-spacing: 0;
  min-height: 65px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.minimal-category-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(30, 64, 175, 0.1), transparent);
  transition: left 0.5s ease;
}

.minimal-category-item:hover::before {
  left: 100%;
}

.minimal-category-item span {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.minimal-category-item:hover {
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.12) 0%, rgba(59, 130, 246, 0.08) 100%);
  border-color: var(--primary-blue);
  transform: translateY(-4px) scale(1.03);
  color: var(--primary-blue);
  box-shadow: 0 8px 20px rgba(30, 64, 175, 0.3);
}

.minimal-category-item img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
  border: 2px solid var(--border-light);
  background: var(--bg-secondary);
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.minimal-category-item:hover img {
  transform: scale(1.1) rotate(5deg);
  border-color: var(--primary-blue);
  box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
}

.minimal-category-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.15) 0%, rgba(59, 130, 246, 0.1) 100%);
  border: 2px solid var(--border-light);
  border-radius: 10px;
  color: var(--primary-blue);
  font-size: 18px;
  flex-shrink: 0;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.minimal-category-item:hover .minimal-category-icon {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
  color: white;
  border-color: var(--primary-blue);
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 4px 12px rgba(30, 64, 175, 0.4);
}

/* Elegant Categories - Itemsatış Style */
.elegant-category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 10px;
  width: 100%;
  justify-items: center;
  max-width: 95%;
  margin: 0 auto;
}

.elegant-category-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 10px 14px;
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(30, 64, 175, 0.05) 100%);
  border: 1.5px solid rgba(30, 64, 175, 0.2);
  border-radius: 12px;
  text-decoration: none;
  color: var(--text-primary);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 0.01em;
  min-height: 48px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  width: 100%;
  max-width: 100%;
}

.elegant-category-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(30, 64, 175, 0.15), transparent);
  transition: left 0.6s ease;
  z-index: 1;
}

.elegant-category-item:hover::before {
  left: 100%;
}

.elegant-category-item.featured-category {
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.3) 0%, rgba(139, 92, 246, 0.25) 50%, rgba(59, 130, 246, 0.3) 100%);
  border: 1.5px solid rgba(30, 64, 175, 0.4);
  box-shadow: 0 4px 16px rgba(30, 64, 175, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  color: var(--text-light);
}

.elegant-category-item.featured-category::before {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.elegant-category-item:hover {
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.15) 0%, rgba(59, 130, 246, 0.1) 100%);
  border-color: var(--primary-blue);
  transform: translateY(-2px);
  color: var(--text-primary);
  box-shadow: 
    0 6px 20px rgba(30, 64, 175, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.elegant-category-item.featured-category:hover {
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.4) 0%, rgba(139, 92, 246, 0.35) 50%, rgba(59, 130, 246, 0.4) 100%);
  border-color: var(--primary-blue);
  box-shadow: 
    0 8px 24px rgba(30, 64, 175, 0.4),
    0 0 0 2px rgba(255, 255, 255, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  color: var(--text-light);
  transform: translateY(-2px);
}

.category-logo-wrapper {
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.category-logo-image {
  width: 36px;
  height: 36px;
  object-fit: cover;
  border-radius: 10px;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  background: var(--bg-secondary);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.elegant-category-item.featured-category .category-logo-image {
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.elegant-category-item:hover .category-logo-image {
  transform: scale(1.08) rotate(4deg);
  border-color: var(--primary-blue);
  box-shadow: 0 4px 12px rgba(30, 64, 175, 0.35);
}

.elegant-category-item.featured-category:hover .category-logo-image {
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.category-logo-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.2) 0%, rgba(59, 130, 246, 0.15) 100%);
  border: 1.5px solid rgba(30, 64, 175, 0.3);
  border-radius: 10px;
  color: var(--primary-blue);
  font-size: 16px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 2;
}

.elegant-category-item.featured-category .category-logo-icon {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  color: white;
}

.elegant-category-item:hover .category-logo-icon {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
  color: white;
  border-color: var(--primary-blue);
  transform: scale(1.08) rotate(5deg);
  box-shadow: 0 4px 12px rgba(30, 64, 175, 0.35);
}

.elegant-category-item.featured-category:hover .category-logo-icon {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  color: white;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.category-name-text {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  position: relative;
  z-index: 2;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.elegant-category-item.featured-category .category-name-text {
  color: white;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.elegant-category-item:hover .category-name-text {
  color: var(--primary-blue);
}

.elegant-category-item.featured-category:hover .category-name-text {
  color: white;
}

/* Premium Product Grid */
.product-grid-premium {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 32px;
}

/* Premium Features */
.premium-features-section {
  background: var(--bg-primary);
  padding: 24px 0;
}

.premium-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.premium-feature-card {
  background: var(--bg-card);
  border: 2px solid var(--border-light);
  border-radius: 20px;
  padding: 48px 36px;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: var(--shadow-sm);
}

.premium-feature-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-blue);
  box-shadow: var(--shadow-primary), var(--shadow-xl);
}

.feature-icon-premium {
  width: 100px;
  height: 100px;
  margin: 0 auto 32px;
  background: var(--gradient-primary);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 44px;
  color: white;
  box-shadow: var(--shadow-primary);
  transition: all 0.4s ease;
}

.premium-feature-card:hover .feature-icon-premium {
  transform: scale(1.1) rotate(5deg);
}

.premium-feature-card h3 {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}

.premium-feature-card p {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.65;
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* Premium Stats */
.premium-stats-section {
  background: var(--bg-secondary);
  padding: 24px 0;
}

.premium-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.premium-stat-card {
  background: var(--bg-card);
  border: 2px solid var(--border-light);
  border-radius: 24px;
  padding: 60px 40px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.premium-stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.premium-stat-card:hover::before {
  transform: scaleX(1);
}

.premium-stat-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-blue);
  box-shadow: var(--shadow-primary), var(--shadow-xl);
}

.stat-icon-premium {
  width: 80px;
  height: 80px;
  margin: 0 auto 28px;
  background: rgba(30, 64, 175, 0.1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: var(--primary-blue);
  transition: all 0.4s ease;
}

.premium-stat-card:hover .stat-icon-premium {
  background: var(--gradient-primary);
  color: white;
  transform: scale(1.1);
}

.premium-stat-card .stat-number-premium {
  font-size: 56px;
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  display: block;
  letter-spacing: -0.02em;
}

.premium-stat-card .stat-label-premium {
  font-size: 20px;
  color: var(--text-secondary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* How It Works Premium */
.how-it-works-section-premium {
  background: var(--bg-secondary);
}

.how-it-works-grid-premium {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 50px;
  max-width: 1300px;
  margin: 0 auto;
}

.how-it-works-card-premium {
  position: relative;
  background: var(--bg-card);
  border: 2px solid var(--border-light);
  border-radius: 24px;
  padding: 60px 40px;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: var(--shadow-sm);
}

.how-it-works-card-premium:hover {
  transform: translateY(-12px);
  border-color: var(--primary-blue);
  box-shadow: var(--shadow-primary), var(--shadow-xl);
}

.step-number-premium {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 900;
  color: white;
  box-shadow: var(--shadow-premium);
  border: 4px solid var(--bg-card);
}

.step-icon-premium {
  width: 120px;
  height: 120px;
  margin: 40px auto 32px;
  background: rgba(30, 64, 175, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
  color: var(--primary-blue);
  transition: all 0.4s ease;
}

.how-it-works-card-premium:hover .step-icon-premium {
  background: var(--gradient-primary);
  color: white;
  transform: scale(1.1);
}

.how-it-works-card-premium h3 {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}

.how-it-works-card-premium p {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* Premium CTA */
.premium-cta-section {
  position: relative;
  padding: 24px 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-dark);
}

.cta-background-premium {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.cta-gradient-premium {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-hero);
  opacity: 0.95;
}

.cta-content-premium {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-title-premium {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
  letter-spacing: 0;
  line-height: 1.4;
}

.cta-description-premium {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 28px;
  line-height: 1.7;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.cta-actions-premium {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-cta-premium {
  padding: 22px 44px;
  border-radius: 16px;
  font-size: 18px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  text-decoration: none;
  letter-spacing: -0.01em;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn-cta-primary-premium {
  background: var(--gradient-primary);
  color: var(--text-light);
  border: 3px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 24px rgba(30, 64, 175, 0.4), 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.btn-cta-primary-premium:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(30, 64, 175, 0.5), 0 0 0 5px rgba(30, 64, 175, 0.15);
  filter: brightness(1.1);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-cta-secondary-premium {
  background: var(--bg-card);
  color: var(--text-primary);
  border: 3px solid var(--primary-blue);
  box-shadow: 0 6px 20px rgba(30, 64, 175, 0.25);
}

.btn-cta-secondary-premium:hover {
  border-color: var(--accent-orange);
  background: var(--bg-hover);
  color: var(--accent-orange);
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(234, 88, 12, 0.3);
}

/* Featured Accounts Section */
.featured-accounts-section {
  background: var(--bg-primary);
  padding: 24px 0;
}

.popular-accounts-section {
  background: var(--bg-secondary);
  padding: 24px 0;
}

.latest-accounts-section {
  background: var(--bg-primary);
  padding: 24px 0;
}

.recommended-section-premium {
  background: var(--bg-secondary);
  padding: 24px 0;
}

/* Category Link Primary */
.category-link-primary {
  background: var(--gradient-primary) !important;
  color: var(--text-light) !important;
  font-weight: 800 !important;
  border: 3px solid rgba(255, 255, 255, 0.2) !important;
  box-shadow: 0 6px 20px rgba(30, 64, 175, 0.4), 0 0 0 2px rgba(30, 64, 175, 0.1) !important;
  position: relative;
  padding: 16px 32px !important;
  font-size: 16px !important;
}

.category-link-primary::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: var(--gradient-primary);
  border-radius: 12px;
  z-index: -1;
  opacity: 0.4;
  filter: blur(12px);
  animation: pulse-glow-premium 2s infinite;
}

@keyframes pulse-glow-premium {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.6; }
}

.category-link-primary:hover {
  transform: translateY(-4px) scale(1.05) !important;
  box-shadow: 0 10px 30px rgba(30, 64, 175, 0.5), 0 0 0 4px rgba(30, 64, 175, 0.15) !important;
  border-color: rgba(255, 255, 255, 0.3) !important;
  filter: brightness(1.1);
}

/* Responsive Premium */
@media (max-width: 1024px) {
  .hero-content-premium {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .hero-title-premium {
    font-size: 56px;
  }

  .section-title-premium {
    font-size: 40px;
  }

  .section-header-premium {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .premium-hero {
    min-height: auto;
    padding: 80px 0 60px;
  }

  .hero-title-premium {
    font-size: 32px;
  }

  .hero-description-premium {
    font-size: 18px;
  }

  .hero-actions-premium {
    flex-direction: column;
  }

  .btn-hero-premium {
    width: 100%;
    justify-content: center;
  }

  .hero-stats-premium {
    justify-content: space-around;
  }

  .minimal-category-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
  }

  .premium-features-grid {
    grid-template-columns: 1fr;
  }

  .how-it-works-grid-premium {
    grid-template-columns: 1fr;
  }

  .cta-title-premium {
    font-size: 40px;
  }

  .cta-description-premium {
    font-size: 18px;
  }

  .cta-actions-premium {
    flex-direction: column;
  }

  .btn-cta-premium {
    width: 100%;
    justify-content: center;
  }

  .section-title-premium {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .hero-title-premium {
    font-size: 32px;
  }

  .section-title-premium {
    font-size: 28px;
  }

  .section-title-premium i {
    font-size: 28px;
  }

  .minimal-category-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 10px;
  }

  .elegant-category-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
  }

  .elegant-category-item {
    padding: 10px 14px;
    min-height: 56px;
    gap: 10px;
  }

  .category-logo-image,
  .category-logo-icon {
    width: 40px;
    height: 40px;
  }

  .category-logo-icon {
    font-size: 18px;
  }

  .category-name-text {
    font-size: 13px;
  }
}

@media (max-width: 640px) {
  .elegant-category-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 8px;
  }

  .elegant-category-item {
    padding: 10px 12px;
    min-height: 52px;
    gap: 8px;
  }

  .category-logo-image,
  .category-logo-icon {
    width: 36px;
    height: 36px;
  }

  .category-logo-icon {
    font-size: 16px;
  }

  .category-name-text {
    font-size: 12px;
  }
}

/* ============================================
   MODERN USER SIDEBAR STYLES
   ============================================ */

.user-sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 280px;
    height: 100vh;
    background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
    border-right: 1px solid var(--border-dark);
    display: flex;
    flex-direction: column;
    z-index: 1000;
    overflow-y: auto;
    overflow-x: hidden;
    transition: transform 0.3s ease;
}

.user-sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.user-sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.user-sidebar-header {
    padding: 24px 20px;
    border-bottom: 1px solid var(--border-dark);
    background: rgba(30, 64, 175, 0.05);
}

.user-sidebar-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.user-sidebar-logo:hover {
    transform: translateX(4px);
}

.user-sidebar-logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
}

.user-sidebar-logo-text {
    flex: 1;
}

.user-sidebar-logo-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 2px;
}

.user-sidebar-logo-subtitle {
    font-size: 11px;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.user-sidebar-nav {
    flex: 1;
    padding: 16px 0;
    overflow-y: auto;
}

.user-sidebar-section {
    margin-bottom: 24px;
}

.user-sidebar-section-title {
    padding: 12px 20px 8px 20px;
    font-size: 11px;
    font-weight: 800;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.user-sidebar-section-title::after {
    content: "";
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--border-dark) 0%, transparent 100%);
    margin-left: 8px;
}

.user-sidebar-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    color: var(--text-gray);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    font-weight: 600;
    font-size: 14px;
    border-radius: 12px;
    margin: 4px 12px;
    overflow: hidden;
}

.user-sidebar-link::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary-blue);
    transform: scaleY(0);
    transition: transform 0.3s ease;
    border-radius: 0 4px 4px 0;
}

.user-sidebar-link i {
    width: 24px;
    height: 24px;
    font-size: 18px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(30, 64, 175, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.user-sidebar-link:hover {
    color: var(--text-light);
    background: linear-gradient(90deg, rgba(30, 64, 175, 0.15) 0%, rgba(30, 64, 175, 0.05) 100%);
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.2);
}

.user-sidebar-link:hover i {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.4);
}

.user-sidebar-link.active {
    color: var(--text-light);
    background: linear-gradient(90deg, rgba(30, 64, 175, 0.25) 0%, rgba(30, 64, 175, 0.1) 100%);
    box-shadow: 0 4px 16px rgba(30, 64, 175, 0.3);
}

.user-sidebar-link.active::before {
    transform: scaleY(1);
}

.user-sidebar-link.active i {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.4);
}

.user-sidebar-badge {
    margin-left: auto;
    background: linear-gradient(135deg, var(--error) 0%, #dc2626 100%);
    color: white;
    font-size: 11px;
    font-weight: 800;
    padding: 5px 10px;
    border-radius: 12px;
    min-width: 24px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.4);
    animation: pulse 2s infinite;
}

.user-sidebar-footer {
    padding: 20px;
    border-top: 1px solid var(--border-dark);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.user-sidebar-footer-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    color: var(--text-gray);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
}

.user-sidebar-footer-link:hover {
    background: rgba(30, 64, 175, 0.1);
    color: var(--text-light);
}

.user-sidebar-footer-link-danger {
    color: var(--error);
}

.user-sidebar-footer-link-danger:hover {
    background: rgba(239, 68, 68, 0.1);
    color: var(--error);
}

/* Mobile Responsive for User Sidebar */
@media (max-width: 1024px) {
    .user-sidebar {
        transform: translateX(-100%);
    }
    
    .user-sidebar.active {
        transform: translateX(0);
    }
}

