/* ==========================================================================
   EGELİ HIRDAVAT - MODERN E-TİCARET TEMA SİSTEMİ (LIGHT BLUE THEME)
   ========================================================================== */

:root {
  /* Renk Paleti - Mavi & Koyu Mavi & Açık Mavi & Beyaz */
  --primary-blue: #2563eb;
  /* Canlı kurumsal mavi */
  --primary-blue-hover: #1d4ed8;
  /* Koyu mavi vurgu */
  --primary-blue-light: #dbeafe;
  /* Açık pastel mavi */
  --primary-blue-subtle: #eff6ff;
  /* Çok açık mavi arkaplan */
  --navy-dark: #0f172a;
  /* Koyu lacivert / antrasit başlık */
  --navy-medium: #1e293b;
  /* Okunaklı ana metin rengi */
  --navy-muted: #64748b;
  /* Yardımcı metin / gri tonu */
  --accent-cyan: #0284c7;
  /* Turkuaz / deniz mavisi aksan */
  --accent-green: #10b981;
  /* Başarı / Stokta rozet rengi */
  --accent-red: #ef4444;
  /* İndirim rozet rengi */
  --accent-orange: #f59e0b;
  /* Yıldız / Uyarı rengi */

  /* Arka Plan ve Kenarlıklar */
  --bg-page: #f8fafc;
  /* Ferah sayfa zemin rengi */
  --bg-card: #ffffff;
  /* Kart & Menü beyaz zemin */
  --border-light: #e2e8f0;
  /* İnce zarif kenarlık */
  --border-subtle: #f1f5f9;
  /* Çok hafif ayrım çizgisi */

  /* Gölgeler */
  --shadow-sm: 0 1px 2px 0 rgba(15, 23, 42, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.08), 0 2px 4px -2px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -4px rgba(15, 23, 42, 0.03);
  --shadow-xl: 0 20px 25px -5px rgba(15, 23, 42, 0.1), 0 8px 10px -6px rgba(15, 23, 42, 0.05);

  /* Geçişler & Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);

  /* Boyutlar */
  --max-width: 1320px;
}

/* --------------------------------------------------------------------------
   Temel Sıfırlamalar ve Tipografi
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 15px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background-color: var(--bg-page);
  color: var(--navy-medium);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

ul,
ol {
  list-style: none;
}

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

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  border: none;
  background: none;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.svg-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.25em;
  height: 1.25em;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 0;
  flex-shrink: 0;
  vertical-align: middle;
}

/* --------------------------------------------------------------------------
   Üst Bilgi Çubuğu (Top Bar)
   -------------------------------------------------------------------------- */
.top-bar {
  background: var(--navy-dark);
  color: #cbd5e1;
  font-size: 0.82rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 7px;
  padding-bottom: 7px;
}

.top-bar-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar-links a {
  color: #94a3b8;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: var(--transition);
}

.top-bar-links a:hover {
  color: #ffffff;
}

.top-bar-links a.highlight {
  color: #60a5fa;
  font-weight: 600;
}

.top-bar-contacts {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar-contacts a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #e2e8f0;
  font-weight: 500;
}

.top-bar-contacts a:hover {
  color: #60a5fa;
}

.top-bar-contacts .phone-icon {
  color: #38bdf8;
}

.top-bar-contacts .whatsapp-icon {
  color: #22c55e;
}

@keyframes pulseLiveDot {
  0% { transform: scale(0.95); opacity: 0.7; box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  70% { transform: scale(1.15); opacity: 1; box-shadow: 0 0 0 5px rgba(34, 197, 94, 0); }
  100% { transform: scale(0.95); opacity: 0.7; box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

/* --------------------------------------------------------------------------
   Ana Header & Arama & Üye/Sepet
   -------------------------------------------------------------------------- */
.main-header {
  background: #ffffff;
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.main-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 24px;
}

/* Logo */
.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-emblem {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--navy-dark) 100%);
  color: #ffffff;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
  flex-shrink: 0;
  transition: var(--transition);
}

.brand-emblem svg {
  width: 25px;
  height: 25px;
  stroke-width: 2.2;
}

.header-logo:hover .brand-emblem {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.35);
}

