.customer-review-carousel-wrapper {
    width: 100%;
    overflow: hidden;
    padding: 20px 0 40px;
}
.customer-review-swiper {
    width: 100%;
    padding-bottom: 40px;
}
.review-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    padding: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    box-sizing: border-box;
}
.review-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
    border: 3px solid #eee;
}
.review-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.review-text {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    font-style: italic;
    margin-bottom: 20px;
}
.review-name {
    font-size: 18px;
    font-weight: 600;
    color: #222;
    margin: 0;
}
.swiper-pagination-bullet-active {
    background: #333;
}