/*
Theme Name: Hello Elementor Child theme of hello-elementor
Theme URI: 
Description: Child theme of hello-elementor theme for the Hello Elementor theme
Author: <a href="https://elementor.com/?utm_source=wp-themes&#038;utm_campaign=author-uri&#038;utm_medium=wp-dash">Elementor Team</a>
Author URI: 
Template: hello-elementor
Version: 3.4.6
*/

/* Generated by Orbisius Child Theme Creator (https://orbisius.com/products/wordpress-plugins/orbisius-child-theme-creator/) on Sun, 15 Feb 2026 23:20:36 +0000 */ 
/* The plugin now uses the recommended approach for loading the css files.*/


/*ФОРМА*/

/* 1. ПРИМУСОВИЙ РЯДОК (Flexbox Fix) */
.custom-review-form .form-row {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important; /* Забороняємо перенос на новий рядок */
    gap: 15px !important;
    margin-bottom: 20px !important;
}

.custom-review-form .form-group.col-50 {
    width: 50% !important;
    flex: 1 !important;
}

/* 2. ОФОРМЛЕННЯ ІНПУТІВ */
.custom-review-form input[type="text"],
.custom-review-form input[type="email"] {
    width: 100% !important;
    padding: 12px 15px !important;
    border: 1px solid #ccc !important;
    border-radius: 6px !important;
    background: #fff !important;
    box-sizing: border-box !important;
}

/* 3. БІЛИЙ БЛОК (Зірки + Текст) */
.rating-text-container {
    background: #fff !important;
    border: 1px solid #ddd !important;
    border-radius: 12px !important;
    overflow: hidden !important; /* Щоб краї textarea не вилазили */
    margin-bottom: 25px !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05) !important;
}

.rating-header {
    padding: 20px 20px 10px 20px !important;
    border-bottom: 1px solid #eee !important;
}

.message-box {
    padding: 10px 20px 20px 20px !important;
}

/* Стилізація Тексту відгуку */
.custom-review-form textarea {
    width: 100% !important;
    border: none !important;
    background: transparent !important;
    padding: 10px 0 !important;
    min-height: 120px !important;
    resize: none !important;
    outline: none !important;
    font-size: 16px !important;
}

/* 4. ЧЕРВОНА КНОПКА */
.custom-review-form .form-submit {
    text-align: center !important;
}

.custom-review-form .wpcf7-submit {
    background: #e31b23 !important;
    color: #fff !important;
    width: 100% !important;
    max-width: 400px; /* Щоб не розповзлася на весь екран */
    padding: 18px !important;
    border-radius: 10px !important;
    font-weight: 900 !important;
    font-size: 18px !important;
    text-transform: uppercase !important;
    border: none !important;
    box-shadow: 0 5px 0 #b3151a !important;
    cursor: pointer !important;
    transition: all 0.2s ease;
}

.custom-review-form .wpcf7-submit:active {
    box-shadow: 0 2px 0 #b3151a !important;
    transform: translateY(3px) !important;
}

/* 5. ПРИДУШЕННЯ ЗАЙВИХ ПАРАГРАФІВ */
.custom-review-form p {
    margin: 0 !important;
    padding: 0 !important;
    display: inline; /* Це виб'є ґрунт з-під ніг у WP-абзаців */
}

.custom-review-form label {
    display: block !important;
    font-weight: bold !important;
    margin-bottom: 5px !important;
    color: #333 !important;
    text-align: left !important;
}

/* 6. КІЛЛЕР КНОПКИ CANCEL (якщо вона вернеться) */
.raty-cancel, img.raty-cancel {
    display: none !important;
}

/* ФОРМА МОБІЛЬНИЙ */

/* Мобільна адаптація (для телефонів та планшетів) */
@media (max-width: 767px) {
    
    /* 1. Поля Name та Email стають в стовпчик */
    .custom-review-form .form-row {
        flex-direction: column !important;
        gap: 10px !important;
    }

    .custom-review-form .form-group.col-50 {
        width: 100% !important;
    }

    /* 2. Збільшуємо зірочки на всю ширину */
    .stars-box {
        text-align: center !important; /* Центруємо зірки */
        padding: 10px 0 !important;
    }

    .star_rating_class {
        display: flex !important;
        justify-content: space-between !important; /* Розтягуємо рівномірно */
        width: 100% !important;
        max-width: 300px; /* Обмежуємо, щоб не розповзлися занадто сильно */
        margin: 0 auto !important;
    }

    .star_rating_class img {
        width: 30px !important; /* Робимо їх великими для пальця */
        height: auto !important;
        margin: 0 !important;
    }

    /* 3. Підганяємо білий блок під мобілки */
    .rating-header, .message-box {
        padding: 15px !important;
    }

    .rating-header label {
        text-align: center !important;
        font-size: 18px !important;
    }

    /* 4. Кнопка на всю ширину */
    .custom-review-form .wpcf7-submit {
        max-width: 100% !important;
        width: 100% !important;
        font-size: 20px !important;
        padding: 20px !important;
    }
}