/* ═══════════════════════════════════════════
   2026 ULTRA MODERN THEME
   Complete Redesign - Nothing Left from Old
   ═══════════════════════════════════════════ */

/* CSS Variables - 2026 Color Palette */
:root {
  --primary: #6366f1;
  --primary-light: #818cf8;
  --primary-dark: #4f46e5;
  --secondary: #06b6d4;
  --accent: #8b5cf6;
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;

  --bg-dark: #0a0a0f;
  --bg-card: #12121a;
  --bg-card-hover: #1a1a25;
  --bg-glass: rgba(255, 255, 255, 0.03);
  --bg-glass-hover: rgba(255, 255, 255, 0.06);

  --text-primary: #ffffff;
  --text-secondary: #a1a1aa;
  --text-muted: #71717a;

  --border-color: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(99, 102, 241, 0.3);

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 30px rgba(99, 102, 241, 0.15);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --transition-fast: 0.15s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* ════════════════════════════════════════
   LIGHT MODE (Gündüz Modu)
   ════════════════════════════════════════ */
[data-theme="light"] {
  /* Açık Pastel Vurgu Renkleri */
  --primary: #818cf8;
  --primary-light: #a5b4fc;
  --primary-dark: #6366f1;
  --secondary: #22d3ee;
  --accent: #a78bfa;

  /* Arka Planlar - Beyaz */
  --bg-dark: #ffffff;
  --bg-card: #ffffff;
  --bg-card-hover: #f8f9fa;
  --bg-glass: rgba(0, 0, 0, 0.02);
  --bg-glass-hover: rgba(0, 0, 0, 0.05);

  /* Yazılar - Koyu (Okunabilir) */
  --text-primary: #1e293b;
  --text-secondary: #334155;
  --text-muted: #64748b;

  /* Kenarlıklar */
  --border-color: rgba(0, 0, 0, 0.08);
  --border-hover: rgba(129, 140, 248, 0.4);

  /* Gölgeler - Hafif */
  --shadow-sm: 0 1px 4px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.08);
  --shadow-glow: 0 0 20px rgba(129, 140, 248, 0.1);
}

/* Light Mode - Navbar */
[data-theme="light"] .navbar {
  background: rgba(255, 255, 255, 0.85) !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .navbar-brand {
  color: #1a1a2e !important;
}

[data-theme="light"] .nav-link {
  color: #4a4a5a !important;
}

[data-theme="light"] .nav-link:hover {
  color: #1a1a2e !important;
  background: rgba(0, 0, 0, 0.04);
}

/* Light Mode - Dropdown */
[data-theme="light"] .dropdown-menu {
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

[data-theme="light"] .dropdown-item {
  color: #4a4a5a;
}

[data-theme="light"] .dropdown-item:hover {
  background: rgba(99, 102, 241, 0.08);
  color: #1a1a2e;
}

/* Light Mode - Nav Action Buttons */
[data-theme="light"] .nav-action-btn {
  color: #4a4a5a;
  background: rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .nav-action-btn:hover {
  color: #fff;
}

/* Light Mode - Cards & Sections */
[data-theme="light"] .product-card,
[data-theme="light"] .blog-card,
[data-theme="light"] .stat-card,
[data-theme="light"] .feature-card {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .product-card:hover,
[data-theme="light"] .blog-card:hover {
  background: #f8f9fa;
  border-color: var(--primary);
}

/* Light Mode - Hero Section */
[data-theme="light"] .hero-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Light Mode - Footer */
[data-theme="light"] .footer-modern {
  background: #1a1a2e;
  color: #e2e8f0;
}

[data-theme="light"] .footer-modern .footer-title,
[data-theme="light"] .footer-modern .footer-brand a,
[data-theme="light"] .footer-modern .newsletter-title {
  color: #fff !important;
}

/* Light Mode - Page Title */
[data-theme="light"] .page-title-overlap {
  background: linear-gradient(135deg, var(--primary), var(--accent)) !important;
}

/* Light Mode - Customer Panel */
[data-theme="light"] .bg-light {
  background: #ffffff !important;
}

[data-theme="light"] .sidebar-modern,
[data-theme="light"] .musteri-sidebar {
  background: #f8f9fa;
}

/* Light Mode - Text overrides */
[data-theme="light"] h1,
[data-theme="light"] h2,
[data-theme="light"] h3,
[data-theme="light"] h4,
[data-theme="light"] h5,
[data-theme="light"] h6 {
  color: #1a1a2e;
}

[data-theme="light"] p,
[data-theme="light"] span,
[data-theme="light"] div,
[data-theme="light"] label,
[data-theme="light"] li {
  color: var(--text-secondary);
}

/* Light Mode - Buttons */
[data-theme="light"] .btn-outline-accent {
  border-color: var(--accent);
  color: var(--accent);
}

/* Light Mode - Mobile Bottom Toolbar */
[data-theme="light"] .handheld-toolbar {
  background: rgba(255, 255, 255, 0.95);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .handheld-toolbar-icon {
  color: #4a4a5a;
}

[data-theme="light"] .handheld-toolbar-label {
  color: #4a4a5a;
}

/* Light Mode - Form Controls */
[data-theme="light"] .form-control,
[data-theme="light"] .form-select {
  background-color: #ffffff !important;
  border-color: #dee2e6 !important;
  color: #1a1a2e !important;
}

/* ── Theme Toggle Button ── */
.theme-toggle-btn {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  border: none;
  background: var(--bg-glass);
  color: var(--text-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.theme-toggle-btn:hover {
  background: var(--primary);
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.4);
}

.theme-toggle-btn .fa-sun {
  display: none;
}

.theme-toggle-btn .fa-moon {
  display: inline-block;
}

[data-theme="light"] .theme-toggle-btn .fa-sun {
  display: inline-block;
}

[data-theme="light"] .theme-toggle-btn .fa-moon {
  display: none;
}

/* Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

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

/* ════════════════════════════════════════
   FULL-WIDTH LAYOUT - Kenardan Kenara
   ════════════════════════════════════════ */
.container {
  max-width: 100% !important;
  padding-left: 2rem;
  padding-right: 2rem;
}

@media (max-width: 767px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* Ürün Grid - Sadece CSS grid sayfalar için (carousel'e dokunma!) */

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

img {
  max-width: 100%;
  height: auto;
}

/* ════════════════════════════════════════
   NAVBAR - 2026 Modern Design
   ════════════════════════════════════════ */
.navbar {
  background: rgba(10, 10, 15, 0.8) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0.75rem 0;
}

.navbar-brand {
  max-width: 180px;
  flex-shrink: 0;
}

.navbar-brand img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 0 20px rgba(99, 102, 241, 0.3));
  transition: all var(--transition-normal);
}

.navbar-brand img:hover {
  filter: drop-shadow(0 0 30px rgba(99, 102, 241, 0.5));
  transform: scale(1.05);
}

.navbar-collapse {
  flex-grow: 1;
  overflow: visible;
}

.navbar-nav {
  /* overflow ayarları dropdown menülerin görünmesini engellediği için kaldırıldı. Bootstrap varsayılanları geçerli olacak. */
}

.navbar-nav::-webkit-scrollbar {
  display: none;
}

.nav-item {
  flex-shrink: 0;
  white-space: nowrap;
}

.nav-link {
  color: var(--text-secondary) !important;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.5rem 0.85rem !important;
  border-radius: var(--radius-md);
  transition: all var(--transition-normal);
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--text-primary) !important;
  background: var(--bg-glass);
}

.nav-link.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.nav-link.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0;
  vertical-align: middle;
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}

.dropdown-menu {
  background: rgba(18, 18, 26, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 0.5rem;
  margin-top: 0.5rem;
  min-width: 220px;
  max-height: 400px;
  overflow-y: auto;
}

.dropdown-menu::-webkit-scrollbar {
  width: 6px;
}

.dropdown-menu::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
}

.dropdown-menu::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 3px;
}

.dropdown-item {
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  padding: 0.6rem 1rem;
  font-size: 0.9rem;
  transition: all var(--transition-fast);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

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

.dropdown-item:active {
  background: rgba(99, 102, 241, 0.15);
  color: var(--primary-light);
}

/* Navbar Actions */
.navbar-tool {
  background: var(--bg-glass) !important;
  border: 1px solid var(--border-color) !important;
  border-radius: var(--radius-md) !important;
  padding: 0.5rem 0.85rem !important;
  font-size: 0.9rem !important;
  transition: all var(--transition-normal) !important;
  white-space: nowrap;
}

.navbar-tool:hover {
  background: rgba(99, 102, 241, 0.15) !important;
  border-color: var(--border-hover) !important;
  transform: translateY(-2px);
}

/* Responsive Navbar */
@media (max-width: 991px) {
  .navbar {
    padding: 0.5rem 0;
  }

  .navbar-brand {
    max-width: 150px;
  }

  .navbar-collapse {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(18, 18, 26, 0.95);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
  }

  .navbar-nav {
    flex-direction: column;
    overflow: visible;
  }

  .nav-item {
    width: 100%;
  }

  .nav-link {
    padding: 0.75rem 1rem !important;
  }

  .dropdown-menu {
    position: static !important;
    transform: none !important;
    border: none;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.03);
    margin-top: 0.5rem;
  }
}

/* ════════════════════════════════════════
   HERO SECTION - 2026 Premium
   ════════════════════════════════════════ */
.premium-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-dark) 0%, #0f0f1a 50%, #0a0a12 100%);
}

.hero-bg-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
  animation: heroGlow 10s ease-in-out infinite alternate;
}

