.reviews-section {
    margin-top: 40px;
}

.review-item {
    background: #fffbf8;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 12px;
    border-left: 3px solid #FFABB9;
}

.review-header {
    margin-bottom: 8px;
}

.review-author {
    color: #5c3d2e;
    font-weight: 600;
    font-size: 14px;
}

.review-text {
    margin: 0;
    color: #7a5a4a;
    font-size: 14px;
    line-height: 1.5;
}

.review-form {
    background: #fff5ef;
    padding: 20px;
    border-radius: 16px;
    margin-top: 20px;
}

.review-form h5 {
    margin-bottom: 15px;
    color: #5c3d2e;
    font-size: 16px;
}

.review-textarea {
    width: 100%;
    background: white;
    border: 1px solid #f0dfd3;
    border-radius: 12px;
    padding: 12px;
    font-family: inherit;
    font-size: 14px;
    resize: vertical;
}

.review-textarea:focus {
    outline: none;
    border-color: #FFABB9;
}

.btn-review-submit {
    background: #FFABB9;
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s;
}

.btn-review-submit:hover {
    background: #ff95a6;
    transform: translateY(-2px);
}

.review-login {
    text-align: center;
    padding: 15px;
    background: #fffbf8;
    border-radius: 12px;
    margin-top: 15px;
}