/* Cookie Consent Banner Styles */

#cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(249, 250, 251, 0.98) 100%);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(99, 102, 241, 0.2);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

#cookie-consent-banner.show {
    transform: translateY(0);
}

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

.cookie-consent-text {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    flex: 1;
    min-width: 300px;
}

.cookie-icon {
    font-size: 2.5rem;
    line-height: 1;
    flex-shrink: 0;
}

.cookie-message h3 {
    font-family: 'Rubik', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 0.5rem 0;
}

.cookie-message p {
    font-family: 'Rubik', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #6b7280;
    margin: 0;
}

.cookie-consent-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-btn {
    font-family: 'Rubik', sans-serif;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-accept {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.cookie-accept:hover {
    background: linear-gradient(135deg, #4f46e5 0%, #4338ca 100%);
    box-shadow: 0 6px 16px rgba(99, 102, 241, 0.4);
    transform: translateY(-2px);
}

.cookie-decline {
    background: white;
    color: #6b7280;
    border: 2px solid #e5e7eb;
}

.cookie-decline:hover {
    background: #f9fafb;
    border-color: #d1d5db;
    color: #374151;
}

/* Cookie Notification */
.cookie-notification {
    position: fixed;
    top: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    font-family: 'Rubik', sans-serif;
    font-weight: 500;
    z-index: 10001;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s ease;
}

.cookie-notification.show {
    opacity: 1;
    transform: translateX(0);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    #cookie-consent-banner {
        padding: 1.25rem;
    }

    .cookie-consent-content {
        flex-direction: column;
        gap: 1.5rem;
    }

    .cookie-consent-text {
        min-width: 100%;
    }

    .cookie-icon {
        font-size: 2rem;
    }

    .cookie-message h3 {
        font-size: 1.1rem;
    }

    .cookie-message p {
        font-size: 0.9rem;
    }

    .cookie-consent-actions {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
        padding: 0.875rem 1.5rem;
    }

    .cookie-notification {
        top: 1rem;
        right: 1rem;
        left: 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    #cookie-consent-banner {
        padding: 1rem;
    }

    .cookie-consent-text {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.75rem;
    }

    .cookie-icon {
        font-size: 1.75rem;
    }

    .cookie-message h3 {
        font-size: 1rem;
        margin-bottom: 0.35rem;
    }

    .cookie-message p {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .cookie-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.95rem;
    }
}