.reviews-section {
    margin-top: 50px;
    padding: 20px;
    background: #fdfdfd;
    border-top: 1px solid #eee;
}

.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

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

.review-item {
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
}

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

.review-stars {
    color: #ff9900;
}

.review-customer {
    font-weight: bold;
    font-size: 1.1em;
}

.review-date {
    color: #888;
    font-size: 0.9em;
}

.review-comment {
    line-height: 1.5;
    color: #333;
    margin-bottom: 10px;
}

.review-images {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.review-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    border: 1px solid #ddd;
}

.review-form-container {
    background: #fff;
    padding: 25px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 5px;
    margin-bottom: 15px;
}

.star-rating input {
    display: none;
}

.star-rating label {
    font-size: 30px;
    color: #ccc;
    cursor: pointer;
    transition: color 0.2s;
}

.star-rating label:hover,
.star-rating label:hover ~ label,
.star-rating input:checked ~ label {
    color: #ff9900;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

.form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1em;
}

.btn-submit-review {
    background: #131921;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1em;
    font-weight: bold;
    transition: background 0.2s;
}

.btn-submit-review:hover {
    background: #232f3e;
}

.login-to-review {
    padding: 20px;
    background: #fff8e1;
    border: 1px solid #ffe082;
    border-radius: 4px;
    text-align: center;
}

.login-to-review a {
    color: #e67e22;
    font-weight: bold;
    text-decoration: underline;
}