.header-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-title {
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--navy-dark);
  line-height: 1.1;
  margin: 0;
}

.brand-title span {
  color: var(--primary-blue);
  margin-left: 2px;
}

.brand-subtitle {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--navy-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-top: 2px;
  line-height: 1;
}

/* Arama Alanı (Search Bar) */
.header-search {
  flex: 1;
  max-width: 580px;
  position: relative;
}

.search-form {
  position: relative;
  display: flex;
  align-items: center;
}

.search-input {
  width: 100%;
  height: 46px;
  padding: 0 54px 0 20px;
  border-radius: var(--radius-full);
  background: var(--bg-page);
  border: 2px solid var(--border-light);
  font-size: 0.92rem;
  color: var(--navy-dark);
  transition: var(--transition);
}

.search-input:focus {
  background: #ffffff;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.search-btn {
  position: absolute;
  right: 5px;
  top: 5px;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: var(--primary-blue);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.search-btn:hover {
  background: var(--primary-blue-hover);
  transform: scale(1.05);
}

/* Canlı Arama Sonuçları Popup (Live Autocomplete) */
/* Canlı Arama Sonuçları Popup (Live Autocomplete) */
.search-results-popup {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 40px -10px rgba(15, 23, 42, 0.18), 0 0 0 1px rgba(15, 23, 42, 0.05);
  max-height: 480px;
  overflow-y: auto;
  z-index: 1001;
  display: none;
  scrollbar-width: thin;
  scrollbar-color: #cbd5e1 transparent;
}

.search-results-popup::-webkit-scrollbar {
  width: 6px;
}

.search-results-popup::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 6px;
}

.search-results-popup.active {
  display: block;
  animation: searchPopupFadeIn 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes searchPopupFadeIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Yükleniyor Durumu */
.search-loading-state {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 30px 20px;
  color: var(--navy-muted);
  font-size: 0.88rem;
  font-weight: 500;
}

.search-spinner {
  width: 22px;
  height: 22px;
  border: 2.5px solid #e2e8f0;
  border-top-color: var(--primary-blue);
  border-radius: 50%;
  animation: searchSpin 0.7s linear infinite;
}

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

/* Boş Sonuç Durumu */
.search-empty-state {
  padding: 32px 24px;
  text-align: center;
  color: var(--navy-muted);
}

.search-empty-state svg {
  color: #94a3b8;
  margin-bottom: 12px;
}

.search-empty-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 6px;
}

.search-empty-text {
  font-size: 0.84rem;
  color: var(--navy-muted);
  margin-bottom: 16px;
}

.search-empty-btn {
  display: inline-block;
  padding: 8px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary-blue);
  background: var(--bg-blue-light);
  border-radius: var(--radius-full);
  transition: var(--transition);
}

.search-empty-btn:hover {
  background: var(--primary-blue);
  color: #ffffff;
}

/* Grup Başlıkları */
.search-result-group-title {
  padding: 10px 16px 6px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #64748b;
  background: #f8fafc;
  border-bottom: 1px solid var(--border-subtle);
  border-top: 1px solid var(--border-subtle);
}

.search-result-group-title:first-child {
  border-top: none;
  border-top-left-radius: var(--radius-lg);
  border-top-right-radius: var(--radius-lg);
}

/* Kategori Etiketleri */
.search-category-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 10px 16px;
  background: #ffffff;
}

.search-category-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary-blue);
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: var(--radius-full);
  transition: var(--transition);
}

.search-category-tag:hover {
  background: #dcfce7;
  border-color: #86efac;
}

/* Ürün Sonuç Listesi */
.search-results-list {
  display: flex;
  flex-direction: column;
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-subtle);
  transition: all 0.15s ease;
  text-decoration: none;
}

