.hidden {
    display: none !important;
}

#cookie-notification {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    color: #000;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.1);
    z-index: 99999;
}

#cookie-notification p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #000;
}

#cookie-notification a.privacy {
    color: #0048ff;
    text-decoration: underline;
}

#cookie-notification a.privacy:hover {
    text-decoration: none;
}

#cookie-ok {
    background-color: #0048ff;
    color: #fff;
    border: none;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    border-radius: 12px;
    white-space: nowrap;
    flex-shrink: 0;
    transition: opacity 0.2s;
    margin-right: 0;
}

#cookie-ok:hover {
    opacity: 0.85;
}

/* Callback form phone+checkbox wrapper */
.callback-phone-wrap {
    display: flex;
    flex-direction: column;
}

.callback-phone-wrap .privacy-check {
    margin-top: 8px;
    margin-bottom: 0;
}

/* Privacy checkbox */
.privacy-check {
    margin-bottom: 16px;
    margin-top: 16px;
}

.privacy-check label {
    display: flex;
    align-items: flex-start;
    gap: 5px;
    font-size: 13px;
    line-height: 1.5;
    color: #555;
    cursor: pointer;
}

.privacy-check .privacy-box {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: #0048ff;
}

.privacy-check a {
    color: #0048ff;
    text-decoration: underline;
}

.privacy-check a:hover {
    text-decoration: none;
}
.callback form {
    align-items: flex-start;
}

@media (max-width: 760px) {
    #cookie-notification {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        gap: 16px;
    }

    #cookie-ok {
        width: 100%;
        text-align: center;
        padding: 14px 28px;
    }
}
