/* ===========================
   Reviews Section Styling
   =========================== */
body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background: #f9f9f9;
    margin: 0;
    padding: 0;
    color: #333;
}

.review-section {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

.review-section h2 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    color: #222;
}

/* Review Card */
.review-card {
    background: #fafafa;
    border: 1px solid #eaeaea;
    border-radius: 10px;
    padding: 18px;
    margin-bottom: 18px;
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Review Header */
.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #444;
}

.review-user {
    color: #007bff;
    font-weight: 600;
}

.review-date {
    font-size: 0.85rem;
    color: #888;
}

/* Stars */
.review-rating {
    margin-bottom: 10px;
}

.star {
    font-size: 18px;
    color: #ddd;
    margin-right: 3px;
    transition: color 0.3s ease;
}

.star.filled {
    color: #f5a623;
}

/* Review Text */
.review-text {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #333;
}

/* No Review Message */
.no-review {
    text-align: center;
    padding: 30px;
    color: #777;
    font-size: 1rem;
}

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 768px) {
    .review-section {
        margin: 20px;
        padding: 15px;
    }
    .review-card {
        padding: 15px;
    }
    .review-section h2 {
        font-size: 1.3rem;
    }
    .star {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    .review-section h2 {
        font-size: 1.2rem;
        text-align: center;
    }
    .review-user {
        font-size: 0.9rem;
    }
    .review-date {
        font-size: 0.8rem;
    }
}