.search-result-item:hover {
  background: #f8fafc;
}

.search-result-item:hover .search-result-title {
  color: var(--primary-blue);
}

.search-result-item:hover .search-result-arrow {
  color: var(--primary-blue);
  transform: translateX(3px);
}

.search-result-img-box {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  background: #ffffff;
  padding: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.search-result-img-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.search-result-info {
  flex: 1;
  min-width: 0;
}

.search-result-badges {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 3px;
}

.search-badge-brand {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #1e40af;
  background: #dbeafe;
  padding: 1px 6px;
  border-radius: 4px;
  line-height: 1.3;
}

.search-badge-code {
  font-size: 0.68rem;
  font-weight: 600;
  color: #64748b;
  background: #f1f5f9;
  padding: 1px 5px;
  border-radius: 4px;
  font-family: monospace;
}

.search-badge-cat {
  font-size: 0.7rem;
  color: #94a3b8;
}

.search-result-title {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy-dark);
  line-height: 1.35;
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.search-highlight {
  background: #fef08a;
  color: #854d0e;
  font-weight: 700;
  padding: 0 2px;
  border-radius: 2px;
}

.search-result-price-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.search-result-price {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--primary-blue);
}

.search-result-old-price {
  font-size: 0.78rem;
  color: #94a3b8;
  text-decoration: line-through;
}

.search-dealer-discount-tag {
  font-size: 0.68rem;
  font-weight: 700;
  color: #166534;
  background: #dcfce7;
  padding: 1px 6px;
  border-radius: 4px;
}

.search-result-arrow {
  color: #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, color 0.2s ease;
}

/* Footer Tümünü Gör Butonu */
.search-popup-footer {
  padding: 10px 16px;
  background: #f8fafc;
  border-top: 1px solid var(--border-subtle);
  border-bottom-left-radius: var(--radius-lg);
  border-bottom-right-radius: var(--radius-lg);
}

.search-view-all-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 9px 16px;
  background: var(--primary-blue);
  color: #ffffff !important;
  font-size: 0.84rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  transition: var(--transition);
  text-decoration: none;
}

.search-view-all-btn:hover {
  background: var(--primary-blue-hover);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* Header Sağ Eylemleri (Actions) */
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.action-item {
  position: relative;
}

.action-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: var(--radius-md);
  background: var(--bg-page);
  border: 1px solid var(--border-light);
  color: var(--navy-dark);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: var(--transition);
}

.action-btn:hover {
  background: var(--primary-blue-subtle);
  border-color: var(--primary-blue-light);
  color: var(--primary-blue);
}

.action-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: #ffffff;
  color: var(--primary-blue);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.badge-count {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--primary-blue);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  min-width: 19px;
  height: 19px;
  padding: 0 4px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(37, 99, 235, 0.3);
}

.action-text {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.2;
}

.action-label {
  font-size: 0.72rem;
  color: var(--navy-muted);
  font-weight: 500;
}

.action-value {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy-dark);
}

/* Üye Girişi Dropdown Paneli */
.user-dropdown-panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 320px;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 24px;
  z-index: 1002;
  display: none;
  animation: fadeInDown 0.2s ease;
}

.user-dropdown-panel.active {
  display: block;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dropdown-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 4px;
}

.dropdown-subtitle {
  font-size: 0.82rem;
  color: var(--navy-muted);
  margin-bottom: 18px;
}

.form-group {
  margin-bottom: 14px;
}

.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy-dark);
  margin-bottom: 5px;
}

.form-control {
  width: 100%;
  height: 40px;
  padding: 0 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  background: var(--bg-page);
  font-size: 0.88rem;
  transition: var(--transition);
}

.form-control:focus {
  background: #ffffff;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--navy-muted);
  cursor: pointer;
}

.form-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  font-size: 0.82rem;
}

