/* Start custom CSS for html, class: .elementor-element-8942bf0 *//* --- CONTAINER --- */
.reviews-section-wrapper {
    --brand-orange: #F68B1E;
    --text-dark: #1a1a1a;
    --text-grey: #666;
    --bg-card: #ffffff;
    --bg-page: #f9f9f9;
    
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    padding: 80px 20px;
    background: var(--bg-page);
}

/* --- HEADER SECTION --- */
.reviews-header {
    max-width: 1200px;
    margin: 0 auto 50px auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 30px;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0 0 15px 0;
}

.aggregate-score {
    display: flex;
    align-items: center;
    gap: 15px;
}

.score-big {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    color: var(--text-dark);
}

.stars-group {
    color: var(--brand-orange);
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.review-count {
    color: var(--text-grey);
    font-size: 0.9rem;
    margin-left: 5px;
}

/* Filter Bar */
.filter-bar {
    display: inline-flex;
    gap: 20px;
    margin-right: 25px;
}

.filter {
    text-decoration: none;
    font-size: 0.95rem;
    color: var(--text-grey);
    font-weight: 600;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
}

.filter:hover, .filter.active {
    color: var(--text-dark);
    border-color: var(--brand-orange);
}

/* Write Button */
.write-review-btn {
    display: inline-block;
    background: var(--text-dark);
    color: #fff;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: background 0.2s, transform 0.2s;
}
.write-review-btn:hover { 
    background: var(--brand-orange); 
    transform: translateY(-2px);
}

/* --- REVIEWS GRID --- */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 Columns */
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.review-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    border: 1px solid #eee;
    transition: transform 0.2s, box-shadow 0.2s;
    
    /* For Animation */
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.4s ease, transform 0.4s ease, box-shadow 0.2s;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

/* HIDDEN STATE (Important) */
.review-hidden {
    display: none;
    opacity: 0;
    transform: translateY(20px); /* Prepares for slide-up animation */
}

/* Card Content */
.card-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.r-stars {
    color: var(--brand-orange);
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.r-date {
    font-size: 0.8rem;
    color: #999;
}

.r-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: var(--text-dark);
}

.r-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-grey);
    margin-bottom: 20px;
    min-height: 80px;
}

/* Author Row */
.r-author {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #f5f5f5;
    padding-top: 15px;
}

.r-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.verified-badge {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    color: #27ae60; /* Green */
    font-weight: 600;
}

.verified-badge svg {
    width: 16px;
    height: 16px;
}

/* Footer Button */
.reviews-footer {
    text-align: center;
    margin-top: 60px;
}

.load-more-btn {
    background: transparent;
    border: 1px solid #ccc;
    padding: 14px 40px;
    border-radius: 50px;
    color: var(--text-grey);
    font-weight: 700;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.2s;
}

.load-more-btn:hover {
    border-color: var(--text-dark);
    color: var(--text-dark);
    background: #fff;
}/* End custom CSS */