.container-custom {
    max-width: 1200px;
    margin-top: 50px;
    margin-bottom: 50px;
}
.rating-summary, .customer-reviews {
    background-color: #ffffff;
    padding: 1rem;
    /* border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); */
}
.rating-score {
    font-size: 3rem;
    font-weight: bold;
    color: #333;
}
.progress-bar-container {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.progress-bar-container span {
    min-width: 60px;
    text-align: right;
    padding-right: 10px;
    font-weight: bold;
}
.rw-progress-bar {
    height: 8px;
    background-color: #eee;
    border-radius: 5px;
    flex-grow: 1;
    overflow: hidden;
}
.progress-fill {
    height: 100%;
    background-color: var(--bs-orange-custom);
    border-radius: 5px;
}
.review-header h2 {
    font-weight: bold;
    margin-bottom: 20px;
}
.customer-reviews h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}
.customer-reviews h3 svg {
    margin-left: 10px;
    color: #6c757d;
}
.feature-tag {
    display: inline-flex;
    align-items: center;
    background-color: #e9ecef;
    padding: 4px 10px;
    border-radius: 20px;
    margin-right: 10px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #495057;
}
.feature-tag svg {
    margin-right: 8px;
    color: #28a745;
}
.review-card {
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}
.review-card .reviewer-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.review-card .reviewer-name {
    font-weight: bold;
}
.review-card .review-date {
    color: #6c757d;
}
.review-card .star-rating-small .fa-star {
    color: var(--bs-orange-custom);
    font-size: 0.9rem;
}
.verified-badge {
    background-color: #e0f7fa;
    color: #007bff;
    padding: 4px 8px;
    border-radius: 5px;
    font-size: 0.8rem;
    margin-left: 10px;
}
.review-details {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
}
.review-details div {
    flex: 1;
    min-width: 150px;
}
.review-details strong {
    display: block;
    color: #6c757d;
    font-size: 0.85rem;
}
.review-details span {
    font-weight: bold;
    font-size: 0.95rem;
    color: #333;
}
.review-text {
    color: #555;
    line-height: 1.6;
}

@media (max-width: 767.98px) {
    .rating-summary, .customer-reviews {
        background-color: white;
        /* border-radius: 0;
        box-shadow: none; */
        padding: 0;
    }
    .rating-score {
        font-size: 2.5rem;
    }
    .customer-reviews h3 {
        font-size: 1.1rem;
    }
    .customer-reviews h3 svg {
        margin-left: 0;
        margin-top: 10px;
    }
    .feature-tag {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    .review-details {
        flex-direction: row;
        gap: 10px;
    }
    .review-details div {
        min-width: unset;
        width: 100%;
    }
}