﻿#gallery2Container {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
    padding-left: 3%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
}

    #gallery2Container > * {
        flex-shrink: 0;
    }

/* YENİ: Tek Satıra Sığdırma (Dinamik Flexbox ile) */
.priority-scroller-container {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    width: 100%;
    overflow-x: auto; /* Öğeler sığmazsa kaydırmaya izin ver */
    padding: 10px 0;
    box-sizing: border-box;
    gap: 15px; /* Öğeler arası boşluk için modern yöntem */
}

/* YENİ: Öğelerin esnek ve min. genişlikte olmasını sağlar */
.priority-item-wrapper {
    flex: 1 1 0; /* Büyü, küçül, temel boyut 0 */
    min-width: 100px; /* Bir öğenin alabileceği min genişlik */
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease;
    height:150px;
}

    .priority-item-wrapper:hover {
        transform: translateY(-5px);
    }

.priority-item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

    .priority-item .media-wrapper {
        width: 100%;
        /* padding-top SİLİNDİ. */
        position: relative;
        background-color: #f0f0f0;
        /* YENİ: JS'nin 'padding-bottom' kuralının 
           doğru çalışması için bu iki satır eklendi */
        height: 100%;
        overflow: hidden;
    }

        .priority-item .media-wrapper .item-media  {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;  /*Resmin esnemesini engeller, kutuyu doldurur */
        }

    /*.priority-item .media-wrapper {
        width: 100%;
        padding-top: 125%;*/ /* 4:5 Dikey Oran */
        /*position: relative;
        background-color: #f0f0f0;
    }*/

   /* .priority-item .item-media {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }*/

    .priority-item .vitrin_menu {
        padding: 12px;
        font-size: 14px;
        font-weight: 600;
        text-align: center;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        min-height: 54px;
    }

/* YENİ: CSS Sütunları SİLİNDİ, Masonry.js stilleri GELDİ */
        
        /* #imageGrid'in kendisine opacity/gizleme GEREKMEZ */
#imageGrid {
    padding-top: 20px;
    box-sizing: border-box;
    opacity: 1;
    transition: opacity 0.4s ease-in-out;
}
    #imageGrid.is-loading {
        opacity: 0; /* Hazırlık sahnesini gizler */
    }

        /* YENİ: Masonry 'item' stili (8 Sütun) */
            /* YENİ: Masonry 'item' stili (8 Sütun) */
            #imageGrid .item {
                width: 11.5%; /* 8 Sütun için genişlik */
                margin-bottom: 15px;
                border-radius: 12px;
                overflow: hidden;
                box-shadow: 0 2px 4px rgba(0,0,0,0.05);
                /* DİKKAT: height ve padding-bottom SİLİNDİ.
               CSS artık yüksekliğe HİÇ KARIŞMIYOR.
            */
                background-color: #f0f0f0; /* Resim yüklenene kadar gri kutu */
            }


                /* YENİ: KAYMAYI ÖNLEYEN GERÇEK KURAL (ALTIN KURAL)
           Bu, JS'nin oluşturacağı *iç sarmalayıcıya* (wrapper) uygulanır. */
                #imageGrid .item .item-aspect-ratio-wrapper {
                    position: relative;
                    height: 0;
                    width: 100%;
                }

        /* Medya (Resim/Video) stilleri */
        #imageGrid .item .item-media,
        #imageGrid .item .item-media-wrapper {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        /* Resimlerin esnemesini engelle, kırparak doldur */
        #imageGrid .item .item-media {
            object-fit: cover;
        }
        
        /* Iframe'ler (Youtube) için */
        #imageGrid .item .item-media-wrapper {
             padding-bottom: 0; /* Iframe'de padding'e gerek yok */
             height: 100%;
        }

        /* YENİ: 8 Sütun için duyarlılık (responsive) ayarları */
        @media (max-width: 1600px) {
            #imageGrid .item { width: 13.5%; } /* 7 sütun */
        }
        @media (max-width: 1400px) {
            #imageGrid .item { width: 15.5%; } /* 6 sütun */
        }
        @media (max-width: 1200px) {
            #imageGrid .item { width: 19%; } /* 5 sütun */
        }
        @media (max-width: 991px) {
            #imageGrid .item { width: 32%; } /* 3 sütun */
        }
        @media (max-width: 576px) {
            #imageGrid .item { width: 48%; } /* 2 sütun */
        }

