/* فرم عمومی «ثبت نظر شما» — مرحله ۲۶ */

.review-form-block {
    max-width: 480px;
    margin: 50px auto 0;
    text-align: center;
}

.review-form-block h3 {
    font-size: 18px;
    color: #222;
    margin-bottom: 6px;
}

.review-form-block .review-form-hint {
    font-size: 13px;
    color: #888;
    margin-bottom: 20px;
}

.review-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    text-align: right;
}

.review-form input[type="text"],
.review-form textarea {
    width: 100%;
    padding: 13px 16px;
    border-radius: 10px;
    border: 1px solid #e0e0dc;
    background: #fff;
    color: #222;
    font-family: inherit;
    font-size: 14px;
    box-sizing: border-box;
}

.review-form textarea {
    min-height: 100px;
    resize: vertical;
}

.review-form input::placeholder,
.review-form textarea::placeholder {
    color: #aaa;
}

.review-form input:focus,
.review-form textarea:focus {
    outline: none;
    border-color: var(--color-primary-light);
    box-shadow: 0 0 0 3px rgba(var(--color-primary-rgb), .15);
}

.review-form .website-field {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
}

/* انتخاب امتیاز با ستاره */
.review-form-stars {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    gap: 6px;
    font-size: 26px;
    margin: 2px 0 4px;
}

.review-form-stars span {
    cursor: pointer;
    color: #d8d8d3;
    transition: color .15s ease;
}

.review-form-stars span.selected,
.review-form-stars span:hover,
.review-form-stars span:hover ~ span {
    color: #f5a623;
}

.review-form button {
    padding: 13px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light));
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: opacity .2s ease;
}

.review-form button:hover { opacity: .9; }
.review-form button:disabled { opacity: .5; cursor: not-allowed; }

.review-form-msg {
    font-size: 13px;
    text-align: center;
    display: none;
    padding: 10px;
    border-radius: 8px;
}

.review-form-msg.success {
    display: block;
    background: rgba(44,182,125,.12);
    color: #0e8a5f;
    border: 1px solid #2CB67D;
}

.review-form-msg.error {
    display: block;
    background: rgba(214,69,69,.1);
    color: #c23b3b;
    border: 1px solid #D64545;
}
