/* ═══════════════════════════════════
   COOKIE BAR
═══════════════════════════════════ */
#cookie-bar {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 999;
    background: var(--green-deep);
    border-top: 1px solid rgba(45, 122, 48, 0.3);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.25);
    animation: cookieSlideUp 0.4s ease both;
}

@keyframes cookieSlideUp {
    from { transform: translateY(100%); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
}

.cookie-inner {
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 1240px;
    margin: 0 auto;
    padding: 1rem 5vw;
}

.cookie-text {
    flex: 1;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    margin: 0;
}

.cookie-text strong {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.cookie-gdpr-link {
    color: var(--green-light);
    text-decoration: underline;
    text-underline-offset: 2px;
    white-space: nowrap;
    margin-left: 0.4rem;
    transition: color 0.2s;
}
.cookie-gdpr-link:hover { color: var(--gold); }

.cookie-btn-ok {
    flex-shrink: 0;
    padding: 0.65rem 1.6rem;
    background: var(--green-brand);
    color: #fff;
    border: none;
    border-radius: 3px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}
.cookie-btn-ok:hover { background: var(--green-light); }

/* Fade out */
#cookie-bar.cookie-hide {
    transition: opacity 0.4s, transform 0.4s;
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
}

@media (max-width: 600px) {
    .cookie-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
        padding: 1rem 6vw;
    }
    .cookie-btn-ok { width: 100%; text-align: center; }
}
