/* Cookie Banner Styles */
#cookie-banner {
    position: fixed;
    bottom: -100%;
    /* Hidden initially */
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    /* Below lock screen (99999) but above content */
    padding: 1.5rem;
    transition: bottom 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    max-height: 80vh;
    /* Prevent covering full screen */
    overflow-y: auto;
    /* Allow scrolling within banner if content is tall */
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    display: none;
    /* JS will toggle block */
}

#cookie-banner.visible {
    bottom: 0;
    display: block;
}

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

.cookie-text {
    flex: 1 1 500px;
}

.cookie-text h3 {
    font-family: 'Outfit', sans-serif;
    color: #0f172a;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.cookie-text p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.cookie-text a {
    color: #3b82f6;
    text-decoration: none;
}

.cookie-text a:hover {
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-cookie {
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}

.btn-cookie-secondary {
    background: #f1f5f9;
    color: #475569;
}

.btn-cookie-secondary:hover {
    background: #e2e8f0;
    color: #1e293b;
}

.btn-cookie-primary {
    background: linear-gradient(45deg, #0ea5e9, #3b82f6);
    color: white;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

.btn-cookie-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(59, 130, 246, 0.3);
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .btn-cookie {
        flex: 1;
        text-align: center;
    }
}