.ins-ppc-customer-recommends * {
    font-family: 'Figtree', sans-serif;
    box-sizing: border-box;
}

.ins-ppc-customer-recommends {
    padding: 90px 0;
    width: 100%;
    overflow: hidden; /* Taşmaları engeller */
}

/* --- Desktop Layout --- */
.ins-ppc-customer-recommends .ins-ppc-customer-slider-top {
    display: flex;
    align-items: flex-start; /* İçeriğin yukarı hizalanmasını sağlar */
}

.ins-ppc-customer-recommends .ins-ppc-customer-recommends-content {
    flex-basis: 55%;
    padding-right: 90px;
}

.ins-ppc-customer-recommends-content h2 {
    font-size: 35px;
    line-height: 1.3;
    margin-bottom: 20px;
}

.ins-ppc-customer-recommends-content .ins-ppc-customer-recommends-content-mobile {
    display: none;
}

.ins-ppc-customer-recommends-content .slide-quote {
    text-align: left;
    color: #454545;
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    margin-bottom: 20px;
}

.ins-ppc-customer-recommends-content .slide-title {
    text-align: left;
    color: #051235;
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
}

.ins-ppc-customer-recommends .ins-ppc-customer-recommends-image {
    flex-basis: 45%;
}

.ins-ppc-customer-recommends .ins-ppc-customer-recommends-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px; /* İsteğe bağlı estetik */
}

/* Stats Area */
.ins-ppc-customer-recommends .slide-numbers {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    margin-bottom: 35px;
}

.ins-ppc-customer-recommends .slide-numbers .brand-number {
    text-align: left;
    color: #051235;
    font-size: 29px;
    font-weight: 700;
    line-height: 30px;
    border-left: 1.5px solid black;
    padding-left: 10px;
    margin-bottom: 5px;
}

.ins-ppc-customer-recommends .slide-numbers .brand-text {
    text-align: left;
    color: #454545;
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
}

/* --- Navigation Buttons --- */
.ins-ppc-customer-recommends .swiper-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    position: relative;
    z-index: 10;
}

/* Buton stilleri */
.ins-ppc-customer-recommends .ins-nav-prev,
.ins-ppc-customer-recommends .ins-nav-next {
    position: static; /* Absolute değil static, akış içinde kalsın */
    width: 48%; /* Genişlik ayarı */
    max-width: 400px;
    font-size: 22px;
    font-weight: 700;
    font-family: 'Figtree', sans-serif;
    height: 60px;
    border-radius: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    background: transparent;
    border: 1px solid black;
    cursor: pointer;
    transition: all 0.3s ease;
    /* Swiper varsayılanlarını ezmek için: */
    background-image: none !important; 
    color: #000;
}

/* Hover Effects */
.ins-ppc-customer-recommends .ins-nav-prev:hover,
.ins-ppc-customer-recommends .ins-nav-next:hover {
    background-color: #f0f0f0 !important;
    border-color: #000;
}

.ins-ppc-customer-recommends-content-mobile {
    display: none;
}

/* 🔹 Mobile Optimization */
@media (max-width: 768px) {
    .ins-ppc-customer-recommends {
        padding: 40px 0;
    }

    .ins-ppc-customer-recommends .ins-ppc-customer-slider-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    /* Image on Top */
    .ins-ppc-customer-recommends .ins-ppc-customer-recommends-image {
        order: 1;
        width: 100%;
        margin-bottom: 20px;
    }

    /* Content Order */
    .ins-ppc-customer-recommends .ins-ppc-customer-recommends-content {
        order: 2;
        padding-right: 0;
        width: 100%;
        text-align: center;
    }

    /* Mobile Headers */
    .ins-ppc-customer-recommends-content-mobile {
        display: block;
        order: -1; /* En üstte başlık */
        width: 100%;
        margin-bottom: 20px;
    }

    .ins-ppc-customer-recommends-content-mobile .slide-header-mobile {
        font-size: 28px !important;
        text-align: center;
        line-height: 1.2;
    }

    .ins-ppc-customer-recommends-content h2 {
        display: none; /* Desktop başlığı gizle */
    }

    .ins-ppc-customer-recommends-content .slide-quote {
        font-size: 18px;
        line-height: 1.4;
        text-align: center;
    }

    .ins-ppc-customer-recommends-content .slide-title {
        font-size: 16px;
        text-align: center;
    }

    /* Brand Stats */
    .ins-ppc-customer-recommends .slide-numbers {
        flex-direction: column;
        gap: 20px;
        margin-top: 30px;
        margin-bottom: 30px;
        text-align: center;
        padding: 0 10px;
    }

    .ins-ppc-customer-recommends .slide-numbers .brand-number-container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .ins-ppc-customer-recommends .slide-numbers .brand-number {
        font-size: 24px;
        border-left: none; /* Mobilde çizgiyi kaldır veya alta al */
        border-bottom: 2px solid black;
        padding-left: 0;
        padding-bottom: 5px;
        margin-bottom: 10px;
        width: fit-content;
    }

    .ins-ppc-customer-recommends .slide-numbers .brand-text {
        font-size: 16px;
        text-align: center;
    }

    /* Hide Navigation Buttons on Mobile */
    .ins-ppc-customer-recommends .swiper-buttons {
        display: none !important;
    }

    /* Pagination */
    .ins-ppc-customer-recommends .swiper-pagination {
        position: relative;
        margin-top: 20px;
        bottom: 0;
    }

    .ins-ppc-customer-recommends .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        margin: 0 6px;
        opacity: 0.5;
        background: #000;
    }

    .ins-ppc-customer-recommends .swiper-pagination-bullet-active {
        opacity: 1;
        background: #000;
    }
}