/**
 * Theme Name:     Hello Elementor Child
 * Author:         Elementor Team
 * Template:       hello-elementor
 * Text Domain:	   hello-elementor-child
 * Description:    A lightweight and minimalist WordPress theme for Elementor page builder.
 */



/* 1. حذف فیلد وب‌سایت */
.comment-form-url {
    display: none !important;
}

/* 2. چینش نام و ایمیل در کنار هم */
.comment-form-author,
.comment-form-email {
    width: 48%;
    display: inline-block;
    vertical-align: top;
    margin-right: 2%;
}
.comment-form-email {
    margin-right: 0;
}

/* 3. استایل کلی فرم نظرات */
.comment-respond {
    padding: 20px;
}
.comment-form input,
.comment-form textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-family: inherit;
}
.comment-form input:focus,
.comment-form textarea:focus {
    border-color: #0073aa; /* رنگ برند شما */
    outline: none;
    box-shadow: 0 0 5px rgba(0, 115, 170, 0.3);
}

/* 4. دکمه ارسال */
.comment-form input[type="submit"] {
    background-color: #00918a;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
}
.comment-form input[type="submit"]:hover {
    background-color: #005f8d;
}

/* 5. استایل نظرات تو در تو */
.comment {
    margin-bottom: 25px;
    padding: 15px;
    border-radius: 8px;
    background-color: #f1f1f1;
}
.comment.depth-2 {
    background-color: #e3f2fd;
    margin-right: 20px;
}
.comment.depth-3 {
    background-color: #d0ebff;
    margin-right: 40px;
}
.comment.depth-4 {
    background-color: #b8e0ff;
    margin-right: 60px;
}

/* 6. پاسخ به نظر */
.comment-reply-link {
    color: #00918a;
    font-weight: bold;
}
.comment-reply-link:hover {
    text-decoration: underline;
}
.comment-form-cookies-consent {
    display: none !important;
}

@media (max-width: 768px) {
    .comment-form-author,
    .comment-form-email {
        width: 100% !important;
        display: block;
        margin-right: 0 !important;
    }
}
