/* Teknokal - Beyaz Eşya ve Elektronik Ürün Satış Sitesi */

/* Bootstrap CSS Variables Override */
:root {
  --bs-primary: #1E88E5;
  --bs-primary-rgb: 30, 136, 229;
  --bs-primary-hover: #1565C0;
  --bs-accent: #FF6F00;
  --bs-accent-rgb: 255, 111, 0;
  --bs-body-bg: #F7F9FC;
  --bs-body-color: #212121;
  --bs-border-color: #E0E0E0;
  --bs-font-family-base: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --bs-font-family-sans-serif: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --bs-heading-font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  
  /* Shadow Variables */
  --bs-shadow-sm: 0 1px 4px rgba(0,0,0,0.06);
  --bs-shadow-md: 0 2px 8px rgba(0,0,0,0.06);
  --bs-shadow-lg: 0 4px 12px rgba(0,0,0,0.08);
  --bs-shadow-xl: 0 4px 16px rgba(0,0,0,0.1);
  --bs-shadow-card: 0 1px 4px rgba(0,0,0,0.08);
  --bs-shadow-text: 0 1px 2px rgba(0,0,0,0.3);
  
  /* Color Variables */
  --bs-white: #FFFFFF;
  --bs-gray-500: #555555;
  --bs-blue-600: #1E88E5;
  --bs-gray-bg: #F7F9FC;
  
  /* Footer Colors */
  --bs-footer-bg: #2C3E50;
  --bs-footer-text: #FFFFFF;
  --bs-footer-card-bg: rgba(255, 255, 255, 0.1);
  --bs-footer-card-text: rgba(255, 255, 255, 0.8);
  
  /* Card Colors */
  --bs-card-bg: #FFFFFF;
  --bs-card-border: #E0E0E0;
  --bs-card-specs-bg: #f8f9fa;
  --bs-card-info-bg: #F0F3F6;
  
  /* Text Colors */
  --bs-heading-color: #212121;
  --bs-text-color: #555555;
  --bs-text-muted: #6c757d;
  
  /* Overlay Variables */
  --bs-overlay-light: rgba(255, 255, 255, 0.2);
  --bs-overlay-medium: rgba(255, 255, 255, 0.3);
  --bs-overlay-border: rgba(255, 255, 255, 0.5);
  --bs-overlay-bg: rgba(0,0,0,0.05);
  
  /* Font Size Variables */
  --bs-font-xs: 0.75rem;    /* 12px */
  --bs-font-sm: 0.9rem;     /* 14.4px */
  --bs-font-base: 1rem;     /* 16px */
  --bs-font-lg: 1.1rem;     /* 17.6px */
  --bs-font-xl: 1.125rem;   /* 18px */
  --bs-font-2xl: 1.25rem;   /* 20px */
  --bs-font-3xl: 1.375rem;  /* 22px */
  --bs-font-4xl: 1.5rem;    /* 24px */
  --bs-font-5xl: 1.75rem;   /* 28px */
  --bs-font-6xl: 2.25rem;   /* 36px */
}

/* Product actions mobil kompakt görünüm */
@media (max-width: 576px) {
  .product-actions .btn {
    padding: 0.55rem 0.9rem;
    font-size: 0.98rem;
    line-height: 1.2;
    height: auto;
  }
  .product-actions .btn i {
    font-size: 1.1rem;
    margin-right: 0.45rem;
  }
  .product-detail-wrapper .btn-lg {
    padding: 0.6rem 0.95rem;
    font-size: 1rem;
  }
}

