/* Cookie Consent Banner */
.cookie-consent-banner {
    position: fixed;
    bottom: -100%;
    /* Hidden by default */
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
    z-index: 9999;
    transition: bottom 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    border-top: 4px solid #F59E0B;
    /* Brand Yellow */
    display: flex;
    justify-content: center;
    align-items: center;
}

.cookie-consent-banner.show {
    bottom: 0;
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-text {
    flex: 1;
}

.cookie-text h3 {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
    color: #111827;
}

.cookie-text p {
    margin: 0;
    font-size: 0.9rem;
    color: #6b7280;
}

.cookie-text a {
    color: #F59E0B;
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 15px;
}

.cookie-btn {
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    font-size: 0.9rem;
}

.cookie-btn.accept {
    background: #F59E0B;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background: #d97706;
    transform: translateY(-1px);
}

.cookie-btn.decline {
    background: #f3f4f6;
    color: #374151;
}

.cookie-btn.decline:hover {
    background: #e5e7eb;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }
}