.it44-cookie-consent {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 100000;
    background: #0f172a;
    color: #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, .35);
    padding: 22px 26px;
    max-width: 900px;
    margin: 0 auto;
    transform: translateY(140%);
    transition: transform .35s ease;
}

.it44-cookie-consent.it44-cookie-consent--visible {
    transform: translateY(0);
}

.it44-cookie-consent__inner {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.it44-cookie-consent__text {
    flex: 1 1 420px;
}

.it44-cookie-consent__title {
    font-weight: 700;
    color: #fff;
    margin: 0 0 6px;
    font-size: 15px;
}

.it44-cookie-consent__text p {
    margin: 0 0 6px;
    font-size: 13.5px;
    line-height: 1.6;
    color: #cbd5e1;
}

.it44-cookie-consent__text p:last-child { margin-bottom: 0; }

.it44-cookie-consent__text a {
    color: #8ec5f0;
    text-decoration: underline;
}

.it44-cookie-consent__actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    flex: 0 0 auto;
}

.it44-cookie-consent__btn {
    border: none;
    border-radius: 8px;
    padding: 11px 20px;
    font-size: 13.5px;
    font-weight: 700;
    cursor: pointer;
    transition: opacity .15s ease, background .15s ease;
    white-space: nowrap;
}

.it44-cookie-consent__btn--reject {
    background: transparent;
    color: #e2e8f0;
    border: 1px solid #475569;
}

.it44-cookie-consent__btn--reject:hover {
    background: #1e293b;
}

.it44-cookie-consent__btn--accept {
    background: #206BB3;
    color: #fff;
}

.it44-cookie-consent__btn--accept:hover {
    background: #1a5690;
}

.it44-cookie-settings-btn {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 99000;
    width: 52px;
    height: 52px;
    border: none;
    border-radius: 50%;
    background: #206BB3;
    color: #fff;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(15, 23, 42, .3);
    transition: background .15s ease, transform .15s ease;
}

.it44-cookie-settings-btn:hover {
    background: #1a5690;
    transform: translateY(-2px);
}

.it44-cookie-settings-btn[hidden] {
    display: none;
}

@media (max-width: 640px) {
    .it44-cookie-settings-btn {
        left: 12px;
        bottom: 12px;
        width: 46px;
        height: 46px;
        font-size: 18px;
    }

    .it44-cookie-consent {
        left: 12px;
        right: 12px;
        bottom: 12px;
        padding: 18px 20px;
    }
    .it44-cookie-consent__actions {
        width: 100%;
    }
    .it44-cookie-consent__btn {
        flex: 1 1 auto;
    }
}
