.reviews-section {
    /* padding: 48px 0 0; */
    background: #ffffff;
}

.reviews-section-title {
    text-align: center;
    font-family: sans-serif;
    font-size: 28px;
    font-weight: 800;
    text-transform: uppercase;
    color: #111111;
    margin: 0 0 36px;
    letter-spacing: 0.02em;
}

.reviews-slider-wrap {
    padding: 42px 0 52px;
    background: linear-gradient(91.61deg, #EFEFEF 0%, #A6A6A6 100%);
}

.reviews-swiper {
    width: 100%;
    overflow: hidden;
}

.review-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 24px;
    min-height: 210px;
}

.review-avatar {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    border: 3px solid #a24f2a;
    padding: 3px;
    background: #ffffff;
    overflow: hidden;
    margin-bottom: 14px;
    flex-shrink: 0;
}

.review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.review-stars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-bottom: 16px;
}

.review-stars .fa-star {
    font-size: 13px;
    color: #f0f0f0;
}

.review-stars .fa-solid.fa-star {
    color: #f5c518;
}

.review-text {
    max-width: 720px;
    margin: 0 auto;
    font-family: sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.55;
    color: #000;
}

.reviews-pagination {
    position: relative;
    margin-top: 22px;
}

.reviews-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.55);
    opacity: 1;
}

.reviews-pagination .swiper-pagination-bullet-active {
    background: #ffffff;
}

.reviews-not-found {
    text-align: center;
    padding: 40px 20px;
}

.reviews-not-found p {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    color: #444444;
}

@media (max-width: 991px) {
    .reviews-section {
        padding-top: 40px;
    }

    .reviews-section-title {
        font-size: 24px;
        margin-bottom: 28px;
    }

    .reviews-slider-wrap {
        padding: 36px 0 44px;
    }

    .review-slide {
        min-height: 190px;
        padding: 0 20px;
    }

    .review-text {
        max-width: 560px;
        font-size: 12px;
    }
}

@media (max-width: 767px) {
    .reviews-section-title {
        font-size: 22px;
        margin-bottom: 24px;
    }

    .reviews-slider-wrap {
        padding: 32px 0 40px;
    }

    .review-avatar {
        width: 68px;
        height: 68px;
        margin-bottom: 12px;
    }

    .review-stars .fa-star {
        font-size: 12px;
    }

    .review-slide {
        min-height: auto;
        padding: 0 16px;
    }

    .review-text {
        max-width: 100%;
        font-size: 12px;
        line-height: 1.5;
    }
}