.hero-glow-1 {
  top: -20%;
  left: -10%;
  background: var(--primary);
}

.hero-glow-2 {
  bottom: -20%;
  right: -10%;
  background: var(--secondary);
}

@keyframes heroGlow {
  0% {
    transform: scale(1);
    opacity: 0.3;
  }

  100% {
    transform: scale(1.2);
    opacity: 0.4;
  }
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: var(--radius-full);
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  color: var(--primary-light);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  background: linear-gradient(135deg, #ffffff 0%, #c4b5fd 30%, #67e8f9 60%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.hero-description {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* Hero Buttons */
.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border: none;
  border-radius: var(--radius-md);
  padding: 0.9rem 2rem;
  font-weight: 600;
  font-size: 1rem;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 40px rgba(99, 102, 241, 0.3);
}

.btn-outline-light {
  background: transparent;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 0.9rem 2rem;
  font-weight: 600;
  font-size: 1rem;
  transition: all var(--transition-normal);
}

.btn-outline-light:hover {
  background: var(--bg-glass);
  border-color: var(--border-hover);
  transform: translateY(-3px);
}

/* Hero Search Box */
.hero-search {
  background: rgba(18, 18, 26, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.hero-search input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md) 0 0 var(--radius-md) !important;
  color: var(--text-primary);
  padding: 1rem 1.25rem;
  transition: all var(--transition-normal);
}

.hero-search input:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--border-hover);
  outline: none;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

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

.hero-search button {
  border-radius: 0 var(--radius-md) var(--radius-md) 0 !important;
  padding: 1rem 1.5rem;
}

/* Category Tags */
.category-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(99, 102, 241, 0.08);
  border: 1px solid rgba(99, 102, 241, 0.15);
  border-radius: var(--radius-full);
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  color: var(--primary-light);
  transition: all var(--transition-normal);
}

.category-tag:hover {
  background: rgba(99, 102, 241, 0.15);
  border-color: rgba(99, 102, 241, 0.3);
  transform: translateY(-2px);
}

/* Stats */
.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary-light), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.25rem;
}

/* ════════════════════════════════════════
   PRODUCT CARDS - 2026 Modern Design
   ════════════════════════════════════════ */
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-normal);
  position: relative;
}

.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(135deg, transparent, rgba(99, 102, 241, 0.2), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

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

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

.product-thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.product-thumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.product-card:hover .product-thumb-overlay {
  opacity: 1;
}

.product-actions {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  display: flex;
  gap: 0.5rem;
  opacity: 0;
  transition: all var(--transition-normal);
}

.product-card:hover .product-actions {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.product-action-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 1.1rem;
  transition: all var(--transition-normal);
}

.product-action-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: scale(1.1);
}

.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
}

.product-body {
  padding: 1.25rem;
}

.product-category {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.product-category i {
  color: var(--primary);
}

.product-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

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

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border-color);
}

.product-delivery {
  font-size: 0.8rem;
  color: var(--warning);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.product-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-light);
}

/* Star Rating */
.star-rating {
  display: flex;
  gap: 2px;
}

.star-rating i {
  color: var(--warning);
  font-size: 0.8rem;
}

/* ════════════════════════════════════════
   BLOG CARDS - 2026 Modern Design
   ════════════════════════════════════════ */
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-normal);
}

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

.blog-thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.blog-content {
  padding: 1.5rem;
}

.blog-date {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.blog-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

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

.blog-excerpt {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--primary-light);
  font-weight: 500;
  transition: all var(--transition-fast);
}

.blog-read-more:hover {
  gap: 0.75rem;
  color: var(--primary);
}

/* ════════════════════════════════════════
   FEATURES SECTION - 2026 Modern
   ════════════════════════════════════════ */