/* Ürün görsel alanı: sabit yükseklik ve orantılı görüntüleme */
.product-image-container .zoom-image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--bs-white);
}
.product-image-container .carousel-item {
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-image-container .product-detail-image {
  width: auto;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
}

/* Yükseklikler (responsive) */
@media (min-width: 992px) {
  .product-image-container .carousel-item,
  .product-image-container .zoom-image-wrapper {
    height: 460px;
  }
}
@media (max-width: 991.98px) and (min-width: 576px) {
  .product-image-container .carousel-item,
  .product-image-container .zoom-image-wrapper {
    height: 380px;
  }
}
@media (max-width: 575.98px) {
  .product-image-container .carousel-item,
  .product-image-container .zoom-image-wrapper {
    height: 320px;
  }
}

/* Base Typography */
body {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 400;
  color: var(--bs-body-color);
  background-color: var(--bs-body-bg);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: inherit;
  font-weight: 600;
  color: inherit;
  margin-bottom: 1rem;
}

/* Responsive Font Sizes */
h1 {
  font-size: var(--bs-font-6xl); /* 36px */
  font-weight: 700;
}

h2 {
  font-size: var(--bs-font-xl); /* 18px */
}

h3 {
  font-size: var(--bs-font-4xl); /* 24px */
}

h4 {
  font-size: var(--bs-font-3xl); /* 22px */
}

h5 {
  font-size: var(--bs-font-xl); /* 18px */
}

h6 {
  font-size: var(--bs-font-base); /* 16px */
}

p {
  font-size: var(--bs-font-base); /* 16px */
  margin-bottom: 1rem;
}

.btn {
  font-size: var(--bs-font-base); /* 16px */
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

/* Custom Button Classes */
.btn-primary {
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
}

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

/* Header Styles */
.navbar {
  background-color: var(--bs-white) !important;
  box-shadow: var(--bs-shadow-sm);
  padding: 1rem 0;
}

/* Banner Slider Styles */
.banner-slider {
  margin-top: 80px; /* Navbar yüksekliği kadar */
  padding: 0;
}

.banner-link {
  text-decoration: none;
  display: block;
  height: auto;
  overflow: hidden;
}

.banner-link:hover {
  text-decoration: none;
}

.banner-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  display: block;
}

/* Carousel container responsive yükseklik */
.banner-slider .carousel {
  height: auto;
}

.banner-slider .carousel-inner {
  height: auto;
}

.banner-slider .carousel-item {
  height: auto;
}

/* Ana sayfa banner özel stilleri */
.banner-slider .carousel-control-prev,
.banner-slider .carousel-control-next {
  width: 50px;
  height: 50px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.banner-slider:hover .carousel-control-prev,
.banner-slider:hover .carousel-control-next {
  opacity: 0.8;
}

.banner-slider .carousel-control-prev {
  left: 20px;
}

.banner-slider .carousel-control-next {
  right: 20px;
}

.banner-slider:hover .carousel-control-prev:hover,
.banner-slider:hover .carousel-control-next:hover {
  opacity: 1;
}


/* Carousel fade effect */
.carousel-fade .carousel-item {
  opacity: 0;
  transition-duration: 0.6s;
  transition-property: opacity;
}

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-start,
.carousel-fade .carousel-item-prev.carousel-item-end {
  opacity: 1;
}

.carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
  opacity: 0;
}

.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  height: 50px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  transition: all 0.3s ease;
}
.carousel-control-prev {
  left: 20px;
}

.carousel-control-next {
  right: 20px;
}

.carousel-indicators {
  bottom: 20px;
}

.carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--bs-overlay-border);
  background-color: transparent;
  margin: 0 5px;
}

.carousel-indicators button.active {
  background-color: var(--bs-white);
  border-color: var(--bs-white);
}

/* Banner Thumbnails */
.banner-thumbnails {
  margin-top: 0.5rem;
}

.thumbnail-item {
  display: inline-block;
  margin: 0 0.15rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  border-radius: 0.5rem;
  overflow: hidden;
  border: 1px solid var(--bs-border-color);
  padding: 3px;
  opacity: 0.6;
}

.thumbnail-item:hover {
  transform: translateY(-1px);
  border-color: var(--bs-primary);
  opacity: 0.8;
}

.thumbnail-item.active {
  border-color: var(--bs-primary);
  opacity: 1;
}

.thumbnail-img {
  width: 60px;
  height: 45px;
  object-fit: cover;
  border-radius: 0.25rem;
  display: block;
}

/* Product Thumbnails - Tek satırda kalması için */
.product-thumbnails {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE ve Edge */
  cursor: grab;
  user-select: none;
}

.product-thumbnails::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.product-thumbnails:active {
  cursor: grabbing;
}

.product-thumbnails .row {
  flex-wrap: nowrap;
  min-width: max-content;
}

