.cookie-banner {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background: rgba(20, 20, 20, 0.95);
    color: #fff;
    padding: 18px 24px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 16px;
    align-items: center;
    z-index: 9999;
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(6px);
}

.cookie-banner__text {
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

.cookie-banner__text a {
    color: #FF0000;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.cookie-banner__btn {
    height: 48px;
    padding: 0 18px;
    border-radius: 10px;
    background: #FF1414;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.02em;
    cursor: pointer;
    border: none;
}

@media (max-width: 700px) {
    .cookie-banner {
        grid-template-columns: 1fr;
        padding: 16px 18px 18px;
    }

    .cookie-banner__btn {
        width: 100%;
        text-align: center;
    }
}
