/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    padding: 20px;
    display: flex;
    justify-content: center;
    pointer-events: none;
    /* Let clicks pass through outside the content */
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.cookie-banner.show {
    opacity: 1;
    transform: translateY(0);
}

.cookie-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 20px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 25px;
    max-width: 900px;
    width: 100%;
    pointer-events: auto;
    /* Re-enable clicks */
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.cookie-icon {
    font-size: 2rem;
    color: var(--color-primary);
    background: rgba(99, 102, 241, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cookie-text {
    flex-grow: 1;
}

.cookie-text h3 {
    margin: 0 0 5px;
    font-size: 1.1rem;
    color: var(--color-text-dark);
}

.cookie-text p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.5;
}

.cookie-text a {
    color: var(--color-primary);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.btn-cookie-primary,
.btn-cookie-outline {
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid transparent;
}

.btn-cookie-primary {
    background: var(--color-primary);
    color: white;
}

.btn-cookie-primary:hover {
    background: var(--color-primary-dark);
    transform: translateY(-1px);
}

.btn-cookie-outline {
    background: transparent;
    border-color: #e2e8f0;
    color: var(--color-text-light);
}

.btn-cookie-outline:hover {
    border-color: var(--color-text-dark);
    color: var(--color-text-dark);
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }

    .cookie-text {
        margin-bottom: 5px;
    }

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }

    .btn-cookie-primary,
    .btn-cookie-outline {
        flex: 1;
        justify-content: center;
    }
}