/* --- FEATURE SLIDER SECTION --- */
.feature-slider-section {
    width: 100%;
    height: 100vh;
    background-color: #f5f5f7;
    color: #121214;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    position: relative;
    z-index: 15;
    overflow: hidden;
}

.fs-container {
    display: flex;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    align-items: center;
    gap: 5rem;
}

.fs-left {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.fs-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 450px;
}

.fs-product-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.15));
    transition: transform 0.3s ease;
}

/* 1. resmi daha belirgin küçültür (Orijinalin %85'i) */
.first-jacket .fs-product-image {
    transform: scale(0.85) !important;
    transform-origin: center center;
}

/* 2. resmi %15 küçültür (Orijinalin %85'i) */
.second-jacket .fs-product-image {
    transform: scale(0.85) !important;
    transform-origin: center center;
}

/* 3. resmi %15 küçültür (Orijinalin %85'i) */
.third-jacket .fs-product-image {
    transform: scale(0.85) !important;
    transform-origin: center center;
}

/* 4. resmi %15 küçültür (Orijinalin %85'i) */
.fourth-jacket .fs-product-image {
    transform: scale(0.85) !important;
    transform-origin: center center;
}

/* Hotspots (Özellik Noktaları) */
#fs-hotspots-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hotspot {
    position: absolute;
    display: flex;
    align-items: center;
    pointer-events: auto;
    transform: translate(0, -50%); /* Dikeyde ortala */
    opacity: 1;
}

.hotspot-dot {
    width: 12px;
    height: 12px;
    background-color: #121214;
    border-radius: 50%;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 0 4px rgba(18, 18, 20, 0.1);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(18, 18, 20, 0.3); }
    70% { box-shadow: 0 0 0 10px rgba(18, 18, 20, 0); }
    100% { box-shadow: 0 0 0 0 rgba(18, 18, 20, 0); }
}

.hotspot-line {
    width: 0; /* Başlangıçta gizli */
    height: 3px; 
    background-color: #121214;
    margin-left: -6px; /* Noktanın içine girmesi için */
    z-index: 1;
    border-radius: 2px;
    transition: width 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hotspot-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-left: 10px;
    opacity: 0; /* Başlangıçta görünmez */
    transform: translateX(-10px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition-delay: 0.1s;
    background: rgba(255,255,255,0.8);
    padding: 5px 15px;
    border-radius: 20px;
    backdrop-filter: blur(5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Hover State Animations */
.hotspot:hover .hotspot-line {
    width: 80px; /* Üzerine gelince uzar */
}
.hotspot:hover .hotspot-content {
    opacity: 1;
    transform: translateX(0);
}
.hotspot:hover .hotspot-dot {
    animation: none;
    transform: scale(1.2);
    transition: transform 0.3s ease;
}

.hotspot-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    border: 3px solid transparent; /* Opsiyonel */
}

.hotspot-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #121214;
    white-space: nowrap;
    text-shadow: 0 1px 2px rgba(255,255,255,0.8); /* Açık temada okunabilirliği artırır */
}

/* Text & Details (Sağ Taraf) */
.fs-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; /* Merkeze hizalı */
    text-align: center;
}

.fs-header {
    margin-bottom: 2rem;
}

.fs-capsule {
    font-size: 0.85rem;
    letter-spacing: 4px;
    color: #888;
    text-transform: uppercase;
}

.fs-details {
    margin-bottom: 3rem;
}

.fs-title {
    font-size: 3.2rem;
    font-weight: 400;
    letter-spacing: -0.5px;
    margin-bottom: 1rem;
    color: #121214;
    font-family: 'Times New Roman', 'Georgia', serif;
}

.fs-desc {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.fs-season {
    font-size: 0.8rem;
    color: #aaa;
    letter-spacing: 2px;
}

/* Actions (Buton ve Ok) */
.fs-actions {
    display: flex;
    align-items: center;
}

.fs-btn {
    padding: 12px 40px;
    background: #ffffff;
    color: #121214;
    text-decoration: none;
    font-weight: 400;
    font-size: 1.1rem;
    letter-spacing: 1px;
    border-radius: 30px;
    border: 1px solid rgba(0,0,0,0.1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); /* Kibar ve zarif gölge */
    transition: all 0.3s ease;
}

.fs-btn:hover {
    background: #121214;
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}

.fs-next-btn {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 2.5rem;
    color: #aaa;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 20;
}

.fs-next-btn:hover {
    color: #121214;
    transform: translate(5px, -50%);
}

.fs-prev-btn {
    position: absolute;
    left: 5%;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 2.5rem;
    color: #aaa;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 20;
}

.fs-prev-btn:hover {
    color: #121214;
    transform: translate(-5px, -50%);
}

@media (max-width: 1024px) {
    .feature-slider-section {
        height: auto;
        min-height: 100vh;
        padding: 100px 0;
    }
    .fs-container {
        flex-direction: column;
        gap: 3rem;
        padding: 0 5%;
    }
    .fs-right {
        align-items: center;
        text-align: center;
    }
    .hotspot {
        transform: translate(0, -50%) scale(0.8); /* Mobilde noktaları küçült */
    }
    .fs-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .feature-slider-section {
        padding: 80px 0;
        min-height: unset;
    }
    .fs-title {
        font-size: clamp(18px, 6vw, 2rem);
    }
    .fs-desc {
        font-size: clamp(12px, 3.5vw, 1rem);
    }
    .fs-next-btn, .fs-prev-btn {
        font-size: 2rem;
        top: auto;
        bottom: 0;
        margin-top: 0;
    }
    .fs-next-btn {
        right: 2%; /* Tamamen sağa yaslandı */
    }
    .fs-prev-btn {
        left: 2%; /* Tamamen sola yaslandı */
    }
    .fs-product-image {
        max-width: 75%; /* Resimlerin iç içe girmesini kesin olarak önlemek için biraz daha küçülttük */
        margin: 0 auto;
        display: block;
    }
}

.fs-counter {
    position: absolute;
    right: 5%;
    bottom: 5%;
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 2px;
    color: #888;
    z-index: 20;
    font-family: 'Outfit', sans-serif;
}

/* --- SWIPER SLIDER DÜZENLEMELERİ --- */
.fs-swiper-container {
    overflow: hidden;
    padding-bottom: 40px; /* Pagination için boşluk */
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-button-next,
.swiper-button-prev {
    color: #121214 !important;
}

.swiper-pagination-bullet {
    background: #aaa !important;
    opacity: 0.5 !important;
}

.swiper-pagination-bullet-active {
    background: #121214 !important;
    opacity: 1 !important;
}

@media (max-width: 768px) {
    .swiper-button-next,
    .swiper-button-prev {
        /* Okları görünür yapıyoruz, boyutlarını mobilde küçültüyoruz */
        transform: scale(0.6);
        opacity: 0.7;
    }
    .fs-swiper-container {
        padding-bottom: 30px;
        width: 100%;
        max-width: 100vw;
    }
    .swiper-slide {
        box-sizing: border-box;
        /* overflow: hidden; kaldırıldı çünkü resimlerin drop-shadow efektini (gölgelerini) kesiyordu */
    }
    .swiper-pagination {
        bottom: 0 !important;
    }
}