:root {
  /* Modern Ana Renkler */
  --primary: #3b82f6;
  --primary-hover: #2563eb;
  --primary-light: #dbeafe;
  --primary-dark: #1e40af;
  
  /* İkincil Renkler */
  --secondary: #8b5cf6;
  --secondary-hover: #7c3aed;
  --secondary-light: #e9d5ff;
  
  /* Accent Renkler */
  --accent: #06b6d4;
  --accent-hover: #0891b2;
  --success: #10b981;
  --warning: #f59e0b;
  --error: #ef4444;
  
  /* Nötr Renkler */
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
  
  /* Arka Plan Renkleri */
  --bg: var(--gray-50);
  --bg-card: #ffffff;
  --bg-muted: var(--gray-100);
  
  /* Metin Renkleri */
  --text: var(--gray-700);
  --text-muted: var(--gray-500);
  --text-dark: var(--gray-800);
  --heading: var(--gray-900);
  
  /* Diğer */
  --light: #ffffff;
  --dark: var(--gray-900);
  --border: var(--gray-200);
  --shadow: rgba(15, 23, 42, 0.1);
  
  /* Gradient Kombinasyonları */
  --gradient-primary: linear-gradient(135deg, var(--primary), var(--secondary));
  --gradient-accent: linear-gradient(135deg, var(--accent), var(--success));
  --gradient-warm: linear-gradient(135deg, #f59e0b, #ea580c);
  --gradient-cool: linear-gradient(135deg, var(--primary), var(--accent));
}

* { box-sizing:border-box; margin:0; padding:0; }

/* Tüm sayfalar için aynı arka plan */
html, body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text);
  background: var(--bg) !important;
  background-color: var(--bg) !important;
  line-height: 1.6;
  min-height: 100vh;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 15px;
}


/* === HEADER (kompakt ve modern) === */
.site-header {
  background: rgba(248, 250, 252, 0.95);
  border-bottom: 1px solid rgba(59, 130, 246, 0.1);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.08);
  transition: all 0.3s ease;
  backdrop-filter: blur(20px);
  border-top: 2px solid transparent;
  border-image: var(--gradient-primary) 1;
}

.site-header:hover {
  box-shadow: 0 8px 30px rgba(59, 130, 246, 0.15);
  border-bottom-color: rgba(59, 130, 246, 0.2);
}

.container.nav {
  display: grid;
  grid-template-columns: 1fr 2fr 2fr 1fr;
  align-items: center;
  min-height: 60px;
  padding: 15px 20px;
  gap: 20px;
}

/* LOGO - Sol tarafta */
.logo {
  justify-self: start;
}

/* MENÜ - Sol orta */
.menu {
  justify-self: center;
}

/* ARAMA KUTUSU - Sağ orta */
.navbar-search {
  justify-self: end;
}

/* SEPET - Sağ tarafta */
.cart-container {
  justify-self: end;
}

/* LOGO */
.logo img,
.logo .logo-img {
  max-width: 45px;
  height: auto;
  display: block;
  transition: all 0.3s ease;
  border-radius: 6px;
}

.logo:hover img,
.logo:hover .logo-img {
  transform: scale(1.1);
  filter: brightness(1.1);
}

.logo img:hover {
  transform: scale(1.05);
}

/* MENÜ */
.menu {
  display: flex;
  align-items: center;
  gap: 15px;
}

.menu a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 10px 16px;
  border-radius: 8px;
  white-space: nowrap;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: visible;
}

.menu a::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: var(--gradient-primary);
  border-radius: 8px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: translate(-50%, -50%);
  z-index: -1;
  opacity: 0.1;
}

.menu a:hover::before {
  width: 100%;
  height: 100%;
  opacity: 1;
}

.menu a:hover {
  color: var(--light);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(25, 118, 210, 0.15);
  font-weight: 600;
}

/* Mobil uyum */
@media (max-width: 768px) {
  .container {
    padding: 10px;
  }
  
  .container.nav {
    grid-template-columns: auto 1fr auto auto;
    gap: 8px;
    padding: 10px 15px;
    min-height: 50px;
  }

  .logo img {
    max-width: 35px;
  }

  .site-header {
    padding: 8px 0;
  }

  .menu {
    gap: 8px;
  }

  .menu a {
    font-size: 0.8rem;
    padding: 6px 10px;
    white-space: nowrap;
  }
  
  .menu a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(25, 118, 210, 0.12);
  }
  
  .search-container {
    width: 150px;
  }
  
  #navbar-search-input {
    font-size: 12px;
    padding: 6px 30px 6px 10px;
  }
  
  .search-container .search-icon {
    right: 8px;
    font-size: 14px;
  }
  
  .cart-link {
    font-size: 18px;
    padding: 10px;
  }
  
  .cart-link:hover #cart-count {
    transform: scale(1.1) rotate(3deg);
  }
  
  #cart-count {
    font-size: 11px;
    min-width: 18px;
    height: 18px;
    line-height: 12px;
    top: -4px;
    right: -4px;
  }
}

@media (max-width: 480px) {
  .container.nav {
    grid-template-columns: auto 1fr auto;
  }
  
  .navbar-search {
    display: none;
  }
  
  .menu {
    gap: 6px;
  }
  
  .menu a {
    font-size: 0.75rem;
    padding: 4px 6px;
    white-space: nowrap;
  }
}

@media (max-width: 380px) {
  .menu a {
    font-size: 0.7rem;
    padding: 3px 5px;
  }
}

/* FOOTER */
.site-footer {
  background: var(--gray-800);
  color: var(--gray-300);
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}

/* GENEL */
main {
  background: var(--bg);
  min-height: 100vh;
}

/* Ana sayfa elemanları için arka plan tutarlılığı */
main {
  background: var(--bg);
  min-height: calc(100vh - 120px);
}

section {
  background: var(--bg);
}

h1, h2, h3 { color: var(--dark); }
a.btn {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  background: var(--primary);
  color: white;
  transition: 0.2s;
}
a.btn:hover {
  opacity: 0.85;
}

