.cookie_consent {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    padding: 12px;
    display: none;
}

.cookie_consent__body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px;
    color: #fff;
    background: rgba(0, 0, 0, 0.95);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .3);
}

.cookie_consent__content {
    flex: 1;
}

.cookie_consent__text {
    font-size: 15px;
    line-height: 1.6;
}

.cookie_consent__policy {
    margin-top: 14px;
}

.cookie_consent__link {
    color: #fff;
    font-weight: 600;
    text-decoration: underline;
    transition: opacity .2s ease;
}

.cookie_consent__link:hover {
    color: #fff;
    opacity: .8;
}

.cookie_consent__button {
    min-width: 150px;
    padding: 14px 28px;

    border: none;
    border-radius: 10px;

    background: #fff;
    color: #000;

    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;

    transition: .2s ease;
}

.cookie_consent__button:hover {
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .cookie_consent__body {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie_consent__button {
        width: 100%;
    }
}