.cookie-notice {
    position: fixed;
    inset-inline: 0;
    bottom: 0;
    z-index: 9999;
    background: #111;
    /* тёмный фон для контраста с оранжевым брендом */
    color: #fff;
    padding: 14px 0;
    box-shadow: 0 -6px 20px rgba(0, 0, 0, .15);
}

.cookie-wrap {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    align-items: center;
}

.cookie-text p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-text .cookie-link {
    color: #ff6a00;
    font-weight: 700;
    text-decoration: none;
}

.cookie-text .cookie-link:hover {
    text-decoration: underline;
}

.cookie-actions {
    display: inline-flex;
    gap: 10px;
}

.cookie-actions .btn-plain {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .4);
    color: #fff;
    border-radius: 8px;
    padding: 8px 14px;
    font-weight: 600;
}

.cookie-actions .btn-plain:hover {
    border-color: rgba(255, 255, 255, .8);
}

@media (max-width: 767px) {
    .cookie-wrap {
        grid-template-columns: 1fr;
    }

    .cookie-actions {
        justify-content: flex-start;
    }
}