.product-thumbnails .col-auto {
  flex: 0 0 auto;
}

.thumbnail-dot {
  display: none; /* Masaüstünde noktaları gizle */
}

/* Product Zoom Functionality */
.product-image-container {
  position: relative;
}

.zoom-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
  max-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.zoom-image-wrapper img {
  max-height: 500px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.zoom-lens {
  position: absolute;
  width: 200px;
  height: 200px;
  border: 2px solid var(--bs-primary);
  background: rgba(255, 255, 255, 0.5);
  cursor: crosshair;
  display: none;
  pointer-events: none;
  z-index: 10;
}

#zoomResult {
  position: absolute;
  left: 100%;
  top: 0;
  margin-left: 1rem;
  width: 500px;
  height: 500px;
  border: 1px solid var(--bs-border-color);
  border-radius: 0.5rem;
  display: none;
  background-repeat: no-repeat;
  background-color: var(--bs-white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  z-index: 100;
}

.product-detail-image {
  cursor: crosshair;
}

@media (max-width: 991px) {
  #zoomResult {
    display: none !important;
  }
  
  .zoom-lens {
    display: none !important;
  }
  
  .product-detail-image {
    cursor: default;
  }
}

.navbar-brand {
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--bs-primary) !important;
  display: flex;
  align-items: center;
}

.navbar-logo {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.navbar-nav .nav-link {
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--bs-body-color) !important;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--bs-primary) !important;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--bs-primary) 0%, var(--bs-blue-600) 100%);
  color: var(--bs-white);
  padding: 3rem 0;
  margin-bottom: 2rem;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* Category Cards */
.category-card {
  background: var(--bs-card-bg);
  border-radius: 0.5rem;
  box-shadow: var(--bs-shadow-md);
  transition: all 0.3s ease;
  overflow: hidden;
  height: 100%;
}

.category-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--bs-shadow-lg);
}

.category-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.category-card-body {
  padding: 1.25rem;
}

.category-card h5 {
  color: var(--bs-primary);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.category-card p {
  color: var(--bs-gray-500);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

/* Product Cards */
.product-card {
  background: var(--bs-white);
  border: 1px solid var(--bs-border-color);
  border-radius: 0.5rem;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: none !important;
}

/* Grid container için transition kaldır ve position ayarla */
.row.g-3 {
  position: relative;
}

.row.g-3 > [class*="col-"] {
  transition: none !important;
}

/* Gizli ürünler için */
.product-card.hidden {
  display: none !important;
}

/* Gizli kolonlar için */
.row.g-3 > [class*="col-"].hidden {
  display: none !important;
}



.product-card-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

.product-card-link:hover {
  text-decoration: none;
  color: inherit;
}

.product-card-image {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  flex-shrink: 0;
  padding: 1rem 1rem 0.5rem 1rem;
}

.product-card-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

.product-card-body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-title {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--bs-body-color);
  margin-bottom: 1rem;
  line-height: 1.4;
  flex-grow: 1;
}

.product-detail-btn {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--bs-body-color);
    text-decoration: none;
    border: 1px solid var(--bs-border-color);
    padding: 0.6rem 1rem;
    border-radius: 4px;
    display: inline-block;
    width: 100%;
    text-align: center;
    margin-top: auto;
    transition: all 0.3s ease;
}

.product-detail-btn:hover {
    background-color: var(--bs-primary);
    color: var(--bs-white);
    border-color: var(--bs-primary);
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 1px 6px rgba(var(--bs-primary-rgb), 0.2);
}

/* Home Mode Cards */
.home-mode-card {
  background: var(--bs-card-bg);
  border: 1px solid var(--bs-border-color);
  border-radius: 0;
  overflow: hidden;
  height: 350px;
  transition: all 0.3s ease;
  box-shadow: var(--bs-overlay-bg);
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


.home-mode-link {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
  position: relative;
  z-index: 2;
}

.home-mode-link:hover {
  text-decoration: none;
  color: inherit;
}

.home-mode-image {
  display: none;
}

.home-mode-content {
  padding: 1.5rem;
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
}

.home-mode-title {
  color: var(--bs-white);
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-style: italic;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  position: relative;
  display: inline-block;
  text-shadow: var(--bs-shadow-text);
}

.home-mode-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--bs-white);
}