/* Sonsuz Kaydırma Tetikleyicisi */
#scroll-trigger {
    height: 150px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

    #scroll-trigger .loader {
        display: none;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    #scroll-trigger.loading .loader {
        display: block;
        opacity: 1;
    }

/* Ana İçerik Wrapper'ı (index.html'deki col-12.main-content-wrapper için) */
.col-12.main-content-wrapper {
    /* Bootstrap'in flex-basis: 100% kuralını eziyoruz */
    flex-basis: 90%;
    max-width: 90%;
    /* Bootstrap'in sola yaslamasını iptal edip ortalıyoruz */
    float: none !important;
    margin-left: auto !important;
    margin-right: auto !important;
    /* İç padding'leri sıfırlıyoruz */
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* Masaüstü Sol Menü Stilleri */
body.ls-toggle-menu #leftsidebar {
    width: 100px; /* Genişliği 100px'e sabitle (80 yerine) */
    box-shadow: 1px 0 5px -2px rgba(0, 0, 0, 0.15);
}

    body.ls-toggle-menu #leftsidebar .navbar-brand {
        display: flex;
        justify-content: center;
        padding-top: 15px;
        padding-bottom: 20px;
    }

        body.ls-toggle-menu #leftsidebar .navbar-brand a {
            display: none;
        }

        body.ls-toggle-menu #leftsidebar .navbar-brand .btn-menu {
            font-size: 26px;
            color: #111;
        }

    /* Birinci Seviye Menü İkonları */
    body.ls-toggle-menu #leftsidebar .menu .list > li > a {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 60px;
        padding: 0;
        width: 60px;
        margin: 5px auto;
        border-radius: 10px;
    }

        body.ls-toggle-menu #leftsidebar .menu .list > li > a i {
            font-size: 26px;
            margin-right: 0;
            line-height: 1;
        }

        body.ls-toggle-menu #leftsidebar .menu .list > li > a span {
            display: none !important;
        }

    /* Açılan Alt Menü Kapsayıcısı */
    body.ls-toggle-menu #leftsidebar .menu .list .ml-menu {
        position: absolute;
        left: 100px; /* 100px'lik ana menünün sağından başla */
        top: 0;
        width: 250px;
        background-color: #ffffff;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        border-radius: 0 6px 6px 0;
        z-index: 1051;
    }

        /* Açılan Alt Menü Linkleri (Flexbox ile hizalı) */
        body.ls-toggle-menu #leftsidebar .menu .list .ml-menu li a {
            display: flex !important;
            align-items: center !important;
            height: auto;
            width: 100%;
            padding: 12px 20px;
            margin: 0;
            border-radius: 0;
        }

            body.ls-toggle-menu #leftsidebar .menu .list .ml-menu li a span {
                display: inline !important;
            }

            body.ls-toggle-menu #leftsidebar .menu .list .ml-menu li a::before {
                position: static !important;
                margin-right: 10px;
                line-height: 1;
            }

            body.ls-toggle-menu #leftsidebar .menu .list .ml-menu li a i {
                display: none;
            }

/* Masaüstü İçerik Hizalama (Sol menü kapalıyken) */
body.ls-toggle-menu #global-header-placeholder,
body.ls-toggle-menu #gallery2Container,
body.ls-toggle-menu .container-fluid {
    /*margin-left: 100px !important;
    width: calc(100% - 100px) !important;*/
    height:78px;
}


/* YENİ: MOBİLDE ÜST BARIN (priority-scroller)
   SABİT YÜKSEKLİK (150px) SORUNUNU ÇÖZMEK İÇİN */

/*@media (max-width: 991px) {*/

    /* 1. Konteynerin "tüm kutuları eşitle" (stretch) özelliğini kapat */
    /*.priority-scroller-container {
        align-items: flex-start;*/ /* 'stretch' yerine 'flex-start' */
    /*}*/

    /* 2. Wrapper'daki (sarmalayıcı) 150px'lik sabit yüksekliği iptal et */
    /*.priority-item-wrapper {
        height: auto !important;*/ /* '150px'i ezer */
    /*}*/

    /* 3. İç kutunun %100 yükseklik almasını iptal et */
    /*.priority-item {
        height: auto !important;*/ /* 'height: 100%'ü ezer */
    /*}
}*/