.form-links a {
  color: var(--primary-blue);
  font-weight: 600;
}

.btn-primary {
  width: 100%;
  height: 42px;
  background: var(--primary-blue);
  color: #ffffff;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition);
}

.btn-primary:hover {
  background: var(--primary-blue-hover);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.dropdown-divider {
  height: 1px;
  background: var(--border-light);
  margin: 18px 0;
}

.btn-outline {
  width: 100%;
  height: 40px;
  border: 1.5px solid var(--primary-blue);
  color: var(--primary-blue);
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.btn-outline:hover {
  background: var(--primary-blue-subtle);
}

/* --------------------------------------------------------------------------
   Mega Menü & Navigasyon Çubuğu (Navigation Bar)
   -------------------------------------------------------------------------- */
.main-nav {
  background: #ffffff;
  border-bottom: 1px solid var(--border-light);
  position: relative;
  z-index: 950;
}

.nav-menu {
  display: flex;
  align-items: center;
  position: static;
}

.nav-item {
  position: static; /* Mega menünün tam genişlik (full-width) açılabilmesi için static olmalıdır */
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 18px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy-dark);
  border-bottom: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.nav-link:hover,
.nav-item.active .nav-link {
  color: var(--primary-blue);
  border-bottom-color: var(--primary-blue);
  background: var(--primary-blue-subtle);
}

.nav-link svg {
  width: 14px;
  height: 14px;
  color: var(--navy-muted);
  transition: var(--transition);
}

.nav-item:hover .nav-link svg {
  color: var(--primary-blue);
  transform: rotate(180deg);
}

/* Mega Menü Dropdown - Tam Genişlikte ve Şık */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  background: #ffffff;
  border-top: 2px solid var(--primary-blue);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 20px 25px -5px rgba(15, 23, 42, 0.12), 0 8px 10px -6px rgba(15, 23, 42, 0.08);
  padding: 28px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
}

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

.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.mega-menu-column {
  background: var(--bg-page);
  padding: 16px 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.mega-menu-column:hover {
  background: #ffffff;
  box-shadow: var(--shadow-md);
  border-color: var(--primary-blue-light);
}

.mega-category-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--primary-blue-light);
}

.mega-category-header img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  background: #fff;
  border: 1px solid var(--border-light);
}

.mega-category-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy-dark);
}

.mega-sub-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mega-sub-links a {
  font-size: 0.84rem;
  color: var(--navy-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.mega-sub-links a:hover {
  color: var(--primary-blue);
  transform: translateX(4px);
  font-weight: 600;
}

.mega-sub-links a::before {
  content: '•';
  color: var(--primary-blue);
  font-size: 1.2rem;
  line-height: 0;
}

/* --------------------------------------------------------------------------
   Ana Hero Slider
   -------------------------------------------------------------------------- */
.hero-slider-section {
  padding-top: 24px;
  padding-bottom: 20px;
}

.hero-slider {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: #ffffff;
}

.slider-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.slider-slide {
  min-width: 100%;
  flex-shrink: 0;
  position: relative;
}

.slider-slide a {
  display: block;
  position: relative;
}

.slider-slide img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}

/* Slider Okları ve Noktaları */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  z-index: 10;
}

.slider-arrow:hover {
  background: var(--primary-blue);
  color: #ffffff;
  transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev {
  left: 16px;
}

.slider-arrow.next {
  right: 16px;
}

.slider-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.6);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}

.slider-dot.active {
  background: var(--primary-blue);
  width: 32px;
}

/* --------------------------------------------------------------------------
   Promosyon Kategori Bannerları (6'lı Grid)
   -------------------------------------------------------------------------- */
.theme-banners-section {
  padding-top: 10px;
  padding-bottom: 24px;
}

.theme-banners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.promo-banner-card {
  position: relative;
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  transition: var(--transition);
}

.promo-banner-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-blue-light);
}

.promo-banner-content {
  flex: 1;
  z-index: 2;
}

