﻿/* ====================*/
/* = Web Panel Ortak = */
/* ====================*/
.fs-scale {
    display: grid;
    grid-template-columns: 120px 380px 120px;
    align-items: center;
    column-gap: 16px;
    margin: 14px 0;
    font-size: 15px;
}

/* Label */
.fs-label-left,
.fs-label-right {
    font-size: 14px;
    position: relative;
    top: 14px;
    pointer-events: none;
    user-select: none;
}

.fs-label-left {
    text-align: right;
    font-weight: bold;
}

.fs-label-right {
    text-align: left;
    font-weight: bold;
}

/* === Grid === */
.fs-grid {
    position: relative;
    width: 100%;
    height: 24px;
}
    /* Ana Bar */
    .fs-grid::after {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        top: 50%;
        height: 1px;
        background: #000;
        transform: translateY(-0.5px);
    }

/* Grid -> Başlık */
.fs-title {
    font-size: 13px;
    font-weight: lighter;
    margin-bottom: 4px;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

    .fs-title::after {
        content: "";
        position: absolute;
        left: 50%;
        bottom: 0;
        width: 7px;
        height: 7px;
        border-right: 1px solid #999;
        border-bottom: 1px solid #999;
        transform: translateX(-50%) rotate(45deg);
    }

/* Grid > Tick */
.fs-ticks {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%; /* 👈 Bar Merkez */
    height: 12px;
    pointer-events: none;
}

    .fs-ticks span {
        position: absolute;
        width: 1px;
        height: 12px;
        background: #000;
        transform: translate(-0.5px, 50%);
        bottom: 12px;
    }

/* Grid > Mavi Nokta */
.fs-compare {
    position: absolute;
    top: 50%;
    width: 12px;
    height: 12px;
    background: #1e40ff;
    border: 2px solid #1e40ff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 2; /* Yeşil noktanın altında */
}

/* Grid > Yeşil Nokta */
.fs-marker {
    position: absolute;
    top: 50%;
    width: 16px;
    height: 16px;
    background: #fff; /* İç beyaz */
    border: 2px solid #2fa84f; /* Dış yeşil çerçeve */
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    pointer-events: none;
}
    /* İçteki yeşil kare */
    .fs-marker::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 6px;
        height: 6px;
        background: #2fa84f;
        transform: translate(-50%, -50%);
        border-radius: 1px; /* çok hafif yumuşatma */
    }

/* Grid > Teknik Özellikler */
.fs-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    align-items: center;
}

/* Grid > Renkli Değilse Bar Pasif */
.fs-color-disabled {
    opacity: 0.3;
}

    /* Grid > Renkli Değilse Yeşil İkon Görünmesin */
    .fs-color-disabled .fs-marker {
        display: none;
    }

/* SOL: kalan alanda ortala */
.fs-left {
    display: flex;
    align-items: center;
    justify-content: center; /* 👈 kendi alanında ortala */
    text-align: center;
}
    /* görsel */
    .fs-left img {
        max-width: 300px; /* ihtiyaca göre */
        width: 100%;
        height: auto;
    }

/* SAĞ: 600px’lik alan */
.fs-right {
    width: 100%;
}

/* Grid Altındaki Açıklamalar */
.fs-reference {
    text-align: center;
    font-size: 13px;
    font-weight: bold;
    color: #1e40ff; /* PROVIA mavi */
}

    .fs-reference .alt {
        color: #2fa84f; /* yeşil (PROVIA dışı) */
    }



/* ===================*/
/* ===== Panel ====== */
/* ===================*/

/* Grid > Parameter Slider */
.fs-grid-div {
    position: absolute;
    top: 0;
    bottom: 0;
    cursor: pointer;
}

    .fs-grid-div:hover {
        background: rgba(0,0,0,0.04);
    }

/* Grid > Gerçek range gizli */
input[type=range] {
    display: none;
}

/* ===================*/
/* ===== Web ===== */
/* ===================*/

/* ===== Film Simulation Nav ===== */
.film-simulation-nav {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    overflow-x: hidden;
}

/* ===== Thin full-width divider (section-aware) ===== */
.film-simulation-divider {
    height: 1px;
    margin: 8px -10px 12px; /* 👈 sadece 10px sağ–sol taşır */
    background-color: rgba(0, 0, 0, 0.12);
}

/* ===== Strip ===== */
.film-simulation-nav__strip-ctn {
    width: 100%;
    overflow: hidden;
}

.film-simulation-nav__strip {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px;
}

    .film-simulation-nav__strip::-webkit-scrollbar {
        display: none;
    }

