/* Reviews Section Styles - Main Page */
.reviews-section {
    padding: 4rem 5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.reviews-section .section-title {
    font-size: 2.5rem;
    color: var(--border-heading-color);
    margin-bottom: 2rem;
    text-align: center;
}

.reviews-section .section-subtitle {
    font-size: 1.1rem;
    color: var(--main-text-color);
    opacity: 0.8;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Reviews Stats Bar */
.reviews-stats-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--element-color-1);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--main-text-color);
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Reviews Grid - Desktop */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

/* Reviews Slider - Mobile */
.reviews-slider {
    display: none;
}

/* Review Card Styles - unified with news-card */
.review-card {
    background: var(--white);
    border-radius: 1rem;
    overflow: hidden;
    border: 2px solid rgba(255, 207, 157, 0.35);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(10, 38, 71, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
}

.review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(10, 38, 71, 0.15);
    border-color: var(--border-heading-color);
}

/* Review Header */
.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.review-author {
    font-weight: 600;
    color: var(--bg-color);
    font-size: 1rem;
}

.review-rating {
    display: flex;
    gap: 2px;
    color: #ffc107;
    font-size: 1rem;
}

.review-date {
    background: var(--border-heading-color);
    color: var(--bg-color);
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    display: inline-block;
    border-radius: 0.25rem;
    width: fit-content;
}

/* Review Content */
.review-title {
    font-family: 'Alegreya Sans', sans-serif !important;
    color: var(--bg-color);
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.5;
    margin-top: 0;
    margin-bottom: 0.75rem;
    flex-grow: 1;
}

.review-text {
    color: var(--main-text-color);
    font-size: 0.9375rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.review-product {
    background: rgba(255, 207, 157, 0.25);
    border-radius: 0.5rem;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    color: var(--element-color-1);
    font-weight: 500;
    margin-top: auto;
}

/* View All Reviews Button */
.reviews-cta {
    text-align: center;
    margin-top: 3rem;
}

.btn-reviews {
    background: linear-gradient(135deg, var(--element-color-1), var(--element-color-2));
    color: white;
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 2rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(255, 207, 157, 0.3);
}

.btn-reviews:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 207, 157, 0.4);
    color: white;
}

.btn-reviews i {
    font-size: 1.1rem;
}

/* Swiper Styles for Reviews */
.reviews-swiper {
    padding-bottom: 0;
}

.reviews-pagination {
    position: static !important;
    margin-top: 1.5rem;
}

.reviews-pagination .swiper-pagination-bullet {
    background: var(--element-color-1);
    opacity: 0.3;
    width: 12px;
    height: 12px;
    border-radius: 50% !important;
}

.reviews-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--element-color-1);
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .reviews-section {
        padding: 3rem 1rem;
    }
    
    .reviews-grid {
        display: none;
    }
    
    .reviews-slider {
        display: block;
    }
    
    .review-card {
        padding: 1.25rem;
        border-radius: 1rem;
        margin: 0;
        box-shadow: none;
        border: 0.125rem solid #e5e7eb;
        width: 100%;
    }
    
    /* Disable hover animations for mobile slider */
    .reviews-slider .review-card:hover {
        transform: none;
        box-shadow: none;
        border-color: rgba(255, 207, 157, 0.35);
    }
    
    .reviews-swiper .swiper-slide {
        padding: 0 0.5rem;
        background: transparent;
    }
    
    .review-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .reviews-section .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
}

@media (min-width: 769px) {
    /* Hide mobile slider on desktop, show grid */
    .reviews-slider {
        display: none !important;
    }
    
    .reviews-grid {
        display: grid !important;
    }
}

@media (max-width: 480px) {
    .reviews-stats-bar {
        margin: 0 1rem 2rem 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .review-title {
        font-size: 1rem;
    }
}