.promo-banner-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy-dark);
  line-height: 1.25;
  margin-bottom: 12px;
  max-width: 140px;
  word-break: normal;
  overflow-wrap: break-word;
}

.promo-banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--primary-blue);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
  transition: var(--transition);
}

.promo-banner-card:hover .promo-banner-btn {
  background: var(--navy-dark);
}

.promo-banner-img {
  width: 140px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.promo-banner-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: var(--transition);
}

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

/* --------------------------------------------------------------------------
   Hızlı Kategori Rozetleri Alanı (Category Badges Carousel)
   -------------------------------------------------------------------------- */
.category-badges-section {
  padding-top: 16px;
  padding-bottom: 30px;
}

.section-header {
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.section-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--navy-dark);
  letter-spacing: -0.3px;
}

.section-subtitle {
  font-size: 0.88rem;
  color: var(--navy-muted);
  margin-top: 2px;
}

.category-badges-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 16px;
}

.category-badge-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 16px 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.category-badge-card:hover {
  border-color: var(--primary-blue);
  background: var(--primary-blue-subtle);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.category-badge-img {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-badge-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.category-badge-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy-dark);
}

/* --------------------------------------------------------------------------
   Ürün Vitrini Alanı (Showcase + Product Carousel)
   -------------------------------------------------------------------------- */
.product-showcase-section {
  padding-top: 20px;
  padding-bottom: 36px;
}

.showcase-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 24px;
}

/* Sol Büyük Banner */
.showcase-side-banner {
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.showcase-side-banner::after {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 160px;
  height: 160px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
}

.side-banner-title {
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 8px;
  max-width: 200px;
  word-break: normal;
  overflow-wrap: break-word;
}

.side-banner-subtitle {
  font-size: 0.85rem;
  opacity: 0.85;
  margin-bottom: 20px;
}

.side-banner-img {
  margin: 10px 0;
  text-align: center;
}

.side-banner-img img {
  max-height: 160px;
  margin: 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.2));
}

.side-banner-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #ffffff;
  color: var(--primary-blue);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 12px 20px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: var(--transition);
}

.side-banner-btn:hover {
  background: var(--navy-dark);
  color: #ffffff;
}

/* Sağ Ürün Kartları Slider / Grid */
.product-slider-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-width: 0;
}

.product-slider-track {
  display: flex;
  gap: 16px;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  width: 100%;
  box-sizing: border-box;
}

/* Ürün Kartı (Modern E-Ticaret Product Card) */
.product-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 16px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  box-sizing: border-box;
  width: 100%;
}

.product-slider-track .product-card {
  flex: 0 0 calc((100% - 32px) / 3);
  width: calc((100% - 32px) / 3);
  max-width: calc((100% - 32px) / 3);
  min-width: calc((100% - 32px) / 3);
}

.category-main-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 30px;
  align-items: start;
  width: 100%;
}

.category-products-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 16px;
  width: 100%;
}

.category-products-grid .product-card {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  padding: 12px;
}

.category-products-grid .product-badges {
  top: 8px;
  left: 8px;
}

.category-products-grid .badge-discount,
.category-products-grid .badge-new {
  font-size: 0.68rem;
  padding: 2px 6px;
}

.category-products-grid .product-quick-actions {
  top: 8px;
  right: 8px;
  gap: 4px;
}

.category-products-grid .quick-action-btn {
  width: 28px;
  height: 28px;
}

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

/* Rozetler (Badges) */
.product-badges {
  position: absolute;
  top: 14px;
  left: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 2;
}

.badge-discount {
  background: var(--accent-red);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 4px rgba(239, 68, 68, 0.3);
}

.badge-new {
  background: var(--primary-blue);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
}

/* Hızlı Eylemler (Hover Quick Actions) */
.product-quick-actions {
  position: absolute;
  top: 14px;
  right: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 2;
  opacity: 0;
  transform: translateX(6px);
  transition: var(--transition);
}

