.cookie-consent {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;

    z-index: 10000;

    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;

    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.cookie-consent[hidden] {
    display: none !important;
}

.cookie-consent__content {
    display: flex;
    align-items: center;
    gap: 24px;

    max-width: 1800px;
    margin: 0 auto;
    padding: 18px 22px;
}

.cookie-consent__text {
    flex: 1;

    margin: 0;

    font-size: 16px;
    line-height: 1.45;
    color: #222222;
}

.cookie-consent__button {
    flex-shrink: 0;

    min-width: 180px;
    padding: 13px 24px;

    border: 0;
    border-radius: 7px;

    background: #159bd7;
    color: #ffffff;

    font: inherit;
    font-size: 16px;
    font-weight: 600;

    cursor: pointer;

    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}

.cookie-consent__button:hover {
    background: #118bc2;
}

.cookie-consent__button:active {
    transform: scale(0.98);
}

.cookie-consent__button:focus-visible {
    outline: 3px solid rgba(21, 155, 215, 0.3);
    outline-offset: 3px;
}

@media (max-width: 768px) {
    .cookie-consent {
        left: 8px;
        right: 8px;
        bottom: 8px;
    }

    .cookie-consent__content {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;

        padding: 16px;
    }

    .cookie-consent__text {
        font-size: 14px;
        line-height: 1.45;
    }

    .cookie-consent__button {
        width: 100%;
        min-width: 0;

        padding: 13px 18px;

        font-size: 15px;
    }
}