.features-section {
  background: linear-gradient(135deg, var(--bg-dark) 0%, #0f0f1a 50%, #0a0a12 100%);
  position: relative;
  overflow: hidden;
}

.features-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.3), transparent);
}

.feature-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: left;
  transition: all var(--transition-normal);
  height: 100%;
}

.feature-card:hover {
  background: rgba(99, 102, 241, 0.05);
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.feature-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(139, 92, 246, 0.15));
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: var(--radius-md);
  margin-bottom: 1.25rem;
}

.feature-icon img {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
}

.feature-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.feature-description {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* ════════════════════════════════════════
   FOOTER - 2026 Modern Design
   ════════════════════════════════════════ */
.footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), var(--secondary), transparent);
}

.footer-brand {
  margin-bottom: 1.5rem;
}

.footer-brand img {
  filter: drop-shadow(0 0 20px rgba(99, 102, 241, 0.3));
}

.footer-description {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 320px;
  margin-bottom: 1.5rem;
}

/* Social Buttons */
.btn-social {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-glass);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  font-size: 1rem;
  transition: all var(--transition-normal);
}

.btn-social:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  transform: translateY(-3px);
}

.footer-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
  opacity: 0.7;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.footer-links a:hover {
  color: var(--primary-light);
  padding-left: 5px;
}

.footer-links i {
  font-size: 0.75rem;
  color: var(--primary);
}

/* Newsletter */
.newsletter-section {
  padding: 3rem 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.newsletter-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.newsletter-subtitle {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.newsletter-form .form-control {
  background: var(--bg-glass);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md) 0 0 var(--radius-md) !important;
  color: var(--text-primary);
  padding: 0.9rem 1.25rem;
}

.newsletter-form .form-control:focus {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--border-hover);
  outline: none;
  box-shadow: none;
}

.newsletter-form .form-control::placeholder {
  color: var(--text-muted);
}

.newsletter-form .btn {
  border-radius: 0 var(--radius-md) var(--radius-md) 0 !important;
  padding: 0.9rem 1.5rem;
}

/* Footer Bottom */
.footer-bottom {
  padding: 1.5rem 0;
}

.footer-copyright {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-legal a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.footer-legal a:hover {
  color: var(--primary-light);
}

/* ════════════════════════════════════════
   MOBILE BOTTOM TOOLBAR
   ════════════════════════════════════════ */
.handheld-toolbar {
  background: rgba(10, 10, 15, 0.95) !important;
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-color);
}

.handheld-toolbar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 0.5rem;
  color: var(--text-secondary) !important;
  transition: all var(--transition-fast);
}

.handheld-toolbar-item:hover {
  color: var(--primary-light) !important;
}

.handheld-toolbar-icon {
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

.handheld-toolbar-label {
  font-size: 0.7rem;
  font-weight: 500;
}

/* ════════════════════════════════════════
   SCROLL TO TOP BUTTON
   ════════════════════════════════════════ */
.btn-scroll-top {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border: none;
  border-radius: var(--radius-md);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-glow);
  transition: all var(--transition-normal);
}

.btn-scroll-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 40px rgba(99, 102, 241, 0.3);
}

.btn-scroll-top-tooltip {
  display: none;
}

/* ════════════════════════════════════════
   SECTION HEADERS
   ════════════════════════════════════════ */
.section-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.section-accent {
  width: 4px;
  height: 32px;
  background: linear-gradient(180deg, var(--primary), var(--accent));
  border-radius: 4px;
}

.section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.section-subtitle {
  font-size: 0.9rem;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0.5rem 0 0;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: var(--radius-full);
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  color: var(--primary-light);
  margin-bottom: 1rem;
}

.section-badge i {
  color: var(--warning);
}

/* ════════════════════════════════════════
   FORM ELEMENTS
   ════════════════════════════════════════ */
.form-control {
  background: var(--bg-glass);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  padding: 0.8rem 1rem;
  transition: all var(--transition-normal);
}

.form-control:focus {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--border-hover);
  outline: none;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

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

.form-select {
  background: var(--bg-glass);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  padding: 0.8rem 1rem;
}

.form-select:focus {
  border-color: var(--border-hover);
  outline: none;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

/* ════════════════════════════════════════
   BUTTONS
   ════════════════════════════════════════ */
.btn {
  border-radius: var(--radius-md);
  font-weight: 600;
  transition: all var(--transition-normal);
}

.btn-outline-accent {
  border-color: var(--border-color);
  color: var(--text-secondary);
}

.btn-outline-accent:hover {
  background: var(--bg-glass);
  border-color: var(--border-hover);
  color: var(--text-primary);
}

/* ════════════════════════════════════════
   CARDS GENERAL
   ════════════════════════════════════════ */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
}

.card-body {
  padding: 1.5rem;
}

/* ════════════════════════════════════════
   UTILITIES
   ════════════════════════════════════════ */
.text-muted {
  color: var(--text-muted) !important;
}

.bg-faded-accent {
  background: rgba(99, 102, 241, 0.1) !important;
}

.text-accent {
  color: var(--primary-light) !important;
}

/* Scroll Reveal Animation */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════ */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .product-card {
    margin-bottom: 1rem;
  }

  .footer-brand {
    text-align: center;
  }

  .footer-description {
    margin: 0 auto 1.5rem;
  }

  .d-flex.gap-2.justify-content-center {
    justify-content: center !important;
  }
}

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

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

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

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

/* Selection */
::selection {
  background: var(--primary);
  color: white;
}

/* ════════════════════════════════════════
   COLLAPSIBLE CONTENT SECTIONS - 2026 Modern
   ════════════════════════════════════════ */
.collapsible-section {
  background: var(--bg-glass);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all var(--transition-normal);
}

.collapsible-section:hover {
  background: var(--bg-glass-hover);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-md);
}

.collapsible-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  user-select: none;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid transparent;
  transition: all var(--transition-normal);
}

.collapsible-header:hover {
  background: rgba(255, 255, 255, 0.04);
}

.collapsible-header.active {
  background: rgba(99, 102, 241, 0.08);
  border-bottom-color: var(--border-hover);
}

.collapsible-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

.collapsible-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: var(--radius-sm);
  color: white;
  font-size: 0.8rem;
  transition: transform var(--transition-normal);
}

.collapsible-header.active .collapsible-icon {
  transform: rotate(90deg);
}

.collapsible-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: all var(--transition-fast);
}

.collapsible-toggle i {
  transition: transform var(--transition-normal);
}

.collapsible-header.active .collapsible-toggle i {
  transform: rotate(180deg);
  color: var(--primary-light);
}

