.cookie-banner {
    position: fixed;
    right: 18px;
    bottom: 18px;
    left: 18px;
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    max-width: 1120px;
    margin: 0 auto;
    padding: 16px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    border-radius: 14px;
    background: #111827;
    color: #f9fafb;
    box-shadow: 0 22px 60px rgba(15, 23, 42, 0.28);
}

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

.cookie-banner__copy {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.cookie-banner__copy strong {
    font-size: 0.98rem;
    font-weight: 800;
}

.cookie-banner__copy span {
    color: #d1d5db;
    font-size: 0.92rem;
    line-height: 1.55;
}

.cookie-banner__actions {
    display: flex;
    flex: 0 0 auto;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

.cookie-banner .btn {
    border-radius: 9px;
    font-weight: 800;
}

@media (max-width: 767.98px) {
    .cookie-banner {
        align-items: stretch;
        flex-direction: column;
    }

    .cookie-banner__actions {
        display: grid;
        grid-template-columns: 1fr;
    }
}
