.elementor-200 .elementor-element.elementor-element-10d3fc9{--display:flex;--flex-direction:row;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--justify-content:space-between;--align-items:flex-end;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:12px;}.elementor-widget-image .widget-image-caption{color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-200 .elementor-element.elementor-element-4cf8075 > .elementor-widget-container{margin:0px 0px -112px 0px;}.elementor-200 .elementor-element.elementor-element-4cf8075{z-index:2;}.elementor-200 .elementor-element.elementor-element-4cf8075 img{height:500px;}.elementor-200 .elementor-element.elementor-element-5419e47{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-200 .elementor-element.elementor-element-8dc0433{text-align:center;}.elementor-200 .elementor-element.elementor-element-8dc0433 .elementor-heading-title{font-family:"Inter", Sans-serif;font-size:64px;font-weight:700;}.elementor-200 .elementor-element.elementor-element-119022b{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--border-radius:40px 40px 0px 0px;--padding-top:100px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-200 .elementor-element.elementor-element-119022b:not(.elementor-motion-effects-element-type-background), .elementor-200 .elementor-element.elementor-element-119022b > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#311F19;}@media(max-width:767px){.elementor-200 .elementor-element.elementor-element-10d3fc9{--padding-top:0px;--padding-bottom:0px;--padding-left:12px;--padding-right:12px;}.elementor-200 .elementor-element.elementor-element-8dc0433 .elementor-heading-title{font-size:24px;}.elementor-200 .elementor-element.elementor-element-6f4900a > .elementor-widget-container{margin:-31px 0px -45px 0px;}.elementor-200 .elementor-element.elementor-element-6f4900a{z-index:1;}.elementor-200 .elementor-element.elementor-element-119022b{--padding-top:50px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}}/* Start custom CSS for shortcode, class: .elementor-element-a326d80 *//* Головний контейнер форми */
.cozy-contact-form {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%;
    font-family: 'Mona Sans', 'Inter', sans-serif; /* Використовуємо твої шрифти */
}

/* Рядок у 2 колонки (для телефону і пошти) */
.cozy-form-row {
    display: flex;
    gap: 24px;
    width: 100%;
}

/* Група: лейбл + поле */
.cozy-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

/* Стиль тексту над полями (Label) */
.cozy-contact-form label {
    font-size: 16px;
    font-weight: 400;
    color: #111111;
    margin: 0;
}

/* Загальні стилі полів вводу та селекта */
.cozy-contact-form input[type="text"],
.cozy-contact-form input[type="tel"],
.cozy-contact-form input[type="email"],
.cozy-contact-form select {
    width: 100%;
    height: 48px;
    padding: 0 16px;
    border: 1px solid #cbd5e1; /* Світло-сіра рамка, як на скріншоті */
    border-radius: 8px;
    font-size: 16px;
    color: #311F19;
    background-color: #ffffff;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

/* Стиль випадаючого списку (селекта) з кастомною стрілочкою */
.cozy-contact-form select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    /* Додаємо SVG-стрілочку вбудовану в CSS */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none' viewBox='0 0 12 8'%3E%3Cpath stroke='%23111' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M1 1.5l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

/* Стан поля ПРИ КЛІКУ (як на полі Full Name з твого скріншоту) */
.cozy-contact-form input:focus,
.cozy-contact-form select:focus {
    border-color: #A38363; /* Тепло-коричнева рамка */
    outline: none;
}

/* Кнопка відправки */
.cozy-contact-form .wpcf7-submit.cozy-submit-btn {
    background-color: #311F19; /* Темно-коричневий колір */
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    padding: 16px 32px;
    border: none;
    border-radius: 40px; /* Сильне заокруглення (pill shape) */
    width: 100%;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 8px; /* Трохи відступаємо від селекта */
}

/* Ховер ефект кнопки */
.cozy-contact-form .wpcf7-submit.cozy-submit-btn:hover {
    background-color: #4A3128; /* Трохи світлішає при наведенні */
}

/* --- АДАПТИВ ДЛЯ МОБІЛЬНИХ ПРИСТРОЇВ --- */
@media (max-width: 768px) {
    .cozy-form-row {
        flex-direction: column; /* Телефон і E-mail стають один під одним */
        gap: 0px;
    }
}/* End custom CSS */