.collapsible-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.5rem;
  transition: all var(--transition-slow);
  opacity: 0;
}

.collapsible-content.active {
  max-height: 1000px;
  padding: 1.5rem;
  opacity: 1;
}

.collapsible-content-inner {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.collapsible-content-inner p {
  margin-bottom: 1rem;
}

.collapsible-content-inner ul,
.collapsible-content-inner ol {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.collapsible-content-inner li {
  margin-bottom: 0.5rem;
}

/* ════════════════════════════════════════
   ENHANCED GLASS EFFECTS - 2026 Premium
   ════════════════════════════════════════ */
.glass-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  transition: all var(--transition-normal);
}

.glass-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(99, 102, 241, 0.1) 0%,
      rgba(139, 92, 246, 0.05) 50%,
      rgba(6, 182, 212, 0.1) 100%);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.glass-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
  box-shadow:
    0 12px 48px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 0 40px rgba(99, 102, 241, 0.2);
}

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

.glass-card-content {
  position: relative;
  z-index: 1;
  padding: 2rem;
}

.glass-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #ffffff, #c4b5fd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glass-card-description {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.glass-card-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
  transition: all var(--transition-normal);
}

.glass-card:hover .glass-card-icon {
  background: rgba(99, 102, 241, 0.2);
  border-color: rgba(99, 102, 241, 0.3);
  transform: scale(1.1);
}

.glass-card-icon i {
  font-size: 1.5rem;
  color: var(--primary-light);
}

/* ════════════════════════════════════════
   DELIVERY INFORMATION - 2026 Modern
   ════════════════════════════════════════ */
.delivery-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-md);
  margin-top: 0.5rem;
  transition: all var(--transition-normal);
}

.delivery-info:hover {
  background: rgba(16, 185, 129, 0.15);
  border-color: rgba(16, 185, 129, 0.3);
  transform: translateY(-2px);
}

.delivery-info.instant {
  background: rgba(245, 158, 11, 0.1);
  border-color: rgba(245, 158, 11, 0.2);
}

.delivery-info.instant:hover {
  background: rgba(245, 158, 11, 0.15);
  border-color: rgba(245, 158, 11, 0.3);
}

.delivery-info.delayed {
  background: rgba(239, 68, 68, 0.1);
  border-color: rgba(239, 68, 68, 0.2);
}

.delivery-info.delayed:hover {
  background: rgba(239, 68, 68, 0.15);
  border-color: rgba(239, 68, 68, 0.3);
}

.delivery-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.delivery-info.instant .delivery-icon {
  background: rgba(245, 158, 11, 0.2);
}

.delivery-info.delayed .delivery-icon {
  background: rgba(239, 68, 68, 0.2);
}

.delivery-icon i {
  font-size: 1rem;
  color: var(--success);
}

.delivery-info.instant .delivery-icon i {
  color: var(--warning);
}

.delivery-info.delayed .delivery-icon i {
  color: var(--danger);
}

.delivery-content {
  flex: 1;
}

.delivery-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.delivery-info.instant .delivery-title {
  color: var(--warning);
}

.delivery-info.delayed .delivery-title {
  color: var(--danger);
}

.delivery-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  padding: 0.2rem 0.5rem;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-primary);
}

.delivery-info.instant .delivery-badge {
  background: rgba(245, 158, 11, 0.2);
  color: var(--warning);
}

.delivery-info.delayed .delivery-badge {
  background: rgba(239, 68, 68, 0.2);
  color: var(--danger);
}

.delivery-description {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.delivery-time {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

/* ════════════════════════════════════════
   MODERN ICONS - 2026 Professional
   ════════════════════════════════════════ */
.icon-modern {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: var(--radius-md);
  color: white;
  font-size: 1.25rem;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.icon-modern::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.icon-modern:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 0 30px rgba(99, 102, 241, 0.4);
}

.icon-modern:hover::before {
  transform: translateX(100%);
}

.icon-modern.small {
  width: 36px;
  height: 36px;
  font-size: 1rem;
}

.icon-modern.large {
  width: 64px;
  height: 64px;
  font-size: 1.5rem;
}

.icon-modern.outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.icon-modern.outline:hover {
  background: var(--primary);
  color: white;
}

/* ════════════════════════════════════════
   ANIMATIONS - 2026 Modern
   ════════════════════════════════════════ */
@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse-glow {

  0%,
  100% {
    opacity: 0.3;
  }

  50% {
    opacity: 0.6;
  }
}

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

  100% {
    background-position: 200% center;
  }
}

.float-animation {
  animation: float 3s ease-in-out infinite;
}

.pulse-glow {
  animation: pulse-glow 2s ease-in-out infinite;
}

.shimmer-text {
  background: linear-gradient(90deg,
      var(--text-primary) 0%,
      var(--primary-light) 25%,
      var(--secondary) 50%,
      var(--primary-light) 75%,
      var(--text-primary) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

/* ════════════════════════════════════════
   MINIMIZED CONTENT - 2026 Professional
   ════════════════════════════════════════ */
.minimized-content {
  max-height: 200px;
  overflow: hidden;
  position: relative;
  transition: max-height var(--transition-slow);
}

.minimized-content.expanded {
  max-height: 1000px;
}

.minimized-content::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to top, var(--bg-card), transparent);
  opacity: 1;
  transition: opacity var(--transition-normal);
  pointer-events: none;
}

.minimized-content.expanded::after {
  opacity: 0;
}

.toggle-minimize {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  background: var(--bg-glass);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.toggle-minimize:hover {
  background: var(--bg-glass-hover);
  border-color: var(--border-hover);
  color: var(--text-primary);
  transform: translateY(-2px);
}

.toggle-minimize i {
  transition: transform var(--transition-normal);
}

.toggle-minimize.expanded i {
  transform: rotate(180deg);
}

/* ════════════════════════════════════════
   RESPONSIVE ENHANCEMENTS
   ════════════════════════════════════════ */
@media (max-width: 768px) {
  .collapsible-header {
    padding: 1rem;
  }

  .collapsible-content.active {
    padding: 1rem;
  }

  .glass-card-content {
    padding: 1.5rem;
  }

  .delivery-info {
    padding: 0.6rem 0.8rem;
  }

  .icon-modern {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .icon-modern.large {
    width: 52px;
    height: 52px;
    font-size: 1.25rem;
  }
}

/* ════════════════════════════════════════
   ACCESSIBILITY & PERFORMANCE
   ════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .float-animation,
  .pulse-glow,
  .shimmer-text {
    animation: none !important;
  }
}

/* ════════════════════════════════════════
   PRINT STYLES
   ════════════════════════════════════════ */
@media print {
  .collapsible-content {
    max-height: none !important;
    opacity: 1 !important;
    padding: 1rem !important;
  }

  .collapsible-header {
    background: #f5f5f5 !important;
    color: #333 !important;
  }

  .glass-card {
    background: white !important;
    border: 1px solid #ddd !important;
    box-shadow: none !important;
  }

  .delivery-info {
    background: #f9f9f9 !important;
    border: 1px solid #ddd !important;
  }
}

/* ════════════════════════════════════════
   PRODUCT GRID & LAYOUT - 2026
   ════════════════════════════════════════ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.product-card-wrapper {
  width: 100%;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

/* ════════════════════════════════════════
   SECTION SPACING - 2026
   ════════════════════════════════════════ */
.section-products,
.section-all-products,
.features-section,
.section-blog {
  padding: 5rem 0;
  position: relative;
}

.section-header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.section-header-wrapper.text-center {
  flex-direction: column;
  text-align: center;
}

/* ════════════════════════════════════════
   HERO MODERN ENHANCEMENTS
   ════════════════════════════════════════ */
.hero-modern {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-dark) 0%, #0f0f1a 50%, #0a0a12 100%);
}

.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.25;
  animation: heroGlow 10s ease-in-out infinite alternate;
  pointer-events: none;
}

.hero-glow-1 {
  top: -15%;
  left: -10%;
  background: var(--primary);
}

.hero-glow-2 {
  bottom: -15%;
  right: -10%;
  background: var(--secondary);
  animation-delay: 2s;
}

.hero-year {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-full);
  margin-left: 0.5rem;
}

