.cookie-banner {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 150;
    background: #10171b;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;
    padding: 18px 22px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
}

.cookie-banner[hidden] {
    display: none;
}

.cookie-banner__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
}

.cookie-banner__text {
    color: #d4d8ea;
    font-size: 13px;
    line-height: 1.55;
    margin: 0;
    flex: 1;
    min-width: 260px;
}

.cookie-banner__actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-banner .btn {
    padding: 10px 18px;
    font-size: 12px;
}

.cookie-banner .btn--ghost {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.cookie-banner .btn--ghost:hover {
    background: rgba(255, 255, 255, 0.05);
}

@media (max-width: 640px) {
    .cookie-banner__inner {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
    .cookie-banner__actions {
        justify-content: center;
    }
}
