.reviews-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.review-card {
    background: #F7F7F7;
    border-radius: 16px;
    padding: 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 300px;
}

.review-content {
    flex-grow: 1;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.3;
    color: #231F20;
    overflow: hidden;
}

.read-more {
    color: #F7C115;
    cursor: pointer;
    margin-top: 10px;
    font-weight: 500;
}

.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    gap: 8px;
}

.review-info {
    flex-grow: 1;
}

.review-author {
    font-weight: 600;
    font-size: 18px;
    color: #333;
    margin-bottom: 5px;
}

.review-route {
    font-size: 14px;
    color: #666;
}

.review-avatar {
    flex-shrink: 0;
    background: white;
    border-radius: 100%;
    overflow: hidden;
    border: 2px solid #FDEDB9;
    max-width: 64px;
    max-height: 64px;
}

.review-avatar svg {
    top: 5px;
    position: relative;
}

/* Swiper customization */
.swiper {
    overflow: hidden;
}

.swiper-wrapper {
    align-items: stretch;
}

.swiper-slide {
    height: 100%;
    display: flex;
}

.swiper-pagination {
    position: relative;
    margin-top: 20px;
}

.swiper-pagination-bullet {
    width: 160px;
    height: 8px;
    background: #F7F7F7;
    border-radius: 8px;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #F7C115;
}

/* Navigation buttons */
.reviews-carousel-navigation {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 8px;
}

.swiper-button-next,
.swiper-button-prev {
    width: 64px;
    height: 64px;
    background: #F7C115;
    border-radius: 16px;
    padding: 12px 16px;
    color: white;
    transition: all 0.3s ease;
    position: relative;
    margin: 0;
    top: auto;
    left: auto;
    right: auto;
    transform: none;
    color: #231F20;
}

.swiper-button-disabled {
    background-color: #4A4A4A;
    color: white;
    opacity: 1 !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 18px;
    font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: #e6b013;
    transform: scale(1.1);
}

.swiper-button-disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
