/* Reviews Section CSS */

/* Custom Reviews Widget Wrapper */
.reviews-widget-wrapper {
    background: #FFFFFF;
    padding: 40px 0;
    margin: 40px 0;
    border: none;
}

.reviews-widget-wrapper .container {
    max-width: 1425px;
}

/* Override Reviews.io Widget Styles */
.CarouselWidget,
.widgetContainer {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
}

/* Widget Header Styling */
.cw__header,
.header__content {
    background: transparent !important;
    border: none !important;
    padding: 20px 0 !important;
    margin-bottom: 0 !important;
}

.header__stats {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 40px !important;
    flex-wrap: wrap !important;
}

.stats__left {
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
}

.RatingVerdict {
    display: none !important;
}

/* Star Styling */
.RatingStars {
    display: flex !important;
    gap: 4px !important;
}

.RatingStars__star {
    color: #FFC700 !important;
    font-size: 20px !important;
}

/* Rating Statistics */
.stats__right {
    display: flex !important;
    align-items: center !important;
    gap: 30px !important;
}

.RatingStatistics {
    text-align: center !important;
}

.RatingStatistics__Number {
    font-size: 32px !important;
    font-weight: 700 !important;
    color: #000000 !important;
    line-height: 1 !important;
    margin-bottom: 5px !important;
}

.RatingStatistics__Text {
    font-size: 14px !important;
    color: #666666 !important;
    text-transform: none !important;
}

/* Reviews Logo */
.reviewsLogoWrap {
    display: none !important;
}

/* Hide Carousel Content (Individual Reviews) */
.cw__content,
.reviewsContainer,
.reviewWrap {
    display: none !important;
}

/* Simple Static Reviews Section (Horizontal Layout) */
.reviews-section {
    background: #F8F9FA;
    padding: 15px 0;
    margin: 0;
    border-bottom: 1px solid #E5E7EB;
}

.reviews-container {
    max-width: 1425px;
    margin: 0 auto;
}

.reviews-flex-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

/* Left side rating */
.reviews-rating-side {
    display: flex;
    align-items: center;
    gap: 15px;
}

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

.rating-stars i {
    color: #000000;
    font-size: 18px;
}

.rating-details {
    display: flex;
    flex-direction: column;
}

.rating-number {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    line-height: 1.1;
}

.rating-subtext {
    font-size: 14px;
    color: #6B7280;
}

/* Divider */
.reviews-divider {
    width: 1px;
    height: 40px;
    background: #E5E7EB;
}

/* Quote side */
.reviews-quote-side {
    max-width: 500px;
}

.quote-content {
    display: flex;
    gap: 15px;
}

.quote-content i {
    font-size: 24px;
    color: #000000;
    opacity: 0.8;
}

.quote-content p {
    font-size: 16px;
    color: #4B5563;
    font-style: italic;
    margin: 0;
    line-height: 1.5;
}

/* CTA side */
.see-all-link {
    font-size: 16px;
    font-weight: 700;
    color: #FFCC00;
    text-decoration: underline !important;
    text-underline-offset: 4px;
    transition: color 0.3s;
}

.see-all-link:hover {
    color: #E6B800;
}

/* Responsive */
@media (max-width: 991px) {
    .reviews-flex-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .reviews-divider {
        display: none;
    }
    
    .quote-content {
        flex-direction: column;
        align-items: center;
    }
}
