.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1080;
    background-color: #514B4A;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.25);
    padding: 1rem;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .cookie-banner {
        transition: none;
    }
}

.cookie-banner-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.cookie-banner-text,
.cookie-banner-link {
    color: white;
}

.cookie-banner-text {
    text-align: left;
    flex: 1 1 320px;
    font-size: 0.95rem;
}

.cookie-banner-link {
    text-decoration: underline;
    white-space: nowrap;
}

.cookie-banner-link:hover {
    color: #ee4e0d;
}

.cookie-banner-accept {
    flex: 0 0 auto;
    background-color: #ee4e0d;
    color: white;
    border: none;
    border-radius: 0.375rem;
    padding: 0.5rem 1.5rem;
    font-family: syne, sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.cookie-banner-accept:hover {
    background-color: #d4460b;
}