.home-mode-btn {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  color: var(--bs-primary);
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  background-color: var(--bs-white);
  border: 1px solid var(--bs-white);
  box-shadow: var(--bs-shadow-card);
}

/* Brand Cards */
.brand-card {
  background: var(--bs-card-bg);
  border-radius: 0.5rem;
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--bs-shadow-md);
  transition: all 0.3s ease;
  height: 100%;
}

.brand-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--bs-shadow-lg);
}

.brand-logo {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin: 0 auto 1rem;
}


/* Breadcrumb */
.breadcrumb {
  background-color: transparent;
  margin-top: 100px;
  padding: 0.5rem 0;
}

.breadcrumb .container {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "›";
  color: var(--bs-accent);
}

.breadcrumb-item a {
  color: var(--bs-text-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.breadcrumb-item.active {
  color: var(--bs-text-color);
  font-weight: 500;
}

/* Product Detail Styles */
.product-gallery img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
  box-shadow: var(--bs-shadow-md);
}

.product-info {
  background: var(--bs-card-bg);
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: var(--bs-shadow-md);
}

.product-specs {
  background: var(--bs-card-specs-bg);
  padding: 1.25rem;
  border-radius: 0.5rem;
  margin-top: 2rem;
}

.product-specs ul {
  list-style: none;
  padding: 0;
}

.product-specs li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #e5e7eb;
}

.product-specs li:last-child {
  border-bottom: none;
}

.product-specs strong {
  color: var(--bs-primary);
  min-width: 150px;
}

/* Product Detail Page Styles */
.product-detail-wrapper {
  background-color: var(--bs-card-info-bg);
  padding: 1.5rem;
  border-radius: 0.5rem;
}

.product-detail-title {
  font-size: var(--bs-font-base);
  font-weight: 400;
  display: inline-block;
}