/* ===== Thumb ===== */
.film-simulation-nav__thumb {
    position: relative;
    flex: 0 0 auto;
    width: 60px;
    text-align: center;
    opacity: 1;
    line-height: 0; /* corner span fix */
    transform: scale(0.75);
}

    .film-simulation-nav__thumb img {
        width: 100%;
        display: block;
    }

/* ===== Active Thumb ===== */
.film-simulation-nav__thumb--active {
    opacity: 1;
    transform: scale(1.04);
}

    /* corner base */
    .film-simulation-nav__thumb--active::before,
    .film-simulation-nav__thumb--active .fs-corner {
        content: "";
        position: absolute;
        width: 10px;
        height: 10px;
        border-color: #111;
        pointer-events: none;
    }

    /* sol üst */
    .film-simulation-nav__thumb--active::before {
        top: -6px;
        left: -6px;
        border-top: 1px solid #111;
        border-left: 1px solid #111;
    }

    /* sağ üst */
    .film-simulation-nav__thumb--active .corner-tr {
        top: -6px;
        right: -6px;
        border-top: 1px solid #111;
        border-right: 1px solid #111;
    }

    /* sol alt */
    .film-simulation-nav__thumb--active .corner-bl {
        bottom: -6px;
        left: -6px;
        border-bottom: 1px solid #111;
        border-left: 1px solid #111;
    }

    /* sağ alt */
    .film-simulation-nav__thumb--active .corner-br {
        bottom: -6px;
        right: -6px;
        border-bottom: 1px solid #111;
        border-right: 1px solid #111;
    }

/* ===== Corner Spans ===== */
.fs-corner {
    display: block;
    position: absolute;
    line-height: 0;
    pointer-events: none;
}

/* ===== Button ===== */
.film-simulation-nav__button {
    border: none;
    background: transparent;
    padding: 0;
    outline: none;
    box-shadow: none;
    cursor: grab;
}

.film-simulation-nav__thumb--active .film-simulation-nav__button {
    padding: 4px;
    box-sizing: border-box;
    cursor: default;
}

.film-simulation-nav__button:hover {
    opacity: .75;
    transition: transform .2s ease, opacity .2s ease;
}

/* ===== Chevron ===== */
.film-simulation-nav__chevron {
    background: none;
    border: 0;
    cursor: pointer;
    padding: 0 8px;
}

    .film-simulation-nav__chevron svg {
        color: rgb(102 102 102);
        width: 1.5rem;
        height: 1.5rem;
    }

    .film-simulation-nav__chevron:hover {
        opacity: .5;
        transition: transform .2s ease, opacity .2s ease;
    }

/* ===== Film Simulation Title ===== */
.entry-header--film-simulation__title {
    text-align: center;
    margin: 50px 0 40px;
}

.entry-header--film-simulation__title-text {
    display: inline-block;
    font-size: 40px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #000;
}

.faded-separator-film-simulation {
    max-width: 700px;
    height: 2px;
    border: 0;
    margin: 32px auto 0;
    background: linear-gradient( to right, rgba(0,0,0,0), rgba(0,0,0,0.4), rgba(0,0,0,0) );
}

/* ORTA BLOK */
.fs-scale-center {
    width: 380px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.fs-provia .fs-marker {
    display: none;
}

.film-sim-content {
    margin-bottom: 5rem !important;
    margin-top: 5rem !important;
}

.film-sim-gallery {
    max-width: 100%;
    overflow: hidden;
}

.bx-wrapper {
    box-shadow: none;
    border: 0;
    background: transparent;
}

.bx-center-gallery .bx-item {
    display: flex;
    align-items: center; /* görsel dikey ortada */
    justify-content: center;
    height: 700px; /* 🔒 REFERANS */
}

.bx-center-gallery img {
    max-height: 700px;
    width: auto;
    display: block;
}

.gallery-media {
    text-align: right;
}

    .gallery-media .artist {
        font-size: 12px;
        padding: 5px 0px 15px 0px;
        display: inline-block;
        color: #000;
    }

/* ===== Mobile ===== */
@media (max-width: 980px) {
    /* === Parameter Slider - GRID CONTAINER === */
    .fs-layout {
        grid-template-columns: 1fr;
        row-gap: 25px;
    }

    .fs-right {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {

    .film-simulation-nav__strip {
        gap: 3px;
        padding: 10px 6px;
    }

    .film-simulation-nav__chevron {
        padding: 0 4px;
    }

    .entry-header--film-simulation__title {
        margin: 40px 0 30px;
    }

    .entry-header--film-simulation__title-text {
        font-size: 26px;
        letter-spacing: 0.08em;
        line-height: 1.25;
        max-width: 90%;
        word-break: break-word;
    }

    .faded-separator-film-simulation {
        max-width: 320px;
        height: 1px;
        margin-top: 20px;
    }

    .fs-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}
