/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
.owl-carousel,.owl-carousel .owl-item{-webkit-tap-highlight-color:transparent;position:relative}.owl-carousel{display:none;width:100%;z-index:1}.owl-carousel .owl-stage{position:relative;-ms-touch-action:pan-Y;touch-action:manipulation;-moz-backface-visibility:hidden}.owl-carousel .owl-stage:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0}.owl-carousel .owl-stage-outer{position:relative;overflow:hidden;-webkit-transform:translate3d(0,0,0)}.owl-carousel .owl-item,.owl-carousel .owl-wrapper{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0)}.owl-carousel .owl-item{min-height:1px;float:left;-webkit-backface-visibility:hidden;-webkit-touch-callout:none}.owl-carousel .owl-item img{display:block;width:100%}.owl-carousel .owl-dots.disabled,.owl-carousel .owl-nav.disabled{display:none}.no-js .owl-carousel,.owl-carousel.owl-loaded{display:block}.owl-carousel .owl-dot,.owl-carousel .owl-nav .owl-next,.owl-carousel .owl-nav .owl-prev{cursor:pointer;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel .owl-nav button.owl-next,.owl-carousel .owl-nav button.owl-prev,.owl-carousel button.owl-dot{background:0 0;color:inherit;border:none;padding:0!important;font:inherit}.owl-carousel.owl-loading{opacity:0;display:block}.owl-carousel.owl-hidden{opacity:0}.owl-carousel.owl-refresh .owl-item{visibility:hidden}.owl-carousel.owl-drag .owl-item{-ms-touch-action:pan-y;touch-action:pan-y;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel.owl-grab{cursor:move;cursor:grab}.owl-carousel.owl-rtl{direction:rtl}.owl-carousel.owl-rtl .owl-item{float:right}.owl-carousel .animated{animation-duration:1s;animation-fill-mode:both}.owl-carousel .owl-animated-in{z-index:0}.owl-carousel .owl-animated-out{z-index:1}.owl-carousel .fadeOut{animation-name:fadeOut}@keyframes fadeOut{0%{opacity:1}100%{opacity:0}}.owl-height{transition:height .5s ease-in-out}.owl-carousel .owl-item .owl-lazy{opacity:0;transition:opacity .4s ease}.owl-carousel .owl-item .owl-lazy:not([src]),.owl-carousel .owl-item .owl-lazy[src^=""]{max-height:0}.owl-carousel .owl-item img.owl-lazy{transform-style:preserve-3d}.owl-carousel .owl-video-wrapper{position:relative;height:100%;background:#000}.owl-carousel .owl-video-play-icon{position:absolute;height:80px;width:80px;left:50%;top:50%;margin-left:-40px;margin-top:-40px;background:url(owl.video.play.png) no-repeat;cursor:pointer;z-index:1;-webkit-backface-visibility:hidden;transition:transform .1s ease}.owl-carousel .owl-video-play-icon:hover{-ms-transform:scale(1.3,1.3);transform:scale(1.3,1.3)}.owl-carousel .owl-video-playing .owl-video-play-icon,.owl-carousel .owl-video-playing .owl-video-tn{display:none}.owl-carousel .owl-video-tn{opacity:0;height:100%;background-position:center center;background-repeat:no-repeat;background-size:contain;transition:opacity .4s ease}.owl-carousel .owl-video-frame{position:relative;z-index:1;height:100%;width:100%}
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&display=swap');

:root {
    --bg-color: #ffffff;
    --text-color: #333333;
    --accent: #ffcc00;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Inter', sans-serif;
    margin: 0;
    overflow-x: hidden;
    padding-bottom: 50px;
}

.slider-main-container {
    width: 100%;
    padding: 0;
}

/* Skeleton Loading Animation */
@keyframes shimmer {
    0% { background-position: -468px 0; }
    100% { background-position: 468px 0; }
}

.skeleton {
    background: #f6f7f8;
    background-image: linear-gradient(to right, #f6f7f8 0%, #edeef1 20%, #f6f7f8 40%, #f6f7f8 100%);
    background-repeat: no-repeat;
    background-size: 800px 100%;
    display: inline-block;
    position: relative;
    animation: shimmer 1.5s infinite linear;
}

/* Progress Bar */
.gallery-progress-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(0, 0, 0, 0.05);
    z-index: 200;
}

.gallery-progress-bar {
    width: 0%;
    height: 100%;
    background: var(--accent);
    transition: width 0.1s linear;
}

/* Main Slider */
#sync1 {
    margin-bottom: 20px;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    background: #f8f8f8;
    width: 100%;
    aspect-ratio: 16 / 9;
}

.owl-carousel, .owl-stage-outer, .owl-stage, .owl-item {
    height: 100%;
}

.owl-carousel .item {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.owl-carousel .item a {
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
}

.owl-carousel .item a::after {
    content: '\f00e'; /* FontAwesome search-plus icon */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
    color: #fff;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 5;
    pointer-events: none;
    text-shadow: 0 0 10px rgba(0,0,0,0.2);
}

.owl-carousel .item:hover a::after {
    opacity: 0.5; /* Hafif saydam büyüteç */
}

.owl-carousel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 4px;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

#sync1 .item:hover img {
    transform: scale(1.05);
}

/* Main Slider Nav Buttons */
.sync1-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #000;
    width: 50px; /* Kare form için genişletildi */
    height: 50px;
    border-radius: 0; /* Yuvarlak form kaldırıldı, kare yapıldı */
    font-size: 18px;
    cursor: pointer;
    z-index: 99;
    transition: all 0.3s ease;
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.sync1-nav button:hover { background: rgba(255, 255, 255, 0.9); transform: translateY(-50%); }
.sync1-nav .nav-prev-1 { left: 0; } /* Sınırdan başlatıldı */
.sync1-nav .nav-next-1 { right: 0; }

/* Thumbnails - Optimized and simplified structure */
.thumbnails-container {
    position: relative;
    padding: 0; /* Boşluklar kaldırıldı, ana resimle tam hizada */
    width: 100%;
}

.thumbnails-container .owl-stage-outer {
    background: none;
    padding: 0;
    height: auto;
}

.thumbnails-container .item {
    cursor: pointer;
    transition: all 0.4s ease;
    height: auto !important;
}

.thumbnails-container .item img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    filter: brightness(0.6);
    transition: all 0.4s ease;
    border-radius: 4px;
}

.owl-item.synced .item img {
    filter: brightness(1) !important;
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.thumbnails-container .owl-stage {
    display: flex;
    justify-content: center;
    margin: 0 auto;
}

/* Thumbnail Side Buttons */
.thumbnails-container .owl-nav { display: block !important; }

.thumbnails-container .owl-nav button {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto 0 !important;
    background: rgba(255, 255, 255, 0.2) !important;
    color: rgba(0, 0, 0, 0.6) !important;
    font-size: 24px !important;
    width: 40px;
    height: 100%;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 4px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

.thumbnails-container .owl-nav .owl-prev { 
    left: 0; 
    border-radius: 4px 0 0 4px !important; 
    width: 30px !important; 
    height: 100% !important;
} 
.thumbnails-container .owl-nav .owl-next { 
    right: 0; 
    border-radius: 0 4px 4px 0 !important; 
    width: 30px !important; 
    height: 100% !important;
}

.thumbnails-container .owl-nav button:hover { background: rgba(0, 0, 0, 0.1) !important; color: #000 !important; }
.thumbnails-container .owl-nav button.disabled { opacity: 0.1 !important; }
