/* 
 * Featured Reviews Carousel CSS
 * Extends the existing reviews styles with carousel-specific styling
 */

/* Main container */
.featured-reviews-container {
    max-width: 100%;
    background-color: #FDFFFA;
    color: #EDE7E3;
    position: relative;
    padding: 6rem 0;
}

/* Reviews summary for featured section */
.featured-reviews-summary {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
}

.featured-reviews-summary .reviews-heading {
    color: #574B40;
    font-family: Cirka;
    font-size: 2.25rem;
    font-style: normal;
    font-weight: 400;
    line-height: 80%; 
    margin-bottom: 0;
}

.featured-reviews-summary .average-rating-number {
    font-size: 1rem;
    margin: 0.5rem 0;
    font-family: 'proxima-nova', sans-serif;
    color: #574B40;
}

.featured-reviews-summary .stars-display {
    font-size: 2rem;
    margin: 0;
    color: #161616;
}

.featured-reviews-summary .star-full svg path {
    fill: #A89133;
}

.featured-reviews-summary .star-half svg path {
    fill: #A89133;
    opacity: .5;
}

.featured-reviews-summary .rating-count {
    font-size: 1rem;
    color: #ccc;
    margin-top: 0.5rem;
}

/* Carousel styling */
.featured-reviews-carousel {
    position: relative;
    margin-bottom: 3rem;
    padding: 0 10% 0 0;
    overflow: hidden;
}

/* Override the standard review-item styling for carousel context */
.featured-reviews-carousel .review-item {
    background-color: #E9ECE4;
    margin: 0 15px;
    padding: 1.25rem;
    border-radius: 20px;
    min-height: 300px;
    max-height: 450px;
    overflow: hidden;
}

.featured-reviews-carousel .slick-list {
    overflow: visible;
}

.featured-reviews-carousel .review-header {
    margin-bottom: 1.5rem;
}

.featured-reviews-carousel .reviewer-name {
}

.featured-reviews-carousel .verified-badge {
    background: #35263D;
    color: #E2D3D6;
    padding: 0.2em 0.75em;
    font-size: 0.8125rem;
    border-radius: 50px;
    font-weight: normal;
    font-family: 'proxima-nova', sans-serif;
}

.featured-reviews-carousel .review-title {
    font-family: "Cirka", serif;
    font-size: 1.5rem;
    color: #161616;
    margin-bottom: 5px;
}

.featured-reviews-carousel .review-text {
    color: #161616;
    font-size: 0.95rem;
    line-height: 1.25rem;
    font-family: 'proxima-nova';
    font-weight: 400;
    letter-spacing: .01rem;
}

/* Slick slider custom styles */
.featured-reviews-carousel .slick-dots {
    bottom: -40px;
}

.featured-reviews-carousel .slick-dots li button:before {
    color: white;
    opacity: 0.5;
    font-size: 10px;
}

.featured-reviews-carousel .slick-dots li.slick-active button:before {
    color: white;
    opacity: 1;
}

.featured-reviews-carousel .slick-prev,
.featured-reviews-carousel .slick-next {
    z-index: 10;
    width: auto;
    height: auto;
    padding: 6px 9px;
    background: none;
    font-size: 0;
    line-height: 0;
}

.featured-reviews-carousel .slick-prev {
    left: 0px;
}

.featured-reviews-carousel .slick-next {
    right: 0px;
}

/* Message for no featured reviews */
.no-featured-reviews {
    text-align: center;
    padding: 3rem 0;
    color: #ccc;
}

.slick-prev:before, .slick-next:before {
    content: unset;
}


/* Responsive adjustments */
@media (max-width: 768px) {
    .featured-reviews-summary .reviews-heading {
        font-size: 2rem;
    }
    
    .featured-reviews-summary .average-rating-number {
        font-size: .8125rem;
    }
    
    .featured-reviews-summary .stars-display {
        font-size: 1.5rem;
    }
    
    .featured-reviews-carousel .slick-prev {
        left: 10px;
    }
    
    .featured-reviews-carousel .slick-next {
        right: 10px;
    }

    .slick-arrow {
        display: none !important;
    }
}