.cookie-banner {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 100;
    max-width: 780px;
    margin: 0 auto;
    padding: 18px 20px;
    background: #1f2229;
    border: 1px solid var(--border-strong);
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.cookie-banner.is-visible {
    opacity: 1;
    transform: none;
}

.cookie-banner__inner {
    display: flex;
    align-items: center;
    gap: 18px;
}

.cookie-banner__image {
    width: 76px;
    height: 76px;
    flex-shrink: 0;
    filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.35));
}

.cookie-banner__copy {
    flex: 1;
    min-width: 0;
}

.cookie-banner__copy strong {
    display: block;
    margin-bottom: 4px;
    color: #ffffff;
}

.cookie-banner__copy p {
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.6;
}

.cookie-banner__copy a {
    color: #a5b0ff;
    font-size: 0.85rem;
}

@media (max-width: 580px) {
    .cookie-banner__inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .cookie-banner__image {
        width: 60px;
        height: 60px;
    }

    .cookie-banner .btn {
        width: 100%;
    }
}