:root {
  --background: #ffffff;
  --foreground: #1a1a1a;
  --card: #f8fafc;
  --card-foreground: #111827;
  --primary: #374151;
  --primary-foreground: #ffffff;
  --secondary: #6b7280;
  --secondary-foreground: #ffffff;
  --accent: #4b5563;
  --accent-foreground: #ffffff;
  --muted: #f3f4f6;
  --muted-foreground: #6b7280;
  --border: #e5e7eb;
  --radius: 0.75rem;
  --gradient-primary: linear-gradient(135deg, #374151 0%, #4b5563 50%, #6b7280 100%);
  --gradient-card: linear-gradient(145deg, #f8fafc 0%, #f1f5f9 100%);
}


.car-gallery {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 0.5rem;
  background-color: #f8f9fa;
}

.car-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  background-color:black;
  opacity:0.8;
  transition:200ms;
}

.carousel-btn:hover {
    background-color:black;
    opacity:0.85;
}

.carousel-btn-prev {
  left: 1rem;
}

.carousel-btn-next {
  right: 1rem;
}

.carousel-indicators {
  position: absolute;
  bottom: 1rem;
  display: flex;
  gap: 0.5rem;
  z-index: 100;
}

.indicator-dot {
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
}

.indicator-dot.active {
  background-color: white;
}

.thumbnail-btn {
  aspect-ratio: 1;
  border-radius: 0.375rem;
  overflow: hidden;
  border: 2px solid #dee2e6;
  background: none;
  padding: 0;
  transition: border-color 0.3s;
}

.thumbnail-btn.active {
  border-color: #dc3545;
}

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

#thumbnailGallery {
    display: flex;
    flex-wrap: wrap;    /* Alt sat�ra ge�meyi sa�lar */
    gap: 8px;           /* S�tunlar aras� bo�luk */
}

#thumbnailGallery .thumbnail-col {
    flex: 0 0 calc(20% - 8px); /* 5 adet yan yana (100% / 5) ve gap d���ld� */
    box-sizing: border-box;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.feature-dot {
  width: 8px;
  height: 8px;
  background-color: #28a745;
  border-radius: 50%;
  flex-shrink: 0;
}

.sticky-top {
  backdrop-filter: blur(8px);
  background-color: rgba(255, 255, 255, 0.95) !important;
}

.text-balance {
  text-wrap: balance;
}

.vehicle-name {
  color: var(--card-foreground);
}

.call-btn {
  background-color: var(--foreground);
  color: white;
  opacity: 0.97;
  transition: all 200ms;
}

.call-btn:hover {
  background-color: var(--foreground) !important;
  color: white !important;
  opacity: 1;
}

.card-header {
  background-color: var(--foreground);
  color: white;
}

.car-feature-box {
  background-color: #6b72801a;
  color: var(--card-foreground);
}

.dealer-info-container i {
  color: var(--foreground) !important;
}

.bg-secondary {
  background-color: var(--muted-foreground) !important;
}

.btn-go-back:hover {
  background-color: white !important;
  color:black !important;
}


.logo-topbar {
    height: 52px !important;
}

@media (max-width: 768px) {
  .carousel-btn {
    width: 32px;
    height: 32px;
  }

  .carousel-btn-prev {
    left: 0.5rem;
  }

  .carousel-btn-next {
    right: 0.5rem;
  }
}


