/* Privacy & Cookies consent banner */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    background: linear-gradient(135deg, #1f2428 0%, #2d3339 100%);
    color: #fff;
    padding: 16px 24px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    animation: cookieBannerSlideUp 0.4s ease-out;
}

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

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.cookie-consent-text {
    flex: 1;
    min-width: 260px;
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-consent-text a {
    color: #00aa55;
    text-decoration: underline;
}

.cookie-consent-text a:hover {
    color: #00cc66;
}

.cookie-consent-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-consent-link {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    text-decoration: underline;
}

.cookie-consent-link:hover {
    color: #00aa55;
}

.cookie-consent-btn {
    background: #00aa55;
    color: #fff;
    border: none;
    padding: 10px 24px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
}

.cookie-consent-btn:hover {
    background: #009944;
}

@media (max-width: 767px) {
    .cookie-consent-banner {
        padding: 14px 16px;
    }
    .cookie-consent-content {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
    .cookie-consent-actions {
        justify-content: center;
    }
}
