/* ==========================================
   HERO SLIDER - ANA SAYFA BANNER
   ========================================== */

.fanchaty-hero-slider {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto 15px;
    padding: 20px 20px 0;
    overflow: hidden;
}

.fanchaty-slider-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

/* Slider Track */
.fanchaty-slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

/* Geçiş animasyonu için */
.fanchaty-slider-track.no-transition {
    transition: none !important;
}

.fanchaty-slide {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
    position: relative;
}

.fanchaty-slide a {
    display: block;
    width: 100%;
}

.fanchaty-slide img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    object-fit: cover;
}

/* Masaüstü Banner Oranı */
.fanchaty-slide .desktop-img {
    display: block;
    aspect-ratio: 1500 / 305;
}

.fanchaty-slide .mobile-img {
    display: none;
    aspect-ratio: 1000 / 500;
}

/* Ok Butonları */
.fanchaty-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    color: white;
    padding: 0;
}

.fanchaty-slider-arrow:hover {
    background: rgba(0, 0, 0, 0.6) !important;
    transform: translateY(-50%) scale(1.1);
}

.fanchaty-slider-arrow:focus {
    outline: none;
    background: rgba(0, 0, 0, 0.6) !important;
}

/* Pembe hover'ı engelle */
.fanchaty-slider-arrow,
.fanchaty-slider-arrow:hover,
.fanchaty-slider-arrow:focus,
.fanchaty-slider-arrow:active {
    background-color: rgba(0, 0, 0, 0.4) !important;
}

.fanchaty-slider-arrow:hover {
    background-color: rgba(0, 0, 0, 0.6) !important;
}

.fanchaty-slider-arrow svg {
    width: 24px;
    height: 24px;
    stroke: white;
    stroke-width: 2;
    fill: none;
}

.fanchaty-slider-arrow.prev {
    left: 15px;
}

.fanchaty-slider-arrow.next {
    right: 15px;
}

/* Nokta Göstergeleri - Banner İçinde */
.fanchaty-slider-dots {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    gap: 6px;
    padding: 5px 10px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    z-index: 10;
}

.fanchaty-slider-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

/* Pembe hover'ı engelle - dots */
.fanchaty-slider-dot,
.fanchaty-slider-dot:hover,
.fanchaty-slider-dot:focus,
.fanchaty-slider-dot:active {
    background-color: rgba(255, 255, 255, 0.5) !important;
}

.fanchaty-slider-dot:hover {
    background-color: rgba(255, 255, 255, 0.8) !important;
    transform: scale(1.2);
}

.fanchaty-slider-dot:focus {
    outline: none;
}

.fanchaty-slider-dot.active,
.fanchaty-slider-dot.active:hover,
.fanchaty-slider-dot.active:focus {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    width: 18px;
    border-radius: 3px;
}

/* MOBİL RESPONSIVE */
@media (max-width: 768px) {
    .fanchaty-hero-slider {
        padding: 15px 12px 0;
        margin-bottom: 10px;
    }
    
    .fanchaty-slider-container {
        border-radius: 12px;
    }
    
    .fanchaty-slide img {
        border-radius: 12px;
    }
    
    /* Mobil görsel göster */
    .fanchaty-slide .desktop-img {
        display: none;
    }
    
    .fanchaty-slide .mobile-img {
        display: block;
    }
    
    /* Okları küçült */
    .fanchaty-slider-arrow {
        width: 36px;
        height: 36px;
    }
    
    .fanchaty-slider-arrow svg {
        width: 18px;
        height: 18px;
    }
    
    .fanchaty-slider-arrow.prev {
        left: 10px;
    }
    
    .fanchaty-slider-arrow.next {
        right: 10px;
    }
    
        /* Noktalar */
    .fanchaty-slider-dots {
        bottom: 6px;
        padding: 4px 8px;
        gap: 5px;
    }
    
    .fanchaty-slider-dot {
        width: 5px;
        height: 5px;
    }
    
    .fanchaty-slider-dot.active {
        width: 14px;
    }
}