.cookie-banner {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 9999;
    display: none;
    background: #ffffff;
    color: #111827;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
    padding: 22px;
}

.cookie-banner.is-visible {
    display: block;
}

.cookie-banner-inner {
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    gap: 24px;
    align-items: center;
    justify-content: space-between;
}

.cookie-banner h3 {
    margin: 0 0 8px;
    font-size: 1.1rem;
}

.cookie-banner p {
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.cookie-banner-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-banner button {
    cursor: pointer;
    border: none;
    border-radius: 999px;
    padding: 11px 18px;
    font-weight: 600;
}

.cookie-accept {
    background: var(--color-primary, #2563eb);
    color: #ffffff;
}

.cookie-reject {
    background: #f3f4f6;
    color: #111827;
}

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

    .cookie-banner-actions {
        width: 100%;
        flex-direction: column;
    }

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

.footer-cookie-settings {
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    cursor: pointer;
    text-align: left;
}

.footer-cookie-settings:hover {
    text-decoration: underline;
}