.product-card:hover .product-quick-actions {
  opacity: 1;
  transform: translateX(0);
}

.quick-action-btn {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-full);
  background: #ffffff;
  color: var(--navy-dark);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.quick-action-btn:hover {
  background: var(--primary-blue);
  color: #ffffff;
}

.quick-action-btn.active {
  color: var(--accent-red);
}

/* Ürün Görseli */
.product-image-box {
  width: 100%;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
}

.product-image-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: var(--transition);
}

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

/* Ürün İçerik */
.product-brand {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--navy-muted);
  margin-bottom: 4px;
}

.product-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy-dark);
  line-height: 1.35;
  margin-bottom: 10px;
  height: 38px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

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

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

.star-icon {
  width: 13px;
  height: 13px;
  color: var(--accent-orange);
  fill: currentColor;
}

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

/* Fiyat ve Sepete Ekle */
.product-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px solid var(--border-subtle);
}

.product-price-box {
  display: flex;
  flex-direction: column;
}

.price-old {
  font-size: 0.78rem;
  color: var(--navy-muted);
  text-decoration: line-through;
}

.price-current {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy-dark);
}

.price-eur {
  font-size: 0.78rem;
  font-weight: 700;
  color: #2563eb;
  margin-top: 1px;
}

.add-cart-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: var(--primary-blue-subtle);
  color: var(--primary-blue);
  border: 1px solid var(--primary-blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.add-cart-btn:hover {
  background: var(--primary-blue);
  color: #ffffff;
  transform: scale(1.05);
}

/* Showcase Slider Nav Arrows */
.showcase-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  background: #ffffff;
  border: 1px solid var(--border-light);
  color: var(--navy-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
  opacity: 0.85;
}

.showcase-slider-arrow:hover {
  background: var(--primary-blue);
  color: #ffffff;
  border-color: var(--primary-blue);
  opacity: 1;
}

.showcase-slider-arrow.prev {
  left: 8px;
}

.showcase-slider-arrow.next {
  right: 8px;
}

/* --------------------------------------------------------------------------
   Markalar Vitrini (Brands Carousel)
   -------------------------------------------------------------------------- */
.brands-section {
  padding-top: 20px;
  padding-bottom: 40px;
}

.brands-carousel-wrapper,
.brands-container {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  position: relative;
  width: 100%;
}

.brands-carousel-wrapper::before,
.brands-carousel-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}

.brands-carousel-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #ffffff, transparent);
}

.brands-carousel-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #ffffff, transparent);
}

.brands-track {
  display: flex;
  align-items: center;
  gap: 20px;
  width: max-content;
  animation: brandsMarquee 35s linear infinite;
}

.brands-carousel-wrapper:hover .brands-track {
  animation-play-state: paused;
}

@keyframes brandsMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.brand-item {
  flex-shrink: 0;
  width: 140px;
  height: 68px;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  box-sizing: border-box;
}

.brand-item:hover {
  border-color: var(--primary-blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.brand-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: contrast(105%);
}

/* --------------------------------------------------------------------------
   E-Ticaret Güven & Avantaj Barları (Features Bar)
   -------------------------------------------------------------------------- */
.features-bar-section {
  padding-top: 10px;
  padding-bottom: 30px;
}

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

.feature-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.feature-card:hover {
  border-color: var(--primary-blue-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.feature-icon-box {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--primary-blue-subtle);
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy-dark);
  line-height: 1.2;
}

.feature-desc {
  font-size: 0.78rem;
  color: var(--navy-muted);
  margin-top: 2px;
}

/* --------------------------------------------------------------------------
   E-Bülten & Kapsamlı Footer (Footer - Header Rengiyle Uyumlu Koyu Lacivert)
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--navy-dark);
  color: #cbd5e1;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* E-Bülten Satırı */
.newsletter-bar {
  background: #090e1a;
  color: #ffffff;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.newsletter-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.newsletter-title-box {
  flex: 1;
}

.newsletter-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: #ffffff;
}

