/* ========================================
   COOKIE CONSENT BANNER - cookie-consent.css
   GDPR compliant cookie consent banner
   ======================================== */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #f5f2ed;
    padding: 20px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cookie-banner-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #f5f2ed;
}

.cookie-banner-text a {
    color: #f5f2ed;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-banner-text a:hover {
    opacity: 0.8;
}

.cookie-banner-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-btn {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.cookie-btn-accept {
    background: #f5f2ed;
    color: #1a1a1a;
}

.cookie-btn-accept:hover {
    background: #fff;
    transform: translateY(-1px);
}

.cookie-btn-decline {
    background: transparent;
    color: #f5f2ed;
    border: 1px solid rgba(245, 242, 237, 0.4);
}

.cookie-btn-decline:hover {
    border-color: rgba(245, 242, 237, 0.8);
    background: rgba(245, 242, 237, 0.1);
}

@media (min-width: 768px) {
    .cookie-banner {
        padding: 25px 30px;
    }

    .cookie-banner-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .cookie-banner-text {
        flex: 1;
        margin-right: 30px;
    }

    .cookie-banner-buttons {
        flex-shrink: 0;
    }
}