.m-0 {
    margin: 0;
}

.filtered .video-sizer, .filtered .video {
    width: 33.33%;
}

.filtered .video{
    padding: 10px;
    display: none;
}

.filtered .video.active{
    display: block;
}

.filtered {
    display: block;
    position: relative;
    width: 100%; /* Grid'in tüm genişliğini kullanması için */
}

.filtered .content-item {
    margin-bottom: 10px;  /* Görseller arasındaki boşluğu ayarlayın */
}

.filtered .content-item .video.active {
    display: inline-block;
    vertical-align: top;
    width: 100%;  /* Genişlik %100 olmalı */
}

/*Banner*/

.banner .text-area p:nth-of-type(-n+1)
{
    font-family: "dharma-gothic-e", sans-serif !important;
}

.banner .text-area p {
    margin: 5px 0;
    font-family: "Enriqueta", sans-serif;
}

.banner .grid-3 > .video:nth-of-type(-n+2) {
    cursor: auto !important;
}

.banner .grid-3 > .video:nth-of-type(-n+2) img:hover {
    transform: inherit !important;
}

    /*Reels CSS*/
.reels {
    margin: 40px 0;
}

/* Reels ana konteyneri için flex yapısı */
.reels {
    display: flex;
    flex-wrap: nowrap;
    gap: 30px;
}

/* Sol taraftaki markalar listesi */
.reels .brands {
    flex: 0 0 25%;
    display: flex;
    flex-direction: column;
    gap: 5px;
    border-right: 1px solid #eaeaea;
    padding-right: 20px;
}

/* Marka elemanları */
.reels .brand {
    padding: 5px;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    height: 100%;
    /*border: 1px solid #ece6e6;*/
}

.reels .brand:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.reels .brand.active {
    background-color: #e8e8e8;
    font-weight: 700;
    color: #333;
    border: 1px solid #eb2f06;
}

.reels .brand .video-img-ctr {
    position: relative;
    overflow: hidden;
    height: 100%;
    background-color: #000;
}

/* Yeni: overlay katmanı */
.reels .brand .video-img-ctr::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* koyuluk oranı */
    z-index: 1;
}

/* Görsel */
.reels .brand .video-img-ctr img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transition: .3s all ease;
}

/* Başlık yazısı */
.reels .brand .video-img-ctr .title {
    position: absolute;
    left: 50%;
    top: 50%;
    color: #fff;
    z-index: 2;
    font-weight: bold;
    font-size: 23px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    transform: translate(-50%, -50%);
    font-family: "Enriqueta", sans-serif;
}

    /* Sağ taraftaki videolar alanı */
.reels .videos-wrapper{
    width: 100%;
    display: block;
}
.reels .videos {
    flex: 1;
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.reels .videos.active {
    display: grid;
}

/* Video elemanları */
.reels .videos .video {
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
}

.reels .videos .video:hover {
    transform: translateY(-5px);
}

.reels .videos .video-img-ctr {
    position: relative;
    overflow: hidden;
    background-color: #000;
    margin: 0;
    height: 500px;
}

.reels .videos .video-img-ctr img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .3s all ease;
}

.reels .videos .video-img-ctr:hover img {
    transform: scale(1.1);
}

.reels .videos .video-img-ctr .shadow-filter{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    opacity: 0.1;
}

/* Play butonu */
.reels .videos .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(2px);
    transition: all 0.3s ease;
    z-index: 2;
}

.reels .videos .play-button:before {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 0 15px 20px;
    border-color: transparent transparent transparent #fff;
    margin-left: 5px;
}

.reels .videos .video:hover .play-button {
    background-color: rgba(255, 255, 255, 0.4);
    transform: translate(-50%, -50%) scale(1.1);
}

/* Tablet ve mobil için play butonu boyutunu ayarlama */
@media screen and (max-width: 767px) /*992*/ {
    .reels .videos .play-button {
        width: 50px;
        height: 50px;
    }
    
    .reels .videos .play-button:before {
        border-width: 12px 0 12px 16px;
        margin-left: 4px;
    }
}

@media screen and (max-width: 480px) {
    .reels .videos .play-button {
        width: 40px;
        height: 40px;
    }
    
    .reels .videos .play-button:before {
        border-width: 10px 0 10px 14px;
        margin-left: 3px;
    }
}

/* Tablet Responsive */
@media screen and (max-width: 767px) /*992*/ {
    .reels {
        flex-direction: column;
        gap: 20px;
    }
    
    .reels .brands {
        flex: 0 0 100%;
        flex-direction: row;
        overflow-x: auto;
        padding-right: 0;
        border-right: none;
        border-bottom: 1px solid #eaeaea;
        padding-bottom: 15px;
        gap: 10px;
        scrollbar-width: none; /* Firefox */
    }
    
    .reels .brands::-webkit-scrollbar {
        display: none; /* Chrome, Safari ve Opera */
    }
    
    .reels .brand {
        white-space: nowrap;
        width: 100%;
    }
    
    .reels .videos {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobil Responsive */
@media screen and (max-width: 767px) {
    .reels .videos {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .reels .brand .video-img-ctr{
        height: 90px;
        margin: 0;
    }
}

@media screen and (max-width: 480px) {
    .reels .videos {
        grid-template-columns: 1fr;
    }
    
    .reels .brand {
        padding: 10px 12px;
        font-size: 14px;
    }
}

/* 404 Page */
.section-404 .row{
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    margin: 100px 0;
}

.section-404 .row .inner {
    text-align: center;
}

.section-404 .row .inner h1{
    font-size: 60px!important;
}

.section-404 .row .inner p{
    font-size: 24px!important;
}

.section-404 .row .inner .home-btn{
    display: inline-block;
    padding: 12px 30px;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    color: #fff;
    background-color: #eb2f06;
    border: none;
    border-radius: 4px;
    box-shadow: 0 4px 8px rgba(235, 47, 6, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    margin-top: 20px;
}

.section-404 .row .inner .home-btn:hover {
    background-color: #c62503;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(235, 47, 6, 0.4);
    color: #fff;
}