.hero-search-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.hero-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-stats {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border-color);
}

.hero-stats .row>div {
  text-align: center;
  padding: 1rem;
}

.stat-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: var(--radius-md);
  margin: 0 auto 0.75rem;
  font-size: 1.5rem;
  color: white;
}

/* ════════════════════════════════════════
   NAVBAR MODERN ENHANCEMENTS
   ════════════════════════════════════════ */
.navbar-modern {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  transition: all var(--transition-normal);
}

.navbar-modern.scrolled {
  background: rgba(10, 10, 15, 0.95);
  box-shadow: var(--shadow-lg);
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-action-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-glass);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  font-size: 1rem;
  transition: all var(--transition-normal);
  cursor: pointer;
}

.nav-action-btn:hover {
  background: rgba(99, 102, 241, 0.15);
  border-color: var(--border-hover);
  color: var(--primary-light);
  transform: translateY(-2px);
}

/* ════════════════════════════════════════
   FOOTER MODERN ENHANCEMENTS
   ════════════════════════════════════════ */
.footer-modern {
  background: var(--bg-dark);
  border-top: 1px solid var(--border-color);
  padding: 4rem 0 1rem;
  position: relative;
}

.footer-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), var(--secondary), transparent);
}

.footer-social {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

/* ════════════════════════════════════════
   PRODUCT DELIVERY INFO ENHANCED
   ════════════════════════════════════════ */
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

.product-delivery {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--success);
  background: rgba(16, 185, 129, 0.1);
  padding: 0.3rem 0.6rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.product-delivery i {
  font-size: 0.9rem;
  animation: pulse-glow 2s ease-in-out infinite;
}

/* ════════════════════════════════════════
   BLOG ENHANCEMENTS
   ════════════════════════════════════════ */
.blog-thumb-link {
  display: block;
}

/* ════════════════════════════════════════
   RESPONSIVE GRID ADJUSTMENTS
   ════════════════════════════════════════ */
@media (max-width: 1200px) {
  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.25rem;
  }
}

@media (max-width: 992px) {
  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
  }

  .features-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  }

  .blog-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }

  .section-products,
  .section-all-products,
  .features-section,
  .section-blog {
    padding: 3rem 0;
  }
}

@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 0.75rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .hero-modern {
    min-height: auto;
    padding: 4rem 0 3rem;
  }

  .hero-stats {
    margin-top: 2rem;
    padding-top: 2rem;
  }

  .section-header-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

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

/* ════════════════════════════════════════
   LOADING STATES & ANIMATIONS
   ════════════════════════════════════════ */
.loading-skeleton {
  background: linear-gradient(90deg,
      var(--bg-card) 0%,
      var(--bg-card-hover) 50%,
      var(--bg-card) 100%);
  background-size: 200% 100%;
  animation: shimmer 1.5s ease-in-out infinite;
  border-radius: var(--radius-md);
}

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

  100% {
    background-position: 200% 0;
  }
}

/* ════════════════════════════════════════
   UTILITY CLASSES - 2026
   ════════════════════════════════════════ */
.glass-effect {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary-light), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glow-effect {
  box-shadow: 0 0 30px rgba(99, 102, 241, 0.3);
}

.hover-lift {
  transition: transform var(--transition-normal);
}

.hover-lift:hover {
  transform: translateY(-4px);
}

/* ════════════════════════════════════════
   PERFORMANCE OPTIMIZATIONS
   ════════════════════════════════════════ */
.will-change-transform {
  will-change: transform;
}

.will-change-opacity {
  will-change: opacity;
}

/* GPU Acceleration */
.gpu-accelerated {
  transform: translateZ(0);
  backface-visibility: hidden;
  perspective: 1000px;
}

/* ════════════════════════════════════════
   PRODUCT DETAIL PAGE - 2026 Modern
   ════════════════════════════════════════ */
.breadcrumb-modern {
  background: linear-gradient(135deg, var(--bg-dark) 0%, #0f0f1a 100%);
  padding: 2rem 0;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-color);
}

.breadcrumb-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: var(--primary);
  filter: blur(100px);
  opacity: 0.15;
  top: -50%;
  right: -10%;
  pointer-events: none;
}

.breadcrumb-content {
  position: relative;
  z-index: 2;
}

.breadcrumb {
  background: transparent;
  padding: 0;
  margin-bottom: 1rem;
}

.breadcrumb-item {
  font-size: 0.85rem;
  color: var(--text-muted);
}

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

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

.breadcrumb-item.active {
  color: var(--text-primary);
}

.breadcrumb-item+.breadcrumb-item::before {
  content: "›";
  color: var(--text-muted);
  padding: 0 0.5rem;
}

.breadcrumb-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
  background: linear-gradient(135deg, #ffffff, #c4b5fd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.product-detail-section {
  padding: 3rem 0;
}

.product-gallery-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.product-main-image {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 1rem;
  aspect-ratio: 16/10;
}

.product-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.product-main-image:hover img {
  transform: scale(1.05);
}

