/* Reviews & Ratings Widget Styles */
.reviews-ratings-container {
    padding: 40px 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.reviews-header {
    margin-bottom: 20px;
}

.reviews-title {
    font-size: 40px;
    font-weight: 400;
    color: #004080;
    margin: 0;
}

.reviews-summary {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.rating-score {
    font-size: 80px;
    font-weight: 700;
    color: #004080;
    line-height: 1;
}

.rating-stars-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.rating-stars {
    display: flex;
    gap: 2px;
}

.star {
    color: #ddd;
    font-size: 30px;
    margin-bottom: 0;
}

.star.filled {
    color: #FFA500;
}

.star.half {
    background: linear-gradient(90deg, #FFA500 50%, #ddd 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.reviews-count {
    font-size: 18px;
    color: #000000;
    font-weight: 600;
}

.carousel-controls {
    margin-left: auto;
    display: flex;
    gap: 12px;
}

.carousel-btn {
    border: 2px solid #252525;
    background: white;
    border-radius: 50%;
/*     font-size: 30px; */
    line-height: 0.4;
    padding: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #000000;
}

.carousel-btn:hover {
    border-color: #004080;
    color: #004080;
    background: #f5f5f5;
}

.carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

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

.reviews-track {
    display: flex;
    gap: 20px;
    transition: transform 0.3s ease-in-out;
}

.review-card {
    min-width: calc(25% - 15px);
    padding: 10px;
}

.review-card .review-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 5px;
}

.review-card .star {
    font-size: 20px;
}

.review-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin: 0 0 12px 0;
    line-height: 1.4;
}

.review-text {
    font-size: 16px;
    font-weight: 400;
    color: #696969;
    line-height: 1.4;
}

.review-author {
    font-size: 18px;
    font-weight: 600;
    font-style: italic;
    color: #004080;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .review-card {
        min-width: calc(33.333% - 14px);
    }
}

@media (max-width: 768px) {
    .reviews-title {
        font-size: 28px;
    }
    
    .rating-score {
        font-size: 56px;
    }
    
    .reviews-summary {
        gap: 20px;
    }
    
    .review-card {
        min-width: calc(50% - 10px);
    }
    
    .carousel-controls {
        margin-left: 0;
        width: 100%;
        justify-content: flex-end;
    }
}

@media (max-width: 480px) {
    .reviews-ratings-container {
        padding: 20px 10px;
    }
    
    .reviews-title {
        font-size: 24px;
    }
    
    .rating-score {
        font-size: 48px;
    }
    
    .review-card {
        min-width: 100%;
    }
    
    .reviews-summary {
        flex-direction: column;
        align-items: flex-start;
    }
}