/* Contact Form 7 - Zachování designu */
.wpcf7-form {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
}

.wpcf7-form .form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    width: 100%;
    justify-content: space-between;
}

.wpcf7-form .form-group {
    display: flex;
    flex-direction: column;
    row-gap: 8px;
    width: calc(50% - 14px);
}



.wpcf7-form .form-group.whole-width {
    width: 100%;
}

.wpcf7-form .form-group.consents {
    flex-direction: row;
    align-items: center;
    column-gap: 12px;
    line-height: 1.25;
}

.wpcf7-form .form-group.consents label {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
}

.wpcf7 .wpcf7-list-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: 0px;
}

.wpcf7 .wpcf7-list-item-label {
    display: inline;
}

.wpcf7-form .form-group.consents a {
    color: #6AEACA;
}

/* CT7 input styly */
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea {
    min-height: 44px;
    padding: 8px 16px;
    border: 1px solid #2C4770;
    box-shadow: 0px 1px 2px 0px #1018280D;
    background-color: transparent;
    font-weight: 500;
    font-family: "Plus Jakarta Sans", sans-serif !important;
    font-size: var(--size-smaller) !important;
    border-radius: 8px;
    color: #9AA6BD;
    transition: border-color ease 300ms;
    width: 100%;
    box-sizing: border-box;
    margin-top: 5px;
}
.wpcf7 textarea {
    min-height: 114px;
    padding: 12px 16px;
    resize: vertical;
}

.wpcf7 input[type="email"]::placeholder,
.wpcf7 input[type="tel"]::placeholder,
.wpcf7 textarea::placeholder {
    color: #9AA6BD;
    font-size: var(--size-smaller) !important;
    font-family: "Plus Jakarta Sans", sans-serif !important;
}

.wpcf7 input[type="email"]:focus,
.wpcf7 input[type="tel"]:focus,
.wpcf7 textarea:focus {
    outline: none;
    border-color: #6AEACA;
}

/* CT7 checkbox styly */
.wpcf7 input[type="checkbox"] {
    appearance: none;
    cursor: pointer;
    position: relative;
    width: 20px;
    height: 20px;
    border: 0px solid #2C4770;
    border-radius: 4px;
    transition: border-color ease 300ms;
    background: transparent;
}

.wpcf7 input[type="checkbox"]:checked {
    border-color: #fff;
}

.wpcf7 input[type="checkbox"]:checked::after {
    width: 12px !important;
    height: 13px !important;
    left: 4px !important;
}

/* CT7 submit button - pro skutečnou strukturu */
.wpcf7 .wpcf7-form-control.wpcf7-submit,
.wpcf7 input[type="submit"] {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    column-gap: 44px !important;
    min-height: 68px !important;
    padding: 8px 24px !important;
    font-size: 16px !important;
    font-weight: 900 !important;
    font-family: "Plus Jakarta Sans", sans-serif;
    text-decoration: none !important;
    text-transform: uppercase !important;
    border-radius: 8px !important;
    transition: all ease 300ms !important;
    color: #000 !important;
    background: #6AEACA !important;
    border: none !important;
    cursor: pointer !important;
    position: relative !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
}

.wpcf7 .wpcf7-form-control.wpcf7-submit:hover,
.wpcf7 input[type="submit"]:hover {
    background: #41CFAB !important;
    color: #fff !important;
}

/* CT7 submit button ikona - řešení pro input element */
.wpcf7 .wpcf7-form-control.wpcf7-submit::after,
.wpcf7 input[type="submit"]::after {
    content: "" !important;
    display: inline-block !important;
    width: 36px !important;
    height: 36px !important;
    background-image: url("..https://new-wt.webotvurci.cz/wp-content/themes/wordpresshttp://www.webotvurci.cz/wp-content/themes/wordpress/src/images/circle-arrow.svg") !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: contain !important;
    position: absolute !important;
    right: 24px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    transition: background-color ease 300ms !important;
}

.wpcf7 .wpcf7-form-control.wpcf7-submit:hover::after,
.wpcf7 input[type="submit"]:hover::after {
    background-color: #fff !important;
}

/* Skrytí CT7 spinner */
.wpcf7-spinner {
    display: none !important;
}

/* Odstranění p tagu kolem tlačítka */
.wpcf7 p:has(.wpcf7-submit) {
    margin: 0 !important;
    padding: 0 !important;
}

/* CT7 validation styly */
.wpcf7-not-valid-tip {
    color: #ff6b6b;
    font-size: 12px;
    margin-top: 4px;
}

.wpcf7-response-output {
    margin: 20px 0 0 0;
    padding: 12px 16px;
    border-radius: 8px;
    font-weight: 500;
}

.wpcf7-response-output.wpcf7-mail-sent-ok {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.wpcf7-response-output.wpcf7-validation-errors {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Responzivita */
@media (max-width: 768px) {
    .wpcf7-form .form-row {
        flex-direction: column;
        align-items: flex-start;
        row-gap: 20px;
    }
    
    .wpcf7-form .form-group {
        width: 100%;
    }
    

    
    .wpcf7 input[type="email"]::placeholder,
    .wpcf7 input[type="tel"]::placeholder,
    .wpcf7 textarea::placeholder {
        font-size: var(--size-smaller) !important;
    }
    .wpcf7 p:has(.wpcf7-submit) {
        width: 100% !important;
    }
    .wpcf7 .wpcf7-form-control.wpcf7-submit, .wpcf7 input[type="submit"] {
        width: 100% !important;
    }
    .wpcf7 input[type="submit"] {
        flex-grow: 1;
        justify-content: space-between;
        width: 100%;
        min-height: 48px;
        column-gap: 20px;
    }
}