.product-thumbnails {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.thumbnail-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 16/10;
  border: 2px solid var(--border-color);
  cursor: pointer;
  transition: all var(--transition-normal);
}

.thumbnail-item:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}

.thumbnail-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-share {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

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

.share-buttons {
  display: flex;
  gap: 0.5rem;
}

.share-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-glass);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: all var(--transition-normal);
}

.share-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  transform: translateY(-2px);
}

.product-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.info-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
}

.info-card-title i {
  color: var(--primary);
}

.info-content {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.info-content p {
  margin-bottom: 1rem;
}

.info-content ul,
.info-content ol {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.info-content li {
  margin-bottom: 0.5rem;
}

.requirements-box {
  background: rgba(99, 102, 241, 0.05);
  border: 1px solid rgba(99, 102, 241, 0.15);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  position: sticky;
  top: 100px;
  margin-bottom: 1.5rem;
}

.price-header {
  text-align: center;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 1.5rem;
}

.product-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.price-display {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
}

.price-value {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary-light), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price-currency {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.price-features {
  margin-bottom: 1.5rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.feature-item i {
  color: var(--success);
  font-size: 1rem;
  flex-shrink: 0;
}

/* ════════════════════════════════════════
   COLLAPSIBLE PRODUCT INFO - 2026
   ════════════════════════════════════════ */
.product-collapsible-section {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all var(--transition-normal);
}

.product-collapsible-section:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-md);
}

.product-collapsible-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  user-select: none;
  background: rgba(255, 255, 255, 0.02);
  transition: all var(--transition-normal);
}

.product-collapsible-header:hover {
  background: rgba(255, 255, 255, 0.04);
}

.product-collapsible-header.active {
  background: rgba(99, 102, 241, 0.08);
  border-bottom: 1px solid var(--border-hover);
}

.product-collapsible-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

.product-collapsible-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: var(--radius-md);
  color: white;
  font-size: 1rem;
  flex-shrink: 0;
}

.product-collapsible-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--bg-glass);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  transition: all var(--transition-normal);
}

.product-collapsible-header.active .product-collapsible-toggle {
  background: rgba(99, 102, 241, 0.15);
  border-color: var(--primary);
  color: var(--primary-light);
  transform: rotate(180deg);
}

.product-collapsible-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
}

.product-collapsible-content.active {
  max-height: 2000px;
  padding: 1.5rem;
  opacity: 1;
}

.product-collapsible-inner {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.product-collapsible-inner p {
  margin-bottom: 1rem;
}

.product-collapsible-inner ul,
.product-collapsible-inner ol {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.product-collapsible-inner li {
  margin-bottom: 0.5rem;
  padding-left: 0.5rem;
}

.product-collapsible-inner h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 1.5rem 0 0.75rem;
}

.product-collapsible-inner h4:first-child {
  margin-top: 0;
}

/* ════════════════════════════════════════
   DELIVERY INFO CARD - 2026
   ════════════════════════════════════════ */
.delivery-info-card {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(6, 182, 212, 0.1));
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.delivery-info-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.delivery-info-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-md);
  color: var(--success);
  font-size: 1.5rem;
  animation: pulse-glow 2s ease-in-out infinite;
}

.delivery-info-text h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--success);
  margin: 0 0 0.25rem;
}

.delivery-info-text p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin: 0;
}

.delivery-steps {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.delivery-step {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.delivery-step-number {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 50%;
  color: var(--success);
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ════════════════════════════════════════
   RESPONSIVE PRODUCT DETAIL
   ════════════════════════════════════════ */
@media (max-width: 992px) {
  .price-card {
    position: relative;
    top: 0;
  }

  .breadcrumb-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {

  .product-gallery-card,
  .product-info-card,
  .price-card {
    padding: 1rem;
  }

  .product-collapsible-header {
    padding: 1rem;
  }

  .product-collapsible-content.active {
    padding: 1rem;
  }

  .product-thumbnails {
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 0.5rem;
  }

  .breadcrumb-title {
    font-size: 1.25rem;
  }

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

/* ════════════════════════════════════════
   YAYINLADIKLARIM & SATIN ALMALAR - 2026
   ════════════════════════════════════════ */
.user-content-section {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 2rem;
  transition: all var(--transition-normal);
}

.user-content-section:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-md);
}

.user-content-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
}

.user-content-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.user-content-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: var(--radius-md);
  color: white;
  font-size: 1rem;
}

.user-content-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  padding: 0 0.5rem;
  background: rgba(99, 102, 241, 0.15);
  border: 1px solid rgba(99, 102, 241, 0.3);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-light);
}

.user-content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.user-content-item {
  background: var(--bg-glass);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  cursor: pointer;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.user-content-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-normal);
}

.user-content-item:hover {
  background: var(--bg-glass-hover);
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.user-content-item:hover::before {
  transform: scaleX(1);
}

.user-content-item:active {
  transform: translateY(-2px);
}

.item-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.item-info {
  flex: 1;
}

.item-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.item-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}

.item-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.25rem 0.6rem;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--primary-light);
}

.item-badge.success {
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.2);
  color: var(--success);
}

.item-badge.warning {
  background: rgba(245, 158, 11, 0.1);
  border-color: rgba(245, 158, 11, 0.2);
  color: var(--warning);
}

.item-badge.danger {
  background: rgba(239, 68, 68, 0.1);
  border-color: rgba(239, 68, 68, 0.2);
  color: var(--danger);
}

.item-date {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.item-date i {
  font-size: 0.7rem;
}

.item-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-light);
  white-space: nowrap;
}

.item-description {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.item-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

.item-stats {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.item-stat {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.item-stat i {
  color: var(--primary);
  font-size: 0.75rem;
}

.item-actions {
  display: flex;
  gap: 0.5rem;
}

.item-action-btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-glass);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-size: 0.85rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.item-action-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  transform: scale(1.1);
}

.item-action-btn.danger:hover {
  background: var(--danger);
  border-color: var(--danger);
}

/* Empty State */
.user-content-empty {
  text-align: center;
  padding: 3rem 2rem;
}

.empty-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-glass);
  border: 2px dashed var(--border-color);
  border-radius: var(--radius-lg);
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: var(--text-muted);
}