/* PRODUCT GRID */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 15px;
  margin-top: 20px;
}
.product-card {
  background: var(--bg-card);
  border: 1px solid #ddd;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
}
.product-card img {
  border-radius: 10px;
  margin-bottom: 10px;
}

.cart-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  background: var(--bg-card);
  border-radius: 10px;
  overflow: hidden;
}
.cart-table th, .cart-table td {
  border: 1px solid #ddd;
  padding: 10px;
  text-align: center;
}
.cart-table th {
  background: #f0f0f0;
}
.btn-qty {
  padding: 4px 8px;
  margin: 0 4px;
  background: #1976d2;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
.btn-remove {
  background: crimson;
  color: white;
  border: none;
  padding: 6px 10px;
  border-radius: 4px;
  cursor: pointer;
}
.cart-total {
  margin-top: 20px;
  text-align: right;
}

/* SEPET İKONU */
.cart-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--text-dark);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding: 12px;
  border-radius: 12px;
  background: transparent;
  text-decoration: none;
  overflow: visible;
}

.cart-link::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: linear-gradient(135deg, rgba(25, 118, 210, 0.1), rgba(25, 118, 210, 0.2));
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: translate(-50%, -50%);
  z-index: -1;
}

.cart-link:hover::before {
  width: 100%;
  height: 100%;
}

.cart-link:hover {
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.2);
}

/* Hover efekti sırasında cart-count da etkilensin */
.cart-link:hover #cart-count {
  background: var(--gradient-accent);
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 4px 15px rgba(6, 182, 212, 0.4);
}

#cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  background: linear-gradient(135deg, #ff4444, #ff6666);
  color: white;
  font-size: 12px;
  font-weight: bold;
  border-radius: 50%;
  padding: 3px 6px;
  min-width: 20px;
  height: 20px;
  text-align: center;
  line-height: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 3px 8px rgba(255, 68, 68, 0.3);
  border: 2px solid white;
}

/* NAVBAR ARAMA KUTUSU */
.navbar-search {
  position: relative;
}

.search-container {
  position: relative;
  width: 250px;
}

#navbar-search-input {
  width: 100%;
  padding: 8px 40px 8px 12px;
  border: 2px solid rgba(59, 130, 246, 0.2);
  border-radius: 25px;
  font-size: 14px;
  outline: none;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 250, 252, 0.9));
  color: var(--text-dark);
  backdrop-filter: blur(10px);
}

#navbar-search-input:focus {
  border-color: var(--primary);
  background: var(--bg-card);
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
  transform: translateY(-1px);
}

#navbar-search-input::placeholder {
  color: var(--text-muted);
}

.search-container .search-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 16px;
  pointer-events: none;
  transition: all 0.3s ease;
}

#navbar-search-input:focus + .search-icon {
  color: var(--primary);
  transform: translateY(-50%) scale(1.1);
}

.search-results {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  max-height: 300px;
  overflow-y: auto;
  z-index: 1000;
  display: none;
  margin-top: 5px;
}

.search-results.show {
  display: block;
}

.search-result-item {
  display: flex;
  align-items: center;
  padding: 12px;
  border-bottom: 1px solid #f0f0f0;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.search-result-item:hover {
  background-color: #f8f9fa;
}

.search-result-item:last-child {
  border-bottom: none;
}

.search-result-image {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 6px;
  margin-right: 12px;
}

.search-result-info h4 {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

.search-result-info p {
  margin: 2px 0 0 0;
  font-size: 13px;
  color: #666;
}

.search-no-results {
  padding: 20px;
  text-align: center;
  color: #666;
  font-style: italic;
}

.buttons {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: white;
}

#clear-cart {
  float: right;
  background: var(--bg-card);
  color: #d32f2f;
  border: 1px solid #d32f2f;
  cursor: pointer;
  padding: 8px 14px;
  border-radius: 8px;
  font-weight: 500;
}
#clear-cart:hover {
  background: #d32f2f;
  color: #fff;
}

/* 🧹 Sepeti Boşalt Butonu (kırmızı kenarlı) */
.btn-danger-outline {
  float: right;
  background: transparent;
  color: #d32f2f;
  border: 1px solid #d32f2f;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-danger-outline:hover {
  background: #d32f2f;
  color: #fff;
}

.btn-danger-outline i {
  font-size: 14px;
}

/* 🏞️ HERO BÖLÜMÜ */
.hero {
  background: 
    linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(139, 92, 246, 0.3)),
    url("../images/FipgoLogo.JPG") center/70% no-repeat;
  background-color: var(--gray-100);
  color: var(--light);
  text-align: center;
  padding: 25px 20px;
  position: relative;
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Hafif overlay - resmi bozmayacak şekilde */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.15);
  z-index: 1;
  pointer-events: none;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 30% 20%, rgba(255,255,255,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255,255,255,0.08) 0%, transparent 50%);
  animation: heroGlow 8s ease-in-out infinite alternate;
  backdrop-filter: blur(8px);
}

@keyframes heroGlow {
  0% { opacity: 0.7; }
  100% { opacity: 1; }
}

.hero-content {
  position: relative;
  z-index: 3; /* Overlay'in üstünde kalması için artırıldı */
  max-width: 700px;
  margin: auto;
  animation: heroContentFade 1.5s ease-out;
}

@keyframes heroContentFade {
  0% { 
    opacity: 0;
    transform: translateY(30px);
  }
  100% { 
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h1 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.95);
  text-shadow: 
    0 4px 8px rgba(0,0,0,0.6),
    0 2px 4px rgba(0,0,0,0.5),
    0 1px 2px rgba(0,0,0,0.4);
  line-height: 1.4;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.95);
  text-shadow: 
    0 4px 8px rgba(0,0,0,0.6),
    0 2px 4px rgba(0,0,0,0.5),
    0 1px 2px rgba(0,0,0,0.4);
  line-height: 1.6;
  font-weight: 400;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero .btn {
  background: var(--primary);
  color: #ffffff;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 14px 28px;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
  transition: all 0.3s ease;
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border-radius: 30px;
  text-shadow: 
    0 2px 4px rgba(0,0,0,0.4),
    0 1px 2px rgba(0,0,0,0.3);
}

.hero .btn:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

