/* Cookie Consent Banner - NutrIA Styling */
.cookie-banner {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    width: 90%;
    max-width: 500px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 1.5rem;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1), 
                0 0 0 1px rgba(0, 0, 0, 0.02);
    z-index: 9999;
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), 
                opacity 0.6s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookie-banner.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.cookie-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.cookie-icon {
    font-size: 1.5rem;
    color: #10b981; /* Tailwind green-500 */
}

.cookie-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1f2937; /* Tailwind gray-800 */
}

.cookie-text {
    font-size: 0.875rem;
    line-height: 1.5;
    color: #4b5563; /* Tailwind gray-600 */
}

.cookie-text a {
    color: #10b981;
    text-decoration: underline;
    font-weight: 500;
}

.cookie-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.cookie-btn {
    flex: 1;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    border: none;
}

.cookie-btn-accept {
    background: #10b981;
    color: white;
}

.cookie-btn-accept:hover {
    background: #059669;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

.cookie-btn-settings {
    background: #f3f4f6;
    color: #4b5563;
}

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

/* Mobile adjustments */
@media (max-width: 640px) {
    .cookie-banner {
        bottom: 1rem;
        padding: 1.25rem;
    }
    
    .cookie-actions {
        flex-direction: column;
    }
}