.empty-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.empty-description {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.empty-action {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border: none;
  border-radius: var(--radius-md);
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.empty-action:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

/* Filter & Sort */
.user-content-filters {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.filter-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.filter-select {
  background: var(--bg-glass);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  padding: 0.5rem 2rem 0.5rem 0.75rem;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all var(--transition-normal);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23a1a1aa' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
}

.filter-select:hover {
  border-color: var(--border-hover);
  background-color: var(--bg-glass-hover);
}

.filter-select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
  .user-content-section {
    padding: 1.5rem;
  }

  .user-content-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .user-content-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .user-content-filters {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .filter-group {
    width: 100%;
  }

  .filter-select {
    width: 100%;
  }

  .item-header {
    flex-direction: column;
    gap: 0.75rem;
  }

  .item-price {
    align-self: flex-start;
  }

  .item-footer {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }

  .item-actions {
    width: 100%;
    justify-content: flex-end;
  }
}

/* Loading State */
.user-content-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
}

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

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

/* Pagination */
.user-content-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.pagination-btn {
  min-width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.75rem;
  background: var(--bg-glass);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.pagination-btn:hover:not(.active):not(:disabled) {
  background: var(--bg-glass-hover);
  border-color: var(--border-hover);
  color: var(--text-primary);
}

.pagination-btn.active {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-color: transparent;
  color: white;
}

/* ════════════════════════════════════════
   FEATURES GRID - Kompakt Yan Yana Kartlar
   ════════════════════════════════════════ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}

@media (max-width: 991px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  text-align: center;
  transition: all var(--transition-normal);
}

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

.feature-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon img {
  max-width: 48px;
  max-height: 48px;
  object-fit: contain;
}

.feature-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--text-primary);
}

.feature-description {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin: 0;
}

/* Kategori Grid Responsive */
@media (max-width: 1399px) {
  [style*="grid-template-columns: repeat(6"] {
    grid-template-columns: repeat(5, 1fr) !important;
  }
}

@media (max-width: 991px) {
  [style*="grid-template-columns: repeat(6"] {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

@media (max-width: 575px) {
  [style*="grid-template-columns: repeat(6"] {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
  }
}

/* ════════════════════════════════════════
   LIGHT MODE - Ek Renk İyileştirmeleri
   ════════════════════════════════════════ */

/* Section Badge (Öne Çıkanlar, Neden Biz? vb.) */
[data-theme="light"] .section-badge {
  background: rgba(99, 102, 241, 0.1);
  color: var(--primary);
  border-color: rgba(99, 102, 241, 0.2);
}

/* Section Titles & Subtitles */
[data-theme="light"] .section-title {
  color: #1a1a2e !important;
}

[data-theme="light"] .section-subtitle {
  color: #4a4a5a !important;
}

/* Hero Section - Light mode: TAM BEYAZ */
[data-theme="light"] .hero-modern {
  background: #ffffff !important;
}

/* Tüm Section Arkaplanları - BEYAZ */
[data-theme="light"] .features-section,
[data-theme="light"] .section-products,
[data-theme="light"] .section-all-products,
[data-theme="light"] .section-blog {
  background: #ffffff !important;
}

[data-theme="light"] .features-section {
  background: #ffffff !important;
}

/* Ürün kartlarına kenarlık ve gölge */
[data-theme="light"] .product-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .product-card:hover {
  border-color: #c7d2fe;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .product-title a {
  color: #1e293b !important;
}

[data-theme="light"] .product-category {
  color: #6366f1 !important;
}

[data-theme="light"] .product-delivery {
  color: #64748b !important;
}

[data-theme="light"] .product-price span {
  color: #1e293b !important;
  font-weight: 700;
}

[data-theme="light"] .hero-tag {
  background: rgba(99, 102, 241, 0.15);
  color: #4338ca;
}

/* Hero başlık - gradient text efektini kaldır, koyu yap */
[data-theme="light"] .hero-title {
  background: none !important;
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
  -webkit-text-fill-color: #1e293b !important;
  color: #1e293b !important;
}

/* Blog Detay Sayfası - Light Mode */
[data-theme="light"] .blog-detail-section {
  background: #ffffff !important;
}

[data-theme="light"] .blog-detail-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
}

[data-theme="light"] .blog-content,
[data-theme="light"] .blog-body,
[data-theme="light"] .blog-body p,
[data-theme="light"] .blog-body li,
[data-theme="light"] .blog-body span {
  color: #334155 !important;
}

[data-theme="light"] .blog-title {
  color: #1e293b !important;
}

[data-theme="light"] .blog-meta {
  color: #64748b !important;
}

[data-theme="light"] .blog-meta .meta-item {
  color: #64748b !important;
}

[data-theme="light"] .blog-share .share-label {
  color: #334155 !important;
}

[data-theme="light"] .blog-share .share-btn {
  background: #f1f5f9;
  color: #475569 !important;
  border: 1px solid #e2e8f0;
}

/* Sidebar Kartları - Light Mode */
[data-theme="light"] .sidebar-card {
  background: #ffffff !important;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
}

[data-theme="light"] .sidebar-title {
  color: #1e293b !important;
}

[data-theme="light"] .category-item,
[data-theme="light"] .category-item span {
  color: #334155 !important;
}

[data-theme="light"] .category-item:hover {
  color: var(--primary) !important;
  background: rgba(129, 140, 248, 0.08);
}

[data-theme="light"] .category-item i {
  color: var(--primary) !important;
}

[data-theme="light"] .recent-post-item {
  border-bottom: 1px solid #f1f5f9;
}

[data-theme="light"] .recent-post-title {
  color: #1e293b !important;
}

[data-theme="light"] .recent-post-date {
  color: #64748b !important;
}

/* Newsletter */
[data-theme="light"] .newsletter-section {
  background: #f8f9fa !important;
}

[data-theme="light"] .newsletter-section h2,
[data-theme="light"] .newsletter-section h3 {
  color: #1e293b !important;
}

[data-theme="light"] .newsletter-section p {
  color: #475569 !important;
}

/* Editor Content Area */
.editor-content-area {
  padding: 1.5rem;
  border-radius: 12px;
  line-height: 1.7;
}

[data-theme="light"] .editor-content-area {
  color: #334155;
}

[data-theme="light"] .editor-content-area h1,
[data-theme="light"] .editor-content-area h2,
[data-theme="light"] .editor-content-area h3,
[data-theme="light"] .editor-content-area h4 {
  color: #1e293b;
}

/* Navbar - Light Mode iyileştirme */
[data-theme="light"] .navbar-modern {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .navbar .nav-link {
  color: #334155 !important;
}

[data-theme="light"] .navbar .nav-link:hover {
  color: var(--primary) !important;
}

/* Footer - Light Mode */
[data-theme="light"] .footer-modern {
  background: #f8fafc !important;
  border-top: 1px solid #e2e8f0;
}

[data-theme="light"] .footer-modern h5,
[data-theme="light"] .footer-modern h6 {
  color: #1e293b !important;
}

[data-theme="light"] .footer-modern p,
[data-theme="light"] .footer-modern a,
[data-theme="light"] .footer-modern span {
  color: #475569 !important;
}

[data-theme="light"] .footer-modern a:hover {
  color: var(--primary) !important;
}

[data-theme="light"] .hero-description {
  color: #334155 !important;
}

/* Hero Search Box */
[data-theme="light"] .hero-search {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .hero-search-title {
  color: #1e293b !important;
}

/* Stats */
[data-theme="light"] .stat-number {
  color: #1e293b !important;
}

[data-theme="light"] .stat-label {
  color: #475569 !important;
}

/* Category Tags */
[data-theme="light"] .category-tag {
  background: rgba(99, 102, 241, 0.1);
  color: #4338ca;
  border: 1px solid rgba(99, 102, 241, 0.2);
}

/* Feature Cards Light Mode */
[data-theme="light"] .feature-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .feature-card:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.12);
}

[data-theme="light"] .feature-title {
  color: #1a1a2e !important;
}

[data-theme="light"] .feature-description {
  color: #64748b !important;
}

/* Product Cards Light Mode */
[data-theme="light"] .product-body {
  background: #ffffff;
}

[data-theme="light"] .product-title a {
  color: #1a1a2e !important;
}

[data-theme="light"] .product-category {
  color: var(--primary) !important;
}

[data-theme="light"] .product-price {
  color: var(--primary) !important;
}

[data-theme="light"] .product-delivery {
  color: #10b981 !important;
}

/* Blog Cards Light Mode */
[data-theme="light"] .blog-content {
  background: #ffffff;
}

[data-theme="light"] .blog-title a {
  color: #1a1a2e !important;
}

[data-theme="light"] .blog-excerpt {
  color: #64748b !important;
}

[data-theme="light"] .blog-date {
  color: #8a8a9a !important;
}

/* Newsletter Section Light Mode */
[data-theme="light"] .newsletter-section {
  background: rgba(99, 102, 241, 0.05);
  border-color: rgba(99, 102, 241, 0.1);
}

[data-theme="light"] .newsletter-subtitle {
  color: var(--primary) !important;
}

/* Section Accent Bar */
[data-theme="light"] .section-accent {
  background: linear-gradient(135deg, var(--primary), var(--accent));
}

/* Scroll to top */
[data-theme="light"] .btn-scroll-top {
  background: var(--primary);
  color: #fff;
}

/* ════════════════════════════════════════
   ÜRÜN DETAY - Resim ve Özellikler Beraber Kaysın
   ════════════════════════════════════════ */
.price-card,
.support-card {
  position: static !important;
  top: auto !important;
}

.col-lg-4 .price-card,
.col-lg-4 .support-card {
  position: static !important;
}

/* Eğer col-lg-4 sticky ise onu da kaldır */
.product-detail-section .col-lg-4 {
  position: static !important;
  align-self: flex-start;
}

/* ════════════════════════════════════════
   LIGHT MODE - Tam Beyaz Tema
   ════════════════════════════════════════ */

/* Ana gövde tamamen beyaz */
[data-theme="light"] body {
  background: #ffffff !important;
}

/* Tüm bölümler beyaz */
[data-theme="light"] .features-section,
[data-theme="light"] .section-products,
[data-theme="light"] .section-all-products,
[data-theme="light"] .section-blog {
  background: #ffffff !important;
}

/* Breadcrumb */
[data-theme="light"] .breadcrumb-modern {
  background: #f8f9fa !important;
}

[data-theme="light"] .breadcrumb-modern .breadcrumb-item,
[data-theme="light"] .breadcrumb-modern .breadcrumb-item a {
  color: #4338ca !important;
}

[data-theme="light"] .breadcrumb-modern .breadcrumb-title {
  color: #1e293b !important;
}

/* Ürün Detay Sayfası */
[data-theme="light"] .product-detail-section {
  background: #ffffff !important;
}

[data-theme="light"] .product-gallery-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
}

[data-theme="light"] .product-info-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
}

[data-theme="light"] .info-card-title {
  color: #1a1a2e !important;
}

[data-theme="light"] .info-content,
[data-theme="light"] .info-content p,
[data-theme="light"] .info-content li,
[data-theme="light"] .info-content span,
[data-theme="light"] .requirements-box,
[data-theme="light"] .requirements-box p {
  color: #333 !important;
}

/* Fiyat Kartı Light Mode */
[data-theme="light"] .price-card {
  background: #f8f9fa !important;
  color: #1e293b !important;
}

[data-theme="light"] .price-card .product-name,
[data-theme="light"] .price-card .product-name,
[data-theme="light"] .price-card .price-currency,
[data-theme="light"] .price-card .feature-item,
[data-theme="light"] .price-card .feature-item span,
[data-theme="light"] .price-card .feature-item i,
[data-theme="light"] .price-card .price-header,
[data-theme="light"] .price-card .price-display,
[data-theme="light"] .price-card .price-features,
[data-theme="light"] .price-card .price-actions,
[data-theme="light"] .price-card h3,
[data-theme="light"] .price-card h4,
[data-theme="light"] .price-card p,
[data-theme="light"] .price-card span,
[data-theme="light"] .price-card div,
[data-theme="light"] .price-card small,
[data-theme="light"] .price-card strong,
[data-theme="light"] .price-card label {
  color: #1e293b !important;
}

/* Fiyat rakamı */
[data-theme="light"] .price-card .price-value {
  background: none !important;
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
  -webkit-text-fill-color: #4338ca !important;
  color: #4338ca !important;
}

/* Destek Kartı Light Mode */
[data-theme="light"] .support-card {
  background: #f8f9fa;
  border: 1px solid #e2e8f0;
}

[data-theme="light"] .support-card h4 {
  color: #1a1a2e !important;
}

[data-theme="light"] .support-card p {
  color: #64748b !important;
}

/* Page Wrapper */
[data-theme="light"] .page-wrapper {
  background: #ffffff !important;
}

/* Sections arası çizgiler/boşluklar */
[data-theme="light"] .section-header-wrapper {
  background: transparent;
}

/* Müşteri Paneli Sayfaları */
[data-theme="light"] .bg-light.shadow-lg {
  background: #ffffff !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
}

/* Tüm Sayfalar - Page Title Overlap */
[data-theme="light"] .page-title-overlap.bg-accent {
  background: #f8f9fa !important;
}

/* Ara Sayfalar (Lisans Sorgula, İletişim vb.) */
[data-theme="light"] .container {
  color: #333;
}

/* Toggle: Ay ikonu yerine güneş */
[data-theme="light"] .theme-toggle-btn {
  background: rgba(0, 0, 0, 0.06);
  color: #f59e0b;
}

.pagination-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}