
.reviews-wrapper {
    max-width: 1100px;
    margin: 80px auto;
    padding: 0 20px;
    font-family: 'Inter', sans-serif;
}

.reviews-title {
    font-size: 28px;
    margin-bottom: 15px;
}

.avg-rating {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
}

.stars {
    font-size: 22px;
}

.star {
    color: #ccc;
}

.star.filled {
    color: #f4b400;
}

.avg-text {
    font-size: 14px;
    color: #555;
}

.reviews-list {
    margin-bottom: 40px;
}

.single-review {
    border-bottom: 1px solid #e5e5e5;
    padding: 15px 0;
}

.review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
}

.review-stars {
    color: #f4b400;
    font-size: 14px;
}

.review-comment {
    color: #333;
    font-size: 14px;
    line-height: 1.6;
}

.no-reviews {
    color: #777;
    font-style: italic;
}

/* Review Form */

.review-form h3 {
    margin-bottom: 15px;
}

.review-form label {
    display: block;
    margin-top: 10px;
    font-weight: 600;
}

.review-form select,
.review-form textarea {
    width: 100%;
    margin-top: 6px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.review-form button {
    margin-top: 15px;
    padding: 12px 25px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 25px;
    cursor: pointer;
}

.review-form button:hover {
    background: #333;
}


.btn-delete {
    background-color: #dc3545;
    border: none;
    color: white;
    padding: 6px 12px;
    margin-top: 5px;
    cursor: pointer;
    border-radius: 4px;
    font-size: 14px;
}
