.ins-ppc-customer-recommends * {
    font-family: 'Figtree';
}

.ins-ppc-customer-recommends{
  padding: 90px 0;
}

/* Desktop Layout */
.ins-ppc-customer-recommends .ins-ppc-customer-slider-top {
    display: flex;
}

.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;
}
.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;
}

.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 .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;
}

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

/* Navigation Buttons */
.ins-ppc-customer-recommends .swiper-buttons {
    display: flex;
    justify-content: space-between;
}

.ins-ppc-customer-recommends .swiper-buttons button {
    position: static;
    width: 400px;
    font-size: 22px;
    font-weight: 700;
    font-family: 'Figtree';
    height: 60px;
    border-radius: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.ins-ppc-customer-recommends .swiper-button-prev,
.ins-ppc-customer-recommends .swiper-button-next {
    background-image: none;
    border: 1px solid black;
}

/* Button Hover Effects */
.ins-ppc-customer-recommends .swiper-button-prev:hover,
.ins-ppc-customer-recommends .swiper-button-next:hover,
.ins-ppc-customer-recommends .swiper-button-prev:focus,
.ins-ppc-customer-recommends .swiper-button-next:focus,
.ins-ppc-customer-recommends .swiper-button-prev:active,
.ins-ppc-customer-recommends .swiper-button-next:active {
    background: none !important;
    outline: inherit !important;
    box-shadow: inherit !important;
    border: 1px solid black;
}

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

/* 🔹 Mobile Optimization */
@media (max-width: 768px) {
    /* Stack Elements */
    .ins-ppc-customer-recommends .ins-ppc-customer-slider-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    /* Image on Top, Content Below */
    .ins-ppc-customer-recommends .ins-ppc-customer-recommends-image {
        order: 1; /* Move image to top */
        flex-basis: auto;
        display: flex;
        justify-content: center;
        margin-bottom: 15px;
    }

    .ins-ppc-customer-recommends .ins-ppc-customer-recommends-content {
        order: 2; /* Move text below image */
        padding-right: 0;
        flex-basis: auto;
        text-align: center;
    }

    /* Adjust Text for Readability */
    .ins-ppc-customer-recommends-content-mobile .slide-header-mobile {
        font-size: 6.5vw!important;
        margin-bottom: 5vw;
    }
    .ins-ppc-customer-recommends-content-mobile{
    	display: block;
    	order:-1;
    }
    .ins-ppc-customer-recommends-content h2{
    	display: none;
    }

    .ins-ppc-customer-recommends-content .slide-quote {
        font-size: 6vw;
        line-height: 1.3;
        text-align: center;
    }

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

    /* Brand Stats Layout */
    .ins-ppc-customer-recommends .slide-numbers {
        flex-direction: column;
        gap: 3vw;
        margin-top: 8vw;
        margin-bottom: 12vw;
        text-align: center;
        padding: 0 5vw;
    }

    .ins-ppc-customer-recommends .slide-numbers .brand-number {
        font-size: 8vw;
        border-left: 1px solid black;
        padding-left: 5vw;
    }

    .ins-ppc-customer-recommends .slide-numbers .brand-text {
        font-size: 5.5vw;
    }

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

    /* Ensure Pagination Dots are Visible */
    .ins-ppc-customer-recommends .swiper-pagination {
        position: relative;
        bottom: 10px;
    }

    .ins-ppc-customer-recommends .swiper-pagination-bullet {
        background-color: #bbb; /* Default Color */
        width: 10px;
        height: 10px;
        margin: 0 5px;
        opacity: 1; /* Ensure Always Visible */
    }

    .ins-ppc-customer-recommends .swiper-pagination-bullet-active {
        background-color: #00bcd4; /* Active Dot Color */
    }
}