/* Responsive hero */
@media (max-width: 768px) {
  .hero {
    padding: 20px 20px;
    min-height: 120px;
  }
  
  .hero h1 {
    font-size: 2.2rem;
    margin-bottom: 6px;
  }
  
  .hero p {
    font-size: 1rem;
    margin-bottom: 18px;
  }
  
  .hero .btn {
    font-size: 1rem;
    padding: 12px 24px;
  }
}

/* 🔍 HERO ALTINDA ARAMA BÖLÜMÜ */
.search-hero-section {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  padding: 20px 0;
  margin: 0;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.search-hero-section .search-filter-section {
  margin: 0;
}

.search-hero-section .search-filter-container {
  gap: 15px;
  align-items: center;
}

.search-hero-section .btn {
  background: linear-gradient(135deg, #2266dd, #144dad);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 16px 24px;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: none;
  letter-spacing: 0.5px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 
    0 8px 25px rgba(34, 102, 221, 0.25),
    0 4px 10px rgba(34, 102, 221, 0.15);
  backdrop-filter: blur(10px);
}

.search-hero-section .btn:hover {
  background: linear-gradient(135deg, #144dad, #0e3575);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 
    0 12px 35px rgba(20, 77, 173, 0.35),
    0 6px 15px rgba(20, 77, 173, 0.2);
}

/* 🏞️ KAMPANYA SLAYTLARI */
.hero-campaigns {
  margin: 20px 0 40px 0;
  padding: 0 10px;
  background: var(--bg);
}

.campaignSwiper {
  width: 100%;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  position: relative;
}

.campaign-slide {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
  border-radius: 20px;
  margin: 15px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  transition: all 0.3s ease;
  overflow: hidden;
}

.campaign-slide:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

/* Her slide için özel gradient'ler */
.campaign-product {
  background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
}

.campaign-new {
  background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.campaign-cart {
  background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
}

.campaign-shipping {
  background: linear-gradient(135deg, #a1c4fd 0%, #c2e9fb 100%);
}

@keyframes shimmer {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes slidePattern {
  0% { transform: translateX(0px) translateY(0px); }
  100% { transform: translateX(30px) translateY(30px); }
}

@keyframes pulseGlow {
  0%, 100% { 
    opacity: 0.3;
    transform: translate(-50%, -50%) scale(1);
  }
  50% { 
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1.2);
  }
}

@keyframes shine {
  0% { left: -100%; }
  50%, 100% { left: 100%; }
}

.campaign-product {
  background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 50%, #fecfef 100%);
  position: relative;
}

.campaign-product::before {
  background: 
    radial-gradient(circle at 30% 20%, rgba(255,255,255,0.2) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(255,255,255,0.15) 0%, transparent 40%);
}

.campaign-new {
  background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.campaign-new::before {
  background: 
    linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(255,255,255,0.15) 25%, transparent 25%);
  background-size: 20px 20px;
}

.campaign-cart {
  background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
}

.campaign-cart::before {
  background: 
    conic-gradient(from 0deg at 50% 50%, rgba(255,255,255,0.1) 0deg, transparent 60deg, rgba(255,255,255,0.05) 120deg, transparent 180deg);
}

.campaign-shipping {
  background: linear-gradient(135deg, #a1c4fd 0%, #c2e9fb 100%);
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(180deg); }
}

@keyframes spiralFloat {
  0%, 100% { 
    transform: rotate(0deg) scale(1);
    opacity: 0.7;
  }
  50% { 
    transform: rotate(180deg) scale(1.1);
    opacity: 1;
  }
}

@keyframes crossPattern {
  0% { transform: translateX(0px) translateY(0px); }
  100% { transform: translateX(30px) translateY(30px); }
}

@keyframes bubbleFloat {
  0%, 100% { 
    transform: translateY(0px) scale(1);
    opacity: 0.8;
  }
  33% { 
    transform: translateY(-10px) scale(1.05);
    opacity: 1;
  }
  66% { 
    transform: translateY(5px) scale(0.95);
    opacity: 0.9;
  }
}

@keyframes waveFlow {
  0% { transform: translateX(-100px); }
  100% { transform: translateX(100px); }
}

@keyframes contentGlow {
  0%, 100% { 
    opacity: 0.8;
    transform: scale(1);
  }
  50% { 
    opacity: 1;
    transform: scale(1.02);
  }
}

.campaign-slide h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin: 0 0 15px 0;
  background: linear-gradient(135deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.campaign-slide p {
  font-size: 1.1rem;
  margin: 0 0 25px 0;
  opacity: 0.8;
  line-height: 1.6;
}

.campaign-badge {
  display: inline-block;
  background: linear-gradient(135deg, #ff6b6b, #ee5a24);
  color: white;
  padding: 12px 25px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 800;
  margin-bottom: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 10px 30px rgba(255,107,107,0.4);
  position: relative;
  overflow: hidden;
}

.campaign-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: shine 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 8px 25px rgba(0,0,0,0.2); }
  50% { transform: scale(1.05); box-shadow: 0 12px 35px rgba(0,0,0,0.3); }
}

.campaign-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
  background: linear-gradient(135deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: iconBounce 2s ease-in-out infinite;
}

@keyframes iconBounce {
  0%, 100% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-10px) scale(1.1); }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.campaign-content h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  font-weight: 800;
  text-shadow: 0 4px 20px rgba(0,0,0,0.4);
  line-height: 1.1;
  letter-spacing: -0.5px;
  animation: slideInUp 1s ease-out;
}

@keyframes slideInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.btn-campaign {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(102,126,234,0.3);
  position: relative;
  overflow: hidden;
  text-transform: none;
  letter-spacing: normal;
}

.btn-campaign::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.6s ease;
}

.btn-campaign:hover::before {
  width: 300px;
  height: 300px;
}

.btn-campaign:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 15px 40px rgba(102,126,234,0.4);
}

.campaign-next,
.campaign-prev {
  position: absolute;
  top: 20px;
  z-index: 10;
  color: white;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.campaign-next {
  right: 20px;
}

.campaign-prev {
  left: 20px;
}

.campaign-next:hover,
.campaign-prev:hover {
  background: rgba(255,255,255,0.3);
  transform: scale(1.1);
}

.campaign-next:after,
.campaign-prev:after {
  font-size: 16px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .campaignSwiper {
    height: 220px;
  }
  
  .campaign-content h2 {
    font-size: 1.4rem;
    margin-bottom: 8px;
  }
  
  .campaign-content p {
    font-size: 0.85rem;
    margin-bottom: 12px;
  }
  
  .campaign-icon {
    font-size: 2rem;
    margin-bottom: 10px;
  }
  
  .campaign-badge {
    font-size: 0.75rem;
    padding: 5px 12px;
    margin-bottom: 10px;
  }
}



/* � ÖNE ÇIKAN ÜRÜNLER */
.featured {
  padding: 60px 0;
  text-align: center;
}
.featured h2 {
  margin-bottom: 30px;
  color: var(--dark);
  font-size: 1.8rem;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
  padding-bottom: 8px;
}

.center {
  text-align: center;
  margin-top: 20px;
}

.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: flex-start;
  margin-top: 40px;
}

.product-image img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid #ddd;
}

