.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #222;
    color: #fff;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    z-index: 9999;
    font-size: 0.9rem;
}

.cookie-notice a {
    color: #fff;
}

.cookie-notice__btn {
    background: var(--red, #FF0011);
    color: #fff;
    border: none;
    padding: 6px 18px;
    border-radius: 4px;
    cursor: pointer;
    white-space: nowrap;
    font-size: 0.9rem;
}

.cookie-notice__btn:hover {
    background: var(--dark-red, #cc0000);
}

@media (max-width: 576px) {
    .cookie-notice {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}
