.reviews-widget {
    display: inline-block;
    position: relative;
    margin: 0 auto;
    font-size: 14px;
    width: 100%;
}

.reviews-container {
    position: relative;
    overflow: hidden;
}

.reviews-carousel {
    display: flex;
    transition: transform 0.3s ease;
}

.review-slide {
    min-width: 100%;
    display: flex;
    gap: 20px;
}

.review-card {
    flex: 1;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    background: #222;
    color: white;
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.reviewer-name {
    font-weight: bold;
    margin-right: 10px;
}

.review-rating {
    color: #ffa500;
    font-size: 18px;
}

.review-date {
    color: #666;
    font-size: 12px;
    margin-left: auto;
}

.review-text {
    line-height: 1.5;
    margin: 10px 0;
}

.carousel-controls {
    text-align: center;
    margin-top: 20px;
}

.carousel-btn {
    background: #333;
    color: white;
    border: none;
    padding: 10px 20px;
    margin: 0 5px;
    border-radius: 5px;
    cursor: pointer;
}

.carousel-btn:hover {
    background: #111;
}

.carousel-btn:disabled {
    background: #333;
    cursor: not-allowed;
    color: #555;
}

.carousel-indicators {
    text-align: center;
    margin-bottom: 40px;
}

.indicator {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    margin: 0 5px;
    cursor: pointer;
}

.indicator.active {
    background: #fff;
    width: 12px;
    height: 12px;
}

@media (max-width: 1320px) {
    .review-slide {
        display: block;
    }

    .review-card {
        margin-bottom: 10px;
    }
}