.product-info h1 {
  margin-top: 0;
}

.product-info .price {
  color: #1976d2;
  font-size: 1.6rem;
  font-weight: 600;
}

.product-info ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

@media(max-width: 800px){
  .product-detail {
    grid-template-columns: 1fr;
  }
}
/* ÜRÜN KARTLARI (Ana sayfa ve ürünler sayfası için) */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.product-card {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  background: var(--bg-card);
  border-radius: 12px;
  padding: 20px;
  border: 1px solid #eee;
  transition: all 0.3s ease;
  height: 480px !important;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  justify-content: space-between;
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(59, 130, 246, 0.2);
  border-color: var(--primary);
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  border-radius: 10px;
  background-color: #fafafa;
  margin-bottom: 10px;
  position: relative;
  flex-shrink: 0;
}

.product-card h3 {
  font-size: 1.1rem;
  margin: 0 0 10px;
  color: var(--dark);
  font-weight: 600;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.3;
  text-align: center;
}

.product-card p,
.product-card .price {
  color: var(--primary);
  font-weight: 700;
  font-size: 1.2rem;
  margin: 10px 0 5px;
  margin-top: auto;
  min-height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.product-card .product-category {
  margin: 5px 0 10px;
  min-height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Düğme düzeni - Her zaman altta */
.product-card .buttons {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
  flex-shrink: 0;
}

.product-card .btn {
  flex: 1;
  max-width: 115px;
  min-width: 85px;
  font-size: 0.85rem;
  padding: 8px 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.btn {
  background: var(--gradient-primary);
  color: var(--light);
  padding: 8px 14px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  box-shadow: 0 2px 10px rgba(59, 130, 246, 0.2);
}

.btn:hover {
  background: var(--gradient-cool);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.btn-primary {
  background: var(--gradient-primary);
}

/* İndirim Badge Stilleri */
.discount-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
  transform: rotate(-5deg);
  animation: badgePulse 3s infinite ease-in-out;
}

/* Product card relative positioning for badge */
.product-card {
  position: relative;
}

@keyframes badgePulse {
  0%, 100% { transform: rotate(-5deg) scale(1); }
  50% { transform: rotate(-5deg) scale(1.05); }
}

.price-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 30px;
  margin: 10px 0 5px;
  margin-top: auto;
  flex-shrink: 0;
}

.original-price {
  text-decoration: line-through;
  color: #6b7280;
  font-size: 0.95rem;
  font-weight: 400;
  order: 2;
}

.discounted-price {
  color: #ef4444;
  font-weight: 700;
  font-size: 1.1rem;
  order: 1;
}

.btn-secondary {
  background: var(--gradient-accent);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  box-shadow: none;
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--light);
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

/* Disabled state for buttons */
.btn:disabled {
  background: var(--gray-300) !important;
  color: var(--gray-500) !important;
  cursor: not-allowed !important;
  opacity: 0.6 !important;
  transform: none !important;
  box-shadow: none !important;
}

.btn:disabled:hover {
  background-color: #cccccc !important;
  transform: none !important;
  box-shadow: none !important;
}

/* Add to cart specific styles */
.add-to-cart {
  position: relative;
  transition: all 0.3s ease;
}

.add-to-cart:disabled {
  pointer-events: none;
}

.add-to-cart .fa-spinner {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.btn-outline {
  background: none;
  border: 1px solid #1976d2;
  color: #1976d2;
}

.btn-outline:hover {
  background-color: #1976d2;
  color: #fff;
}

/* Responsive ayar */
@media (max-width: 768px) {
  .product-card {
    height: 440px;
  }
  
  .product-card img {
    height: 160px;
  }
  
  .product-card h3 {
    font-size: 0.9rem;
    min-height: 40px;
  }
  
  .product-card .price {
    font-size: 1rem;
  }
  
  .product-card .buttons {
    flex-direction: row;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .product-card .btn {
    max-width: 110px;
    min-width: 90px;
    font-size: 0.75rem;
    padding: 6px 8px;
  }
  
  .swiper-slide {
    height: 440px !important; /* Mobile'da slider da kısalır */
  }
  
  .swiper-slide img {
    height: 160px;
  }
  
  .swiper-slide h3 {
    font-size: 1rem;
    min-height: 45px;
  }
  
  .swiper-slide .buttons {
    flex-direction: column;
    gap: 6px;
  }
  
  .swiper-slide .btn {
    max-width: none;
    min-width: auto;
    font-size: 0.8rem;
  }
}

/* Kategori etiketleri */
.product-category {
  margin: 8px 0;
}

.category-tag {
  display: inline-block;
  background: linear-gradient(135deg, #1976d2, #1565c0);
  color: white;
  font-size: 0.7rem;
  font-weight: 500;
  padding: 3px 8px;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

/* Loading spinner animasyonu */
.loading-message .fa-spin {
  animation: fa-spin 1s infinite linear;
}

@keyframes fa-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* === ARAMA VE FİLTRE BÖLÜMÜ === */
.search-filter-section {
  background: var(--bg-card);
  padding: 20px;
  margin: 20px 0;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  border: 1px solid #eee;
}

.search-filter-container {
  display: flex;
  gap: 15px;
  align-items: center;
  flex-wrap: wrap;
}

.search-box {
  flex: 1;
  min-width: 280px;
  position: relative;
  max-width: 450px;
}

.search-input {
  width: 100%;
  padding: 16px 50px 16px 20px;
  border: 2px solid transparent;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 400;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background: linear-gradient(135deg, #ffffff, #f8f9fa);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.08),
    0 2px 8px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  color: #2d3436;
}

.search-input::placeholder {
  color: #74b9ff;
  font-weight: 400;
  opacity: 0.8;
}

.search-input:focus {
  outline: none;
  border-color: #74b9ff;
  background: linear-gradient(135deg, #ffffff, #fdfdfd);
  box-shadow: 
    0 12px 40px rgba(116, 185, 255, 0.15),
    0 4px 12px rgba(116, 185, 255, 0.1),
    0 0 0 4px rgba(116, 185, 255, 0.08);
  transform: translateY(-1px);
}

.search-icon {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #74b9ff;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  cursor: pointer;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: transparent;
}

.search-icon:hover {
  color: #0984e3;
  background: rgba(116, 185, 255, 0.1);
  transform: translateY(-50%) scale(1.1);
}

.search-input:focus + .search-icon {
  color: #0984e3;
  transform: translateY(-50%) scale(1.05);
}

.filter-dropdown {
  position: relative;
}

.filter-select {
  padding: 12px 40px 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  background: #fafafa;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 180px;
}

.filter-select:focus {
  outline: none;
  border-color: #1976d2;
  background: var(--bg-card);
  box-shadow: 0 0 0 3px rgba(25, 118, 210, 0.1);
}

.clear-filters {
  padding: 12px 20px;
  background: #f5f5f5;
  color: #666;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.clear-filters:hover {
  background: #d32f2f;
  color: white;
  border-color: #d32f2f;
}

.results-info {
  margin: 15px 0;
  padding: 10px 15px;
  background: #f0f7ff;
  border-left: 4px solid #1976d2;
  border-radius: 4px;
  font-size: 0.9rem;
  color: #1976d2;
}

.no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: #666;
}

.no-results i {
  font-size: 3rem;
  margin-bottom: 15px;
  color: #ccc;
}

.no-results h3 {
  margin-bottom: 10px;
  color: #333;
}

/* Responsive arama ve filtre */
@media (max-width: 768px) {
  .search-filter-container {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  
  .search-box {
    width: 100%;
    min-width: auto;
    max-width: none;
  }
  
  .search-input {
    padding: 14px 45px 14px 18px;
    font-size: 0.95rem;
    border-radius: 40px;
  }
  
  .search-icon {
    right: 16px;
    font-size: 1.1rem;
  }
  
  .search-hero-section .btn {
    padding: 14px 20px;
    font-size: 0.9rem;
  }
  
  .filter-select,
  .clear-filters {
    width: 100%;
    min-width: auto;
  }
  
  .search-filter-section {
    margin: 15px 0;
    padding: 15px;
  }
}

/* === ÜRÜN DETAY GALERİSİ === */
.product-gallery {
  position: relative;
}

.main-image-container {
  position: relative;
  margin-bottom: 15px;
  background: #fafafa;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #eee;
}

.main-image {
  width: 100%;
  height: 400px;
  object-fit: contain;
  background: #fafafa;
  cursor: zoom-in;
  transition: transform 0.3s ease;
}

.main-image:hover {
  transform: scale(1.02);
}

.image-zoom-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 10000;
  display: none;
  justify-content: center;
  align-items: center;
  cursor: zoom-out;
}

.zoomed-image {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  border-radius: 8px;
}

.gallery-thumbnails {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  gap: 10px;
  margin-top: 15px;
}

.thumbnail {
  width: 100%;
  height: 80px;
  object-fit: contain;
  background: #fafafa;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0.7;
}

.thumbnail:hover {
  border-color: #1976d2;
  opacity: 1;
  transform: scale(1.05);
}

.thumbnail.active {
  border-color: #1976d2;
  opacity: 1;
  box-shadow: 0 0 0 2px rgba(25, 118, 210, 0.2);
}

.image-counter {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
}

.gallery-navigation {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #1976d2;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.gallery-navigation:hover {
  background: #1976d2;
  color: white;
  transform: translateY(-50%) scale(1.1);
}

.nav-prev {
  left: 15px;
}

.nav-next {
  right: 15px;
}

/* Responsive galeri */
@media (max-width: 768px) {
  .main-image {
    height: 300px;
  }
  
  .gallery-thumbnails {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .thumbnail {
    height: 60px;
  }
  
  .gallery-navigation {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
  
  .image-counter {
    top: 10px;
    right: 10px;
    padding: 6px 10px;
    font-size: 0.8rem;
  }
}
/* === POPÜLER ÜRÜNLER SLIDER === */
.featured-section {
  margin: 30px auto 40px;
  padding: 0 10px;
  background: var(--bg);
}

.featured-section h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 1.8rem;
  color: #1a1a1a;
  border-bottom: 2px solid #2266dd;
  display: inline-block;
  padding-bottom: 8px;
  width: 100%;
}

/* Swiper Container */
.swiper {
  width: 100%;
  padding: 15px 0 40px 0;
  position: relative;
  overflow: hidden;
}

.swiper-wrapper {
  display: flex;
  align-items: stretch;
}

.swiper-slide {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  background: var(--bg-card);
  border-radius: 12px;
  padding: 20px;
  border: 1px solid #eee;
  transition: all 0.3s ease;
  height: 480px !important; /* Yüksekliği artırdım */
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  justify-content: space-between;
}

.swiper-slide:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-color: #1976d2;
}

.swiper-slide img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  border-radius: 10px;
  background: #fafafa;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
  flex-shrink: 0; /* Görselin küçülmesini engelle */
}

.swiper-slide:hover img {
  transform: scale(1.05);
}

.swiper-slide h3 {
  font-size: 1.1rem;
  margin: 0 0 10px;
  color: var(--dark);
  font-weight: 600;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.3;
  text-align: center;
}

.swiper-slide p,
.swiper-slide .price {
  color: #2266dd !important;
  font-weight: 700;
  font-size: 1.3rem;
  margin: 0 0 15px;
  flex-grow: 1; /* Kalan alanı kapla */
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.swiper-slide .buttons {
  display: flex;
  gap: 8px;
  width: 100%;
  justify-content: center;
  flex-wrap: nowrap;
  margin-top: auto;
  padding-top: 15px;
  flex-shrink: 0;
  position: relative;
  z-index: 10;
}

.swiper-slide .btn {
  flex: 1;
  min-width: 100px;
  max-width: 130px;
  font-size: 0.85rem;
  padding: 8px 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.swiper-slide .btn {
  flex: 1;
  min-width: 100px;
  max-width: 130px;
  font-size: 0.85rem;
  padding: 10px 12px;
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.swiper-slide .btn:hover {
  transform: translateY(-2px);
}

/* Navigation Buttons - Saydam ve Hover'da Netleşen Butonlar */
.swiper-container .swiper-button-next,
.swiper-container .swiper-button-prev,
.swiper .swiper-button-next,
.swiper .swiper-button-prev {
  color: rgba(25, 118, 210, 0.7) !important;
  background: rgba(255, 255, 255, 0.2) !important;
  border-radius: 50% !important;
  width: 44px !important;
  height: 44px !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
  transition: all 0.3s ease !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  backdrop-filter: blur(8px) !important;
  top: 50% !important;
  margin-top: -22px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  opacity: 0.6 !important;
}

.swiper-container .swiper-button-next:hover,
.swiper-container .swiper-button-prev:hover,
.swiper .swiper-button-next:hover,
.swiper .swiper-button-prev:hover {
  color: #fff !important;
  background: rgba(25, 118, 210, 0.9) !important;
  transform: scale(1.1) !important;
  border-color: rgba(25, 118, 210, 0.8) !important;
  box-shadow: 0 8px 20px rgba(25, 118, 210, 0.4) !important;
  opacity: 1 !important;
}

.swiper-container .swiper-button-next:after,
.swiper-container .swiper-button-prev:after,
.swiper .swiper-button-next:after,
.swiper .swiper-button-prev:after {
  font-size: 11px !important;
  font-weight: 800 !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2) !important;
  position: relative !important;
  line-height: 1 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* Ok hizalama düzeltmeleri - Güçlü Seçiciler */
.swiper-container .swiper-button-next:after,
.swiper .swiper-button-next:after {
  content: 'next' !important;
  margin: 0 !important;
}

.swiper-container .swiper-button-prev:after,
.swiper .swiper-button-prev:after {
  content: 'prev' !important;
  margin: 0 !important;
}

/* Pagination - Modern Nokta Göstergeleri */
.swiper-pagination {
  bottom: 15px !important;
  text-align: center;
}

.swiper-pagination-bullet {
  background: linear-gradient(135deg, #bbb, #999);
  opacity: 0.6;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  width: 12px;
  height: 12px;
  margin: 0 8px;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.swiper-pagination-bullet:hover {
  background: linear-gradient(135deg, #1976d2, #1565c0);
  opacity: 0.8;
  transform: scale(1.2);
}

.swiper-pagination-bullet-active {
  background: linear-gradient(135deg, #1976d2, #1565c0) !important;
  opacity: 1;
  transform: scale(1.4);
  box-shadow: 0 4px 15px rgba(25, 118, 210, 0.4), 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
  .featured-section {
    padding: 0 10px;
  }
  
  .swiper-slide {
    padding: 15px;
  }
  
  .swiper-slide img {
    height: 160px;
  }
  
  .swiper-slide .buttons {
    flex-direction: column;
    gap: 8px;
  }
  
  .swiper-slide .btn {
    max-width: none;
    min-width: auto;
  }
  
  .swiper-button-next,
  .swiper-button-prev {
    width: 45px;
    height: 45px;
    margin-top: -22.5px;
    box-shadow: 0 6px 20px rgba(25, 118, 210, 0.12), 0 3px 8px rgba(0, 0, 0, 0.08);
  }
  
  .swiper-button-next:after,
  .swiper-button-prev:after {
    font-size: 14px;
  }
  
  .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 6px;
  }
}

/* 🎁 SEPETİ İNDİRİM BİLDİRİMLERİ */
.cart-discount-banner,
.discount-notification,
.almost-discount {
  animation: slideInDown 0.6s ease-out;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cart-discount-banner::before,
.discount-notification::before,
.almost-discount::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  animation: shimmer 3s infinite;
}

@keyframes slideInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

.cart-discount-banner:hover,
.discount-notification:hover,
.almost-discount:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Pulse animasyonu aktif indirim için */
.discount-notification {
  animation: slideInDown 0.6s ease-out, pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}

/* Sepet toplam stilini iyileştir */
.cart-total {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 12px;
  border: 2px solid #e9ecef;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.cart-total hr {
  border: none;
  height: 2px;
  background: linear-gradient(135deg, #00d2d3, #54a0ff);
  border-radius: 1px;
}

/* 🏷️ SEPET İNDİRİM BADGE - GİZLİ */
.cart-discount-badge {
  display: none !important;
}

/* 📱 KAMPANYA SLIDER NAVIGATION - SAYDAM BUTONLAR */
.campaignSwiper .swiper-button-next,
.campaignSwiper .swiper-button-prev {
  color: rgba(255, 255, 255, 0.8) !important;
  background: rgba(0, 0, 0, 0.2) !important;
  border-radius: 50% !important;
  width: 44px !important;
  height: 44px !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
  transition: all 0.3s ease !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  backdrop-filter: blur(8px) !important;
  top: 50% !important;
  margin-top: -22px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  opacity: 0.6 !important;
}

.campaignSwiper .swiper-button-next:hover,
.campaignSwiper .swiper-button-prev:hover {
  color: #fff !important;
  background: rgba(0, 0, 0, 0.6) !important;
  transform: scale(1.1) !important;
  border-color: rgba(255, 255, 255, 0.6) !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4) !important;
  opacity: 1 !important;
}

.campaignSwiper .swiper-button-next:after,
.campaignSwiper .swiper-button-prev:after {
  font-size: 11px !important;
  font-weight: 800 !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
}

/* ==================== ONLINE STORES SECTION ==================== */

.online-stores-section {
  padding: 4rem 0;
  background: var(--bg);
  margin: 3rem 0;
}

.online-stores-section h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.stores-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #64748b;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Mağaza Slider Container */
.stores-slider-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

/* Stores Swiper */
.storesSwiper {
  padding: 20px 0 60px 0;
  overflow: hidden;
}

.storesSwiper .swiper-slide {
  height: auto;
  display: flex;
  justify-content: center;
}

.store-card {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 2rem;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 320px;
  height: 100%;
}

.store-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6, #06b6d4);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.store-card:hover::before {
  transform: translateX(0);
}

.store-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: rgba(59, 130, 246, 0.3);
}

/* Slider Navigation Buttons */
.stores-next,
.stores-prev {
  width: 50px !important;
  height: 50px !important;
  margin-top: -25px !important;
  background: white !important;
  border-radius: 50% !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
  color: #3b82f6 !important;
  font-weight: bold !important;
  transition: all 0.3s ease !important;
}

.stores-next:hover,
.stores-prev:hover {
  background: #3b82f6 !important;
  color: white !important;
  transform: scale(1.1) !important;
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3) !important;
}

.stores-next::after,
.stores-prev::after {
  font-size: 18px !important;
  font-weight: bold !important;
}

.stores-next {
  right: -25px !important;
}

.stores-prev {
  left: -25px !important;
}

/* Slider Pagination */
.stores-pagination {
  bottom: 10px !important;
}

.stores-pagination .swiper-pagination-bullet {
  width: 12px !important;
  height: 12px !important;
  background: rgba(59, 130, 246, 0.3) !important;
  opacity: 1 !important;
  transition: all 0.3s ease !important;
}

.stores-pagination .swiper-pagination-bullet-active {
  background: #3b82f6 !important;
  transform: scale(1.2) !important;
}

.store-logo {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  background: #f8fafc;
  border-radius: 50%;
  border: 3px solid #e2e8f0;
  transition: all 0.3s ease;
  position: relative;
}

.store-card:hover .store-logo {
  transform: scale(1.1);
  border-color: #3b82f6;
  background: linear-gradient(135deg, #dbeafe, #fef3c7);
}

.store-icon {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 12px;
  border: 2px solid white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  z-index: 2;
  transition: all 0.3s ease;
}

.store-card:hover .store-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, #1d4ed8, #7c3aed);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.store-logo img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: grayscale(0.3);
  transition: filter 0.3s ease;
  z-index: 1;
}

.store-card:hover .store-logo img {
  filter: grayscale(0);
}

.store-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.8rem;
  transition: color 0.3s ease;
}

.store-card:hover h3 {
  color: #3b82f6;
}

.store-card p {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border: none;
}

.store-card:hover .store-btn {
  background: linear-gradient(135deg, #1d4ed8, #1e40af);
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.store-btn i {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.store-card:hover .store-btn i {
  transform: translateX(2px);
}

/* Responsive tasarım */
@media (max-width: 768px) {
  .online-stores-section {
    padding: 2.5rem 0;
  }
  
  .online-stores-section h2 {
    font-size: 2rem;
  }
  
  .stores-slider-container {
    margin: 0 10px;
  }
  
  .store-card {
    padding: 1.5rem;
    max-width: 280px;
  }
  
  .stores-next,
  .stores-prev {
    display: none !important;
  }
  
  .store-logo {
    width: 60px;
    height: 60px;
  }
  
  .store-logo img {
    width: 30px;
    height: 30px;
  }
}

/* ==================== CONTACT PAGE STYLES ==================== */

/* Header section */
.contact-header {
  text-align: center;
  margin-bottom: 3rem;
  padding: 2rem 0;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(6, 182, 212, 0.1));
  border-radius: 12px;
  border: 1px solid rgba(16, 185, 129, 0.1);
}

.contact-header h1 {
  color: #1e293b;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.contact-intro {
  font-size: 1.2rem;
  color: #475569;
  font-weight: 500;
  max-width: 600px;
  margin: 0 auto;
}

/* Two column layout */
.contact-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}

/* Contact Cards Grid */
.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

/* Contact Bottom Section */
.contact-bottom-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 1.5rem;
}



.field-error {
  color: #ef4444;
  font-size: 0.85rem;
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.contact-btn {
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.contact-btn:hover {
  background: linear-gradient(135deg, #059669, #047857);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
}

.contact-btn:disabled {
  cursor: not-allowed;
  opacity: 0.7;
  transform: none;
}

/* Info Section */
.contact-info-section {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-container h2 {
  color: #1e293b;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.contact-info-container h2 i {
  color: #06b6d4;
}

.info-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
  margin-bottom: 1rem;
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  border-color: #06b6d4;
}

.info-card:hover .info-icon {
  transform: scale(1.1);
}

.info-icon {
  width: 70px;
  height: 70px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.6rem;
  flex-shrink: 0;
  min-width: 70px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.info-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.3s ease;
}

.info-content h3 {
  color: #1e293b;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.info-content p {
  color: #374151;
  margin-bottom: 0.3rem;
}

.info-content a {
  color: #06b6d4;
  text-decoration: none;
  transition: color 0.3s ease;
}

.info-content a:hover {
  color: #0891b2;
  text-decoration: underline;
}

.info-content small {
  color: #6b7280;
  font-size: 0.85rem;
}

/* Social Media Section */
.social-media-section {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
}

.social-media-section h3 {
  color: #1e293b;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* WhatsApp icon special styling */
.info-icon.whatsapp {
  background: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.info-icon.email {
  background: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.info-icon.address {
  background: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.social-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid #e5e7eb;
}

.social-link.instagram {
  color: #e4405f;
  border-color: #e4405f20;
}

.social-link.instagram:hover {
  background: #e4405f10;
  transform: translateY(-1px);
}

.social-link.facebook {
  color: #1877f2;
  border-color: #1877f220;
}

.social-link.facebook:hover {
  background: #1877f210;
  transform: translateY(-1px);
}

.social-link.twitter {
  color: #1da1f2;
  border-color: #1da1f220;
}

.social-link.twitter:hover {
  background: #1da1f210;
  transform: translateY(-1px);
}

.social-link.youtube {
  color: #ff0000;
  border-color: #ff000020;
}

.social-link.youtube:hover {
  background: #ff000010;
  transform: translateY(-1px);
}

/* FAQ Section */
.faq-section {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
}

.faq-section h3 {
  color: #1e293b;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.faq-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.faq-links a {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem;
  color: #374151;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.faq-links a:hover {
  background: #f8fafc;
  color: #06b6d4;
  border-color: #e2e8f0;
  transform: translateX(5px);
}

.faq-links a i {
  color: #6b7280;
  transition: color 0.3s ease;
}

.faq-links a:hover i {
  color: #06b6d4;
}

/* Notification */
.notification {
  position: fixed;
  top: 20px;
  right: -400px;
  max-width: 400px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  z-index: 10000;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-left: 4px solid #10b981;
}

.notification.show {
  right: 20px;
}

.notification-success {
  border-left-color: #10b981;
}

.notification-content {
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #374151;
}

.notification-content i {
  color: #10b981;
  font-size: 1.2rem;
}

.notification-close {
  background: none;
  border: none;
  color: #6b7280;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.notification-close:hover {
  background: #f3f4f6;
  color: #374151;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-content {
    gap: 1.5rem;
  }
  
  .contact-cards-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .contact-bottom-section {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .contact-header h1 {
    font-size: 2rem;
  }
  
  .contact-intro {
    font-size: 1rem;
  }
  
  .social-links {
    grid-template-columns: 1fr;
  }
  
  .info-card {
    flex-direction: column;
    text-align: center;
    padding: 1.2rem;
  }
}

/* ==================== ABOUT PAGE STYLES ==================== */

/* Header section */
.about-header {
  text-align: center;
  margin-bottom: 3rem;
  padding: 2rem 0;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(147, 51, 234, 0.1));
  border-radius: 12px;
  border: 1px solid rgba(59, 130, 246, 0.1);
}

.about-header h1 {
  color: #1e293b;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.about-intro {
  font-size: 1.2rem;
  color: #475569;
  font-weight: 500;
  max-width: 600px;
  margin: 0 auto;
}

/* Two column layout */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

.about-column {
  text-align: justify;
}

.about-column h3 {
  color: #1e293b;
  font-size: 1.4rem;
  font-weight: 600;
  margin: 2rem 0 1rem 0;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #e2e8f0;
}

.about-column h3 i {
  color: #3b82f6;
  font-size: 1.2rem;
}

.about-column p {
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  text-align: justify;
  hyphens: auto;
}

.about-column h4 {
  color: #1e293b;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 1.5rem 0 1rem 0;
}

/* Quote box styling */
.quote-box {
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  padding: 1.8rem;
  border-radius: 12px;
  margin: 1.5rem 0;
  position: relative;
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.quote-box::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6, #06b6d4);
  border-radius: 14px;
  z-index: -1;
}

.quote-box p {
  color: white !important;
  margin: 0;
  text-align: center !important;
}

.quote-box p:first-child {
  margin-bottom: 0.8rem;
}

.quote-box strong {
  font-weight: 700;
  font-size: 1.1rem;
}

.quote-box em {
  font-style: italic;
  opacity: 0.9;
}

/* Features list styling */
.features-list {
  background: #f8fafc;
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  margin-top: 1.5rem;
}

.features-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 0;
  color: #475569;
  font-weight: 500;
  border-bottom: 1px solid #e2e8f0;
}

.features-list li:last-child {
  border-bottom: none;
}

.features-list li i {
  color: #10b981;
  font-size: 1rem;
  width: 16px;
  text-align: center;
}

/* Responsive design */
@media (max-width: 768px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .about-header h1 {
    font-size: 2rem;
  }
  
  .about-intro {
    font-size: 1.1rem;
  }
  
  .about-column h3 {
    font-size: 1.2rem;
  }
  
  .quote-box {
    padding: 1.2rem;
  }
}

/* 🎯 KAMPANYA SAYFASI */
.campaign-banner {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.campaign-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="30" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="70" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
  animation: campaignFloat 6s ease-in-out infinite;
}

.banner-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 800;
  text-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.banner-content p {
  font-size: 1.3rem;
  margin-bottom: 30px;
  opacity: 0.95;
}

.campaign-timer {
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  padding: 15px 30px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255,255,255,0.3);
}

.campaign-timer i {
  font-size: 1.2rem;
}

.campaign-products {
  padding: 80px 0;
  background: var(--bg);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--dark);
  margin-bottom: 15px;
  font-weight: 700;
}

.section-header p {
  font-size: 1.2rem;
  color: var(--text-light);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-bottom: 80px;
}

.campaign-item {
  position: relative;
  overflow: hidden;
}

.discount-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: linear-gradient(135deg, #ff6b6b, #ee5a24);
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 5;
  box-shadow: 0 4px 15px rgba(255,107,107,0.4);
}

.price-container {
  margin: 15px 0;
}

.old-price {
  font-size: 1rem;
  color: #999;
  text-decoration: line-through;
  margin-right: 10px;
}

.current-price {
  font-size: 1.4rem;
  color: var(--primary);
  font-weight: 700;
  margin-right: 10px;
}

.discount-amount {
  font-size: 0.9rem;
  color: #27ae60;
  font-weight: 600;
  background: rgba(39,174,96,0.1);
  padding: 4px 8px;
  border-radius: 12px;
}

.campaign-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.info-card {
  background: white;
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.info-card i {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.info-card h4 {
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 10px;
  font-weight: 600;
}

.info-card p {
  color: var(--text-light);
  line-height: 1.6;
}

@keyframes campaignFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(180deg); }
}

/* Kampanya Sayfası Responsive */
@media (max-width: 768px) {
  .campaign-banner {
    padding: 60px 0;
  }
  
  .banner-content h1 {
    font-size: 2rem;
  }
  
  .banner-content p {
    font-size: 1.1rem;
  }
  
  .products-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .campaign-info {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}