.newsletter-subtitle {
  font-size: 0.82rem;
  color: #94a3b8;
  margin-top: 2px;
}

.newsletter-form-box {
  flex: 1.2;
  max-width: 480px;
}

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

.newsletter-input {
  flex: 1;
  height: 44px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  padding: 0 16px;
  color: #ffffff;
  font-size: 0.88rem;
}

.newsletter-input::placeholder {
  color: #94a3b8;
}

.newsletter-input:focus {
  border-color: #60a5fa;
  background: rgba(255, 255, 255, 0.14);
}

.newsletter-btn {
  padding: 0 22px;
  height: 44px;
  background: var(--primary-blue);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.88rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-btn:hover {
  background: var(--primary-blue-hover);
}

/* Ana Footer Linkleri & Kolonları */
.footer-main-content {
  padding: 48px 0 32px;
  background: var(--navy-dark);
}

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

.site-footer .brand-title {
  color: #ffffff;
}

.site-footer .brand-title span {
  color: #60a5fa;
}

.footer-col-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 8px;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 3px;
  border-radius: 2px;
  background: #38bdf8;
}

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

.footer-links a {
  font-size: 0.85rem;
  color: #94a3b8;
  transition: var(--transition);
}

.footer-links a:hover {
  color: #60a5fa;
  transform: translateX(4px);
}

.footer-contact-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.85rem;
  color: #94a3b8;
}

.footer-contact-item strong {
  color: #f1f5f9;
}

.footer-contact-item a {
  color: #94a3b8;
  transition: var(--transition);
}

.footer-contact-item a:hover {
  color: #60a5fa;
}

.footer-contact-item svg {
  color: #38bdf8;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-social-icons {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.social-icon-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-icon-btn:hover {
  background: var(--primary-blue);
  color: #ffffff;
  border-color: var(--primary-blue);
  transform: translateY(-2px);
}

/* Footer Alt Çubuk (Copyright & Bankalar) */
.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #080d1a;
  padding: 16px 0;
  font-size: 0.82rem;
  color: #94a3b8;
}

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

.bank-cards-img img {
  height: 26px;
  width: auto;
  object-fit: contain;
}

/* --------------------------------------------------------------------------
   İnteraktif Sepet Çekmecesi (Slide-in Cart Drawer)
   -------------------------------------------------------------------------- */
.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(3px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.cart-drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 420px;
  background: #ffffff;
  z-index: 2001;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-xl);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.cart-drawer.active {
  transform: translateX(0);
}

.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-light);
}

.cart-drawer-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-drawer-close {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  background: var(--bg-page);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--navy-dark);
  transition: var(--transition);
}

.cart-drawer-close:hover {
  background: var(--accent-red);
  color: #ffffff;
}

/* Ücretsiz Kargo İlerleme Çubuğu */
.free-shipping-box {
  background: var(--primary-blue-subtle);
  border-bottom: 1px solid var(--primary-blue-light);
  padding: 14px 24px;
  font-size: 0.82rem;
}

.free-shipping-text {
  font-weight: 600;
  color: var(--navy-dark);
  margin-bottom: 6px;
}

.free-shipping-progress {
  height: 6px;
  background: #cbd5e1;
  border-radius: var(--radius-full);
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background: var(--primary-blue);
  border-radius: var(--radius-full);
  transition: width 0.4s ease;
}

/* Sepet Öğeleri Listesi */
.cart-drawer-items {
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cart-item-row {
  display: flex;
  gap: 14px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-light);
  position: relative;
}

.cart-item-img {
  width: 68px;
  height: 68px;
  border-radius: var(--radius-sm);
  background: var(--bg-page);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cart-item-img img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

.cart-item-details {
  flex: 1;
}

.cart-item-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy-dark);
  line-height: 1.3;
  margin-bottom: 4px;
}