/* Mobile Responsive */
@media (max-width: 767px) {
  h1 {
    font-size: 1.75rem; /* 28px */
  }
  
  h2 {
    font-size: 1.375rem; /* 22px */
  }
  
  p {
    font-size: 0.9375rem; /* 15px */
  }
  
  /* Navbar Logo Mobil */
  .navbar-logo {
    height: 40px;
  }
  
  /* Breadcrumb Mobil Kompakt */
  .breadcrumb {
    margin-top: 85px;
    padding: 0.25rem 0;
  }
  
  .breadcrumb .container {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }
  
  .breadcrumb-item {
    font-size: 0.75rem; /* 12px */
  }
  
  .breadcrumb-item + .breadcrumb-item::before {
    padding: 0 0.25rem;
    font-size: 0.875rem;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-section {
    padding: 2rem 0;
  }
  
  .category-card img {
    height: 150px;
  }
  
  .product-card img {
    height: 200px;
  }
  
  /* Mobilde kartlar arası boşluğu azalt */
  .row.g-4 {
    --bs-gutter-x: 0.5rem;
    --bs-gutter-y: 0.5rem;
  }
  
  .product-card {
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  
  .product-card-image {
    height: 140px;
    padding: 0.75rem 0.75rem 0.25rem 0.75rem;
  }
  
  .product-card-body {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
  }
  
  .product-title {
    font-size: 0.8rem;
    margin-bottom: 0.75rem;
    flex-grow: 1;
  }
  
  .product-detail-btn {
    margin-top: auto;
    margin-bottom: 0;
  }
  
  /* Mobil TÜMÜNÜ GÖR Butonu */
  .mobile-view-all-btn {
    display: inline-block;
    padding: 0.375rem 1.5rem;
    border: 1px solid var(--bs-primary);
    border-radius: 20px;
    color: var(--bs-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    background-color: transparent;
  }
  
  .mobile-view-all-btn:hover {
    background-color: var(--bs-primary);
    color: var(--bs-white);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(var(--bs-primary-rgb), 0.3);
  }
  
  /* Home Mode Cards Mobile */
  .home-mode-card {
    height: 250px;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
  }
  
  .home-mode-image {
    height: 150px;
  }
  
  .home-mode-content {
    padding: 1rem;
  }
  
  .home-mode-title {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }
  
  .home-mode-title::after {
    width: 100%;
  }
  
  .home-mode-btn {
    padding: 0.4rem 1.2rem;
    font-size: 0.8rem;
    box-shadow: 0 1px 6px rgba(0,0,0,0.1);
  }
  
  /* Bilgi Kartları Mobile */
  .footer > .container-fluid:first-child {
    padding-top: 0;
    padding-bottom: 1.5rem;
  }
  
  .footer > .container-fluid:first-child .row.g-0 {
    margin: 0;
    --bs-gutter-x: 0;
    --bs-gutter-y: 0;
  }
  
  .footer .info-card {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem;
    margin: 0;
    border-radius: 0;
  }
  
  .footer .info-card:last-child {
    border-bottom: none;
  }
  
  .info-card-title {
    font-size: 0.85rem;
  }
  
  .info-card-text {
    font-size: 0.75rem;
  }
  
  .navbar-nav {
    text-align: center;
    margin-top: 1rem;
  }
  
  .navbar-nav .nav-link {
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 600;
    font-size: 16px;
    margin: 0.25rem 0;
    padding: 0.75rem 1rem;
  }
  
  /* Mobil menüde kategorileri daha kompakt göster */
  .navbar-nav .nav-item {
    border-bottom: 1px solid #f0f0f0;
  }
  
  .navbar-nav .nav-item:last-child {
    border-bottom: none;
  }
  
  
  .banner-image {
    height: 250px;
  }
  
  .banner-link:hover {
    transform: none;
    box-shadow: none;
  }
  
  .carousel-control-prev,
  .carousel-control-next {
    width: 40px;
    height: 40px;
  }
  
  .carousel-control-prev {
    left: 10px;
  }
  
  .carousel-control-next {
    right: 10px;
  }
  
  /* Banner thumbnails mobile */
  .thumbnail-item {
    margin: 0 0.1rem;
    position: relative;
  }
  
  .thumbnail-img {
    width: 50px;
    height: 38px;
    display: block; /* Mobilde de resimleri göster */
  }
  
  .thumbnail-dot {
    display: none; /* Mobilde noktaları gizle */
  }
  
  /* Product thumbnails mobil - Tek satırda kalması için */
  .product-thumbnails {
    overflow-x: auto;
    overflow-y: hidden;
  }
  
  .product-thumbnails .row {
    flex-wrap: nowrap;
  }
}

/* Tablet responsive */
@media (max-width: 992px) and (min-width: 769px) {
  .navbar-nav .nav-link {
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 600;
    font-size: 16px;
    padding: 0.5rem 0.75rem;
  }
}

@media (max-width: 576px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .hero-title {
    font-size: 1.5rem;
  }
  
  .category-card-body,
  .product-card-body {
    padding: 1.25rem;
  }
  
  .product-info {
    padding: 1.5rem;
  }
}

/* Utility Classes */
.text-primary {
  color: var(--bs-primary) !important;
}

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

.bg-primary {
  background-color: var(--bs-primary) !important;
}

.bg-accent {
  background-color: var(--bs-accent) !important;
}

/* Animation Classes */
.fade-in {
  animation: fadeIn 0.6s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Loading States */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

/* Ek Home Mode Kartları - Daha Yatay */
.home-mode-card.horizontal {
  height: 250px;
}


/* Bilgi Kartları */
.info-card {
  background: var(--bs-card-bg);
  padding: 1.5rem 1rem;
  text-align: center;
  height: 100%;
  position: relative;
}

/* Modern Hamburger Menu */
.custom-toggler {
  border: none;
  background: none;
  padding: 8px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  transition: all 0.3s ease;
}

.custom-toggler:focus {
  box-shadow: none;
  outline: none;
}

.hamburger-line {
  width: 100%;
  height: 3px;
  background-color: var(--bs-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.custom-toggler[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(0, 6px);
}

.custom-toggler[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.custom-toggler[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(0, -6px);
}

.custom-toggler:hover .hamburger-line {
  background-color: var(--bs-primary-hover);
}

@media (min-width: 768px) {
  .banner-image {
    max-height: 280px;
    height: auto;
  }
}

@media (min-width: 992px) {
  .banner-image {
    max-height: 400px;
    height: auto;
  }
}

.brand-item {
  flex-shrink: 0;
}

.brand-btn {
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.2;
  border-radius: 25px;
  border: 1px solid var(--bs-border-color);
  color: var(--bs-body-color);
  background-color: var(--bs-card-bg);
  white-space: nowrap;
  min-width: 100px;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none !important;
}

.brand-btn:hover {
  background-color: rgba(0, 0, 0, 0.1);
  color: var(--bs-body-color);
  border-color: var(--bs-border-color);
  transform: none;
}

.brand-btn:focus,
.brand-btn:active,
.brand-btn:visited {
  background-color: rgba(0, 0, 0, 0.1) !important;
  color: var(--bs-body-color) !important;
  border-color: var(--bs-border-color) !important;
  box-shadow: none !important;
  outline: none !important;
  text-decoration: none !important;
}

.brand-btn.active {
  background-color: var(--bs-primary) !important;
  color: var(--bs-white) !important;
  border-color: var(--bs-primary) !important;
  box-shadow: 0 2px 4px rgba(0, 123, 255, 0.3) !important;
  outline: none !important;
  text-decoration: none !important;
}




/* Marka Slider Scrollbar - Gizli */
.d-flex.overflow-auto::-webkit-scrollbar {
  display: none;
}

.d-flex.overflow-auto {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Mobile Menu Improvements */
@media (max-width: 991px) {
  .navbar-collapse {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    margin-top: 10px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
  }
  
  
}

/* SEO İçerik Bölümü */
.seo-content-section {
  padding: 2rem 0;
  margin-top: 3rem;
}

.seo-title {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--bs-heading-color);
  margin-bottom: 1rem;
  text-align: center;
}

.seo-content {
  max-width: 800px;
  margin: 0 auto;
}

.seo-subtitle {
  font-size: 1rem;
  font-weight: 500;
  color: var(--bs-dark);
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
  padding-bottom: 0.25rem;
}

.seo-text {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--bs-text-muted);
  margin-bottom: 0.75rem;
  text-align: justify;
}


/* Footer */
.footer {
  background-color: var(--bs-footer-bg);
  color: var(--bs-footer-text);
  padding: 0;
  margin-top: 3rem;
}

.footer > .container {
  padding-top: 3rem;
  padding-bottom: 1rem;
}

.footer h5 {
  color: var(--bs-footer-text);
  margin-bottom: 1rem;
}

.footer a {
  color: var(--bs-footer-text);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--bs-primary) !important;
}


.footer .text-dark {
  color: var(--bs-footer-text) !important;
}

.footer .text-dark a {
  color: var(--bs-footer-text) !important;
}

.footer .text-dark:hover {
  color: var(--bs-footer-text) !important;
}

/* Footer Bilgi Kartları - Footer İçeriğinin En Üstü */
.footer > .container-fluid:first-child {
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 2rem;
  margin-bottom: 0;
}

.footer > .container-fluid:first-child .row.g-0 {
  margin: 0;
  --bs-gutter-x: 0;
  --bs-gutter-y: 0;
}

.footer > .container-fluid:first-child + .container {
  padding-top: 0;
}

.footer .info-card {
  background-color: var(--bs-footer-card-bg);
  border-radius: 0;
  padding: 1.5rem;
  height: 100%;
  transition: all 0.3s ease;
  margin: 0;
}

.footer .info-card-title {
  color: var(--bs-footer-text);
}

.footer .info-card-text {
  color: var(--bs-footer-card-text);
}

.social-links a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background-color: var(--bs-footer-card-bg);
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  transition: all 0.3s ease;
  color: var(--bs-footer-text) !important;
}

.social-links a:hover {
  background-color: var(--bs-primary);
  transform: translateY(-1px);
  color: var(--bs-footer-text) !important;
}
.info-card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.info-card-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--bs-primary);
  margin-bottom: 0.5rem;
}

.info-card-text {
  font-size: 0.8rem;
  color: var(--bs-text-color);
  margin: 0;
  line-height: 1.4;
}

/* Mini Kategori Kartları */
.category-mini-card {
  background: var(--bs-card-bg);
  border: 1px solid var(--bs-card-border);
  border-radius: 0.5rem;
  padding: 1rem;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.category-mini-card:hover {
  transform: translateY(-1px);
  box-shadow: var(--bs-shadow-md);
  border-color: var(--bs-primary);
}

.category-mini-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
}

.category-mini-link:hover {
  text-decoration: none;
  color: inherit;
}

.category-mini-logo {
  width: 60px;
  height: 60px;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.category-mini-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--bs-body-color);
  margin: 0;
  text-align: center;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.category-mini-card:hover .category-mini-title,
.category-mini-link:hover .category-mini-title {
  color: var(--bs-primary);
}

/* Product Tabs */
.product-tabs {
  border-bottom: 1px solid var(--bs-border-color);
  margin-bottom: 0;
}

.product-tabs .nav-link {
  color: var(--text-secondary);
  border: none;
  border-bottom: 2px solid transparent;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
  margin-bottom: -1px;
  position: relative;
}

.product-tabs .nav-link:hover {
  color: var(--text-secondary);
  border-bottom-color: transparent;
}

.product-tabs .nav-link.active {
  color: var(--text-primary);
  border-bottom: 3px solid var(--bs-primary) !important;
  background-color: transparent;
  z-index: 2;
  position: relative;
}

.tab-content {
  padding-top: 1.5rem;
}

.tab-pane {
  animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.product-description-section p {
  margin-bottom: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.product-specs-section {
  overflow-x: auto;
}

.specs-table {
  min-width: 100%;
}

.specs-table table {
  margin-bottom: 0;
}

/* Cookie Banner Styles */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 1200px;
  width: calc(100% - 2rem);
  background-color: var(--bs-card-bg);
  border: 1px solid var(--bs-border-color);
  border-radius: 0.5rem;
  padding: 1.25rem 1.5rem;
  box-shadow: var(--bs-shadow-lg);
  z-index: 1050;
  animation: slideUpFade 0.4s ease-out;
}

@keyframes slideUpFade {
  from {
    transform: translateX(-50%) translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
}

.cookie-banner .container {
  padding: 0;
}

.cookie-banner p {
  font-size: var(--bs-font-sm);
  line-height: 1.6;
  color: var(--bs-text-color);
  margin: 0;
}

.cookie-banner a {
  color: var(--bs-primary);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.cookie-banner a:hover {
  color: var(--bs-primary-hover);
  text-decoration: underline;
}

.cookie-banner .btn-primary {
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
  color: #FFFFFF;
  padding: 0.6rem 1.5rem;
  font-weight: 600;
  font-size: var(--bs-font-sm);
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.cookie-banner .btn-primary:hover {
  background-color: var(--bs-primary-hover);
  border-color: var(--bs-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(var(--bs-primary-rgb), 0.3);
}

.cookie-banner i {
  color: var(--bs-primary);
}

/* Footer Map */
.footer-map {
  margin-top: 1rem;
}

.footer-map iframe {
  width: 100%;
  height: 300px;
  border: 0;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
  .footer-map {
    margin-top: 1rem;
  }
  
  .footer-map iframe {
    height: 250px;
  }
}

@media (max-width: 768px) {
  .footer-map iframe {
    height: 200px;
  }
}

/* Footer Hidden Links - Geçici olarak gizli */

.footer-link-hidden {
  display: none;
}

@media (max-width: 768px) {
  .cookie-banner {
    bottom: 10px;
    width: calc(100% - 1rem);
    padding: 0.875rem 1rem;
    border-radius: 0.375rem;
  }
  
  .cookie-banner p {
    font-size: 0.8rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
  }
  
  .cookie-banner i {
    font-size: 0.875rem;
  }
  
  .cookie-banner .btn-primary {
    width: 100%;
    padding: 0.6rem 1.25rem;
    font-size: 0.85rem;
    border-radius: 0.375rem;
  }
  
  .cookie-banner .row {
    margin: 0;
  }
  
  .cookie-banner .row > [class*="col-"] {
    padding-left: 0;
    padding-right: 0;
  }
}
