
* {
    font-family: Montserrat, serif !important;
}

/* Custom Utilities */
.scrollbar-hide::-webkit-scrollbar {
    display: none;
}
.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Header Elements Height */
.header-40px {
    height: 40px;
}

.filial-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    row-gap: 16px;
    font-family: sans-serif;
  }
  .filial-blok {
    flex: 1;
    min-width: 200px;
  }
  .filial-basliq {
    margin: 0 0 4px 0;
    font-weight: 600;
    color: #111827;
  }
  .filial-link {
    text-decoration: none;
    color: #4b5563;
  }
  .filial-link:hover {
    color: #000000;
  }

/* Simple Carousel Slider */
.carousel-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    width: 100%;
    height: 100%;
    flex-shrink: 0;
    position: relative;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Navigation Arrows */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.carousel-nav:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.carousel-nav.prev {
    left: calc(50vw - 45vw); /* Position from center */
}

.carousel-nav.next {
    right: calc(50vw - 45vw); /* Position from center */
}

/* Dots */
.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: white;
    transform: scale(1.2);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Animation for auto-play */
@keyframes slideAnimation {
    0% { transform: translateX(0); }
    33.33% { transform: translateX(-100%); }
    66.66% { transform: translateX(-200%); }
    100% { transform: translateX(-300%); }
}

.slider-track.auto-play {
    animation: slideAnimation 15s infinite;
}

/* Pause on hover */
.slider-container:hover .slider-track.auto-play {
    animation-play-state: paused;
}

@media (min-width: 1536px) {
    .container {
        max-width: 92% !important;
    }
}