.cart-item-price {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--primary-blue);
  margin-bottom: 8px;
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 8px;
}

.qty-btn {
  width: 26px;
  height: 26px;
  border-radius: var(--radius-sm);
  background: var(--bg-page);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  cursor: pointer;
}

.qty-btn:hover {
  background: var(--primary-blue);
  color: #ffffff;
  border-color: var(--primary-blue);
}

.qty-val {
  font-size: 0.88rem;
  font-weight: 700;
  min-width: 20px;
  text-align: center;
}

.cart-item-remove {
  position: absolute;
  top: 0;
  right: 0;
  color: var(--navy-muted);
  cursor: pointer;
  transition: var(--transition);
}

.cart-item-remove:hover {
  color: var(--accent-red);
}

.cart-empty-state {
  text-align: center;
  padding: 40px 20px;
  color: var(--navy-muted);
}

.cart-empty-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  color: #94a3b8;
}

/* Sepet Footer (Toplam & Ödeme) */
.cart-drawer-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--border-light);
  background: var(--bg-page);
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy-muted);
  margin-bottom: 6px;
}

.cart-summary-total {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy-dark);
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px dashed var(--border-light);
  display: flex;
  justify-content: space-between;
}

.cart-summary-total span:last-child {
  color: var(--primary-blue);
}

.btn-checkout {
  width: 100%;
  height: 48px;
  background: var(--primary-blue);
  color: #ffffff;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-checkout:hover {
  background: var(--primary-blue-hover);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* --------------------------------------------------------------------------
   Hızlı Bakış Modalı (Quick View Modal)
   -------------------------------------------------------------------------- */
.quick-view-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(4px);
  z-index: 2050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.quick-view-modal.active {
  opacity: 1;
  visibility: visible;
}

.quick-view-content {
  background: #ffffff;
  border-radius: var(--radius-lg);
  max-width: 780px;
  width: 100%;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  animation: zoomIn 0.25s ease;
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.quick-view-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  background: var(--bg-page);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--navy-dark);
  z-index: 10;
  transition: var(--transition);
}

.quick-view-close:hover {
  background: var(--accent-red);
  color: #ffffff;
}

.quick-view-gallery {
  background: var(--bg-page);
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--border-light);
}

.quick-view-gallery img {
  max-height: 280px;
  object-fit: contain;
}

.quick-view-info {
  padding: 30px;
  display: flex;
  flex-direction: column;
}

.quick-brand {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary-blue);
  margin-bottom: 6px;
}

.quick-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy-dark);
  line-height: 1.3;
  margin-bottom: 12px;
}

.quick-price-box {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 16px;
}

.quick-price-current {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--primary-blue);
}

.quick-price-old {
  font-size: 0.95rem;
  color: var(--navy-muted);
  text-decoration: line-through;
}

.quick-desc {
  font-size: 0.85rem;
  color: var(--navy-muted);
  line-height: 1.5;
  margin-bottom: 20px;
}

/* --------------------------------------------------------------------------
   Sabit Butonlar (Floating Buttons) & Toast Bildirimleri
   -------------------------------------------------------------------------- */
.floating-actions {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 900;
}

.floating-btn {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  color: #ffffff;
  cursor: pointer;
  transition: var(--transition);
}

.floating-whatsapp {
  background: #22c55e;
}

.floating-whatsapp:hover {
  background: #16a34a;
  transform: scale(1.1);
}

.floating-scroll-top {
  background: var(--navy-dark);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
}

.floating-scroll-top.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.floating-scroll-top:hover {
  background: var(--primary-blue);
  transform: translateY(-3px);
}

/* Toast Bildirimi */
.toast-container {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 2100;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.toast-message {
  background: var(--navy-dark);
  color: #ffffff;
  padding: 12px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  font-size: 0.88rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: slideInLeft 0.3s ease;
  pointer-events: auto;
  border-left: 4px solid var(--accent-green);
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}