/* Temel stil */
.swiper-container {
    position: relative;
    max-width: 100%;
    overflow: hidden!important;
    max-height: 750px;
}

/* Sayfalama stilleri */
.swiper-pagination {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
}

.swiper-pagination .swiper-pagination-bullet {
    width: 15px;
    height: 15px;
    background-color: #fff; /* Gri ton */
    margin: 0 5px;
    border-radius: 50%!important;
    cursor: pointer;
    opacity: 0.6;
}

.swiper-pagination .swiper-pagination-bullet-active {
    background-color: #ca995a; /* Turuncu ton */
    opacity: 1;
}

.swiper-pagination-bullet:after{
    border-radius: 50%!important;
    opacity: 1;
    display: none;
}

.swiper-pagination-bullet-active:after{
    border-color: #ca995a!important;
    opacity: 1;
    display: none!important;
}

/* Düğme stilleri */
.swiper-button-next,
.swiper-button-prev {
    position: absolute;
    top: 50%;
    display: none!important;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    padding: 20px;
    background-color: #ca995a; /* Gri ton */
    color: #ca995a!important;
    border-radius: 0!important;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: #FFA500; /* Turuncu ton */
    color: #fff!important;
}

:root {
    --swiper-navigation-size: